oracle 的安装脚本】的更多相关文章

==[root@oracle ~]# cat 1.preusers.sh ==#!/bin/bash#Purpose:Create 3 groups named 'oinstall','dba','oper', plus 1 users named 'oracle'.#Also setting the Environment#variable for oracle user.#variable for grid user.#Usage:Log on as the superuser('root'…
1. 配置/etc/hosts 网络 192.168.1.111 rac1 rac1.oracle.com192.168.1.182 rac1-vip 192.168.1.222 rac2 rac2.oracle.com192.168.1.184 rac2-vip 192.168.1.186 rac-cluster rac-cluster-scan 172.168.1.111 rac1-priv172.168.1.222 rac2-priv 关闭FIREWALL和Disable SElinux…
  #!/bin/bash   node_num=$1 base_config=./network.conf   网络配置文件 software_config=./software.conf  软件包配置文件 tmp_file=/tmp/autorac.tmp DISPLAY_ADDR=192.168.8.229   if [ ! ${node_num} ];then echo "specify the node number" exit 0 fi     Get_Block() {…
#!/bin/bash#Purpose:Create and config oracle install.#Usage:Log on as the superuser('root') #1.create groups and users.groupadd dba -g 111groupadd oinstall -g 110useradd oracle -u 110 -g 110 -G 111echo "oracle" | passwd --stdin oracle echo "…
 此为 软件包配置文件 software.conf [CentOS6] binutils-2.20.51.0.2-5.11.el6 (x86_64) compat-libcap1-1.10-1 (x86_64) compat-libstdc++-33-3.2.3-69.el6 (x86_64) compat-libstdc++-33-3.2.3-69.el6.i686 gcc-4.4.4-13.el6 (x86_64) gcc-c++-4.4.4-13.el6 (x86_64) glibc-2.…
 此为网络配置文件  network.conf [PUBLIC-IP] IP-LIST:192.168.7.198,192.168.8.221 HOSTNAME-LIST:mysql-198,RAC2 NETMASK:255.255.255.0 GATEWAY:192.168.7.1 DNS1:202.96.128.166 DNS2:202.96.128.86   [PRIVATE-IP] IP-LIST:10.10.10.198,10.10.10.221 HOSTNAME-LIST:RAC1-…
oracle 12C 自动化静默安装脚本 项目地址: github: https://github.com/spdir/oracle-single-install 下载安装脚本 wget https://raw.githubusercontent.com/spdir/oracle-single-install/master/oracle_install.sh && \ chmod +x oracle_install.sh 脚本使用安装前配置 root用户执行(尽量系统为纯净环境) 安装前请…
Oracle 11.2 静默安装脚本 cat db_init.sh.20190401 #!/bin/bash####安装Oracle所需依赖包function install_yum(){  yum -y install $1} i="perl-Data-Dumper lvm2* unzip rlwrap screen binutils binutils-devel compat-db control-center control-center-develcompat-libstdc++-* e…
#!/bin/bash####安装Oracle所需依赖包function install_yum(){  yum -y install $1} i="perl-Data-Dumper lvm2* unzip rlwrap screen binutils binutils-devel compat-db control-center control-center-develcompat-libstdc++-* elfutils-libelf elfutils-libelf-devel elfuti…
Oracle 11G RAC数据库安装(八) 概述:写下本文档的初衷和动力,来源于上篇的<oracle基本操作手册>.oracle基本操作手册是作者研一假期对oracle基础知识学习的汇总.然后形成体系的总结,一则进行回顾复习,另则便于查询使用.本图文文档亦源于此.阅读Oracle RAC安装与使用教程前,笔者先对这篇文章整体构思和形成进行梳理.由于阅读者知识储备层次不同,我将从Oracle RAC安装前的准备与规划开始进行整体介绍安装部署Oracle RAC.始于唐博士指导,对数据库集群进行…