CentOS 7.1静默安装11.2.0.3 64位单机数据库软件

前端之家收集整理的这篇文章主要介绍了CentOS 7.1静默安装11.2.0.3 64位单机数据库软件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

第1章CentOS 7.1静默安装11.2.0.3 64位单机数据库软件

1.1 安装前的准备工作

1.1.1 软件准备

1.1.2 检查硬件

注意这里的内存应该满足要求,不然可能引起数据库在安装过程中长时间的挂起等待。。。。

在正式安装开始前,请先检查你的软硬件条件是否满足安装需要。

硬件上可以使用命令查看内存情况和cpu特性:

@H_301_65@more /proc/meminfo

@H_301_65@more /proc/cpuinfo

其中内存的要求是不低于1G

下面的不是必须的,可选使用

cat /etc/redhat-release

@H_301_65@#dfk /dev/shm检查共享内存

@H_301_65@k /tmp检查临时磁盘空间

@H_301_65@#more /proc/version检查操作系统版本

@H_301_65@#unamer检查内核版本

内存:

# grep MemTotal /proc/meminfo

交换空间

# grep SwapTotal /proc/meminfo

磁盘空间

# df -ah

@H_301_65@# free

@H_301_65@#free -m

1.1.3 修改hosts文件修改主机名

永久生效:

[root@localhost ~]# hostnamectl set-hostname COSLHR

修改文件/etc/hostname

[root@localhost ~]# cat /etc/hostname

@H_301_65@COSLHR

临时生效:

[root@localhost ~]# hostname COSLHR

查看/etc/hosts文件中必须包含a fully qualified name for the server,必须包含127.0.0.1和真实的IP地址这2行:

[root@localhost ~]# cat /etc/hosts

@H_301_65@# Do not remove the following line,or varIoUs programs

@H_301_65@# that require network functionality will fail.

@H_301_65@127.0.0.1 localhost.localdomain localhost

@H_301_65@::1 localhost6.localdomain6 localhost6

@H_301_65@192.168.59.155 COSLHR


注意将主机名对应到真实地址,否则Oracle有可能将监听程序仅仅建立在上。

注意:修改主机名后,需要重启系统后生效。

1.1.3.1 配置固定IP

DEVICE=ens33

@H_301_65@IPADDR=192.168.59.51

@H_301_65@NETMASK=255.255.255.0

@H_301_65@NETWORK=192.168.59.0

@H_301_65@BROADCAST=192.168.59.255

@H_301_65@GATEWAY=192.168.59.2

@H_301_65@ONBOOT=yes

@H_301_65@USERCTL=no

@H_301_65@BOOTPROTO=static

@H_301_65@#HWADDR=00:0c:29:97:f1:5b

@H_301_65@TYPE=Ethernet

@H_301_65@IPV6INIT=no

@H_301_65@DNS1=202.96.209.5

@H_301_65@DNS2=8.8.8.8

@H_301_65@NAME="ens33"


1.1.4 安装软件包检查

http://blog.itpub.net/26736162/viewspace-2133603/

可以统一检查:

rpm -q \

@H_301_65@binutils \

@H_301_65@compat-libstdc++-33 \

@H_301_65@elfutils-libelf \

@H_301_65@elfutils-libelf-devel \

@H_301_65@expat \

@H_301_65@gcc \

@H_301_65@gcc-c++ \

@H_301_65@glibc \

@H_301_65@glibc-common \

@H_301_65@glibc-devel \

@H_301_65@glibc-headers \

@H_301_65@libaio \

@H_301_65@libaio-devel \

@H_301_65@libgcc \

@H_301_65@libstdc++ \

@H_301_65@libstdc++-devel \

@H_301_65@make \

@H_301_65@pdksh \

@H_301_65@sysstat \

@H_301_65@unixODBC \

@H_301_65@unixODBC-devel | grep "not installed"

如果部分包不存在,可以批量更新安装,但如果依赖关系缺失,可能需要多执行两遍或者手工调整,所以建议使用yum进行安装:

package compat-libstdc++-33 is not installed

@H_301_65@package elfutils-libelf-devel is not installed

@H_301_65@package gcc-c++ is not installed

@H_301_65@package libaio-devel is not installed

@H_301_65@package libstdc++-devel is not installed

@H_301_65@package pdksh is not installed

@H_301_65@package unixODBC is not installed

@H_301_65@package unixODBC-devel is not installed

依次安装如下的包:

yum install -y compat-libstdc++-33

@H_301_65@yum install -y elfutils-libelf-devel

@H_301_65@yum install -y gcc-c++

@H_301_65@yum install -y libaio-devel

@H_301_65@yum install -y libstdc++-devel

@H_301_65@yum install -y pdksh

@H_301_65@yum install -y unixODBC

@H_301_65@yum install -y unixODBC-devel

安装完成后再次检查是否还有没有安装的包。

注意:其中的pdksh包可以忽略。

1.1.5 内核参数--shell限制

1.1.5.1 /etc/security/limits.conf

设置Shell Limits

/etc/security/limits.conf文件中加入下列行:

oracle soft nofile 65536

@H_301_65@oracle hard nofile 65536

@H_301_65@oracle soft nproc 16384

@H_301_65@oracle hard nproc 16384

为安装用户设置资源限制

要改善Linux系统上的软件性能,必须对软件所有者用户gridoracle增加以下资源限制:

Shell限制 limits.conf中的条目 硬限制

打开文件描述符的最大数 nofile 65536

可用于单个用户的最大进程数 nproc 16384

进程堆栈段的最大大小 stack 10240

1.1.5.2 /etc/pam.d/login

/etc/pam.d/login文件中加入下列行,如果里面没有的话:

session required /lib/security/pam_limits.so

@H_301_65@session required pam_limits.so

1.1.5.3 /etc/profile

对默认的shell启动文件进行以下更改,以便更改所有安装所有者的ulimit设置:

/etc/profile后加入以下语句:

if [ $USER = "oracle" ]; then

@H_301_65@ if [ $SHELL = "/bin/ksh" ]; then

@H_301_65@ ulimit -p 16384

@H_301_65@ ulimit -n 16384

@H_301_65@ else

@H_301_65@ ulimit -u 16384 -n 16384

@H_301_65@ fi

@H_301_65@fi

1.1.5.4 /etc/sysctl.conf

Configuring Kernel Parameters for Linux

vim /etc/sysctl.conf

fs.aio-max-nr = 1048576

@H_301_65@fs.file-max = 6815744

@H_301_65@kernel.shmall = 2097152

@H_301_65@kernel.shmmax = 4294967295

@H_301_65@kernel.shmmni = 4096

@H_301_65@kernel.sem = 250 32000 100 128

@H_301_65@net.ipv4.ip_local_port_range = 9000 65500

@H_301_65@net.core.rmem_default = 262144

@H_301_65@net.core.rmem_max = 4194304

@H_301_65@net.core.wmem_default = 262144

@H_301_65@net.core.wmem_max = 1048576

生效

# /sbin/sysctl -p

参数的含义:http://blog.itpub.net/26736162/viewspace-2147273/

1.1.6 关闭防火墙

systemctl status firewalld.service

@H_301_65@systemctl stop firewalld.service

@H_301_65@systemctl disable firewalld.service

@H_301_65@[root@localhost /]# systemctl status firewalld.service

@H_301_65@firewalld.service - firewalld - dynamic firewall daemon

@H_301_65@ Loaded: loaded (/usr/lib/systemd/system/firewalld.service; enabled; vendor preset: enabled)

@H_301_65@ Active:active (running)since Thu 2016-04-07 18:54:29 PDT; 2h 20min ago

@H_301_65@Main PID: 802 (firewalld)

@H_301_65@ CGroup: /system.slice/firewalld.service

@H_301_65@└─802 /usr/bin/python -Es /usr/sbin/firewalld --nofork --nopid

@H_301_65@

@H_301_65@Apr 07 18:54:25 localhost.localdomain systemd[1]: Starting firewalld - dynamic firewall daemon...

@H_301_65@Apr 07 18:54:29 localhost.localdomain systemd[1]: Started firewalld - dynamic firewall daemon.

@H_301_65@[root@localhost /]# systemctl stop firewalld.service  #关闭防火墙

@H_301_65@[root@localhost /]# systemctl status firewalld.service再次查看防火墙状态,发现已关闭

@H_301_65@inactive (dead)since Thu 2016-04-07 21:15:34 PDT; 9s ago

@H_301_65@Main PID: 802 (code=exited,status=0/SUCCESS)

@H_301_65@Apr 07 21:15:33 localhost systemd[1]: Stopping firewalld - dynamic firewall daemon...

@H_301_65@Apr 07 21:15:34 localhost systemd[1]: Stopped firewalld - dynamic firewall daemon.

@H_301_65@[root@localhost /]# systemctl disable firewalld.service禁止使用防火墙(重启也是禁止的)

@H_301_65@Removed symlink /etc/systemd/system/dbus-org.Fedoraproject.FirewallD1.service.

@H_301_65@Removed symlink /etc/systemd/system/basic.target.wants/firewalld.service.

@H_301_65@[root@localhost /]#

1.1.7 禁用selinux

修改/etc/selinux/config

编辑文本中的SELINUX=enforcingSELINUX=disabled

[root@OCPLHR ~]# vi /etc/selinux/config

@H_301_65@[root@OCPLHR ~]# more /etc/selinux/config

@H_301_65@# This file controls the state of SELinux on the system.

@H_301_65@# SELINUX= can take one of these three values:

@H_301_65@# enforcing - SELinux security policy is enforced.

@H_301_65@# permissive - SELinux prints warnings instead of enforcing.

@H_301_65@# disabled - SELinux is fully disabled.

@H_301_65@SELINUX=disabled

@H_301_65@# SELINUXTYPE= type of policy in use. Possible values are:

@H_301_65@# targeted - Only targeted network daemons are protected.

@H_301_65@# strict - Full SELinux protection.

@H_301_65@SELINUXTYPE=targeted

@H_301_65@[root@OCPLHR ~]# /usr/sbin/sestatus -v

@H_301_65@SELinux status: disabled

@H_301_65@[root@OCPLHR ~]# getenforce

@H_301_65@Disabled

临时关闭(不用重启机器):setenforce 0

SELinux状态:

1/usr/sbin/sestatus -v ##如果SELinux status参数为enabled即为开启状态

SELinux status: enabled

getenforce ##也可以用这个命令检查

1.2 新建用户和组

The Oracle Inventory group (oinstall)数据库安装组

The OSDBA group (dba)数据库管理员

The Oracle software owner (oracle)管理员用户

groupadd oinstall

@H_301_65@groupadd dba

@H_301_65@useradd -g oinstall -G dba -m oracle

@H_301_65@passwd oracle

-m 表示为用户oracle 新建一个根目录

-g 表示为用户指定一个主group

-G 表示为用户指定一个副group

这样oracle既属于oinstall组也属于dba组。

平时主要是oinstall组发生作用。

[root@localhost ~]# id oracle

@H_301_65@uid=501(oracle) gid=501(oinstall) groups=501(oinstall),502(dba) context=root:system_r:unconfined_t:SystemLow-SystemHigh

1.2.1 配置用户的环境变量

vi /home/oracle/.bash_profile

umask 022

@H_301_65@export ORACLE_SID=orcl

@H_301_65@export ORACLE_BASE=/u01/app/oracle

@H_301_65@export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1

@H_301_65@export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib

@H_301_65@export NLS_DATE_FORMAT="YYYY-MM-DD HH24:MI:SS"

@H_301_65@export TMP=/tmp

@H_301_65@export TMPDIR=$TMP

@H_301_65@export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/OPatch:$PATH

@H_301_65@export EDITOR=vi

@H_301_65@export TNS_ADMIN=$ORACLE_HOME/network/admin

@H_301_65@export ORACLE_PATH=.:$ORACLE_BASE/dba_scripts/sql:$ORACLE_HOME/rdbms/admin

@H_301_65@export sqlPATH=$ORACLE_HOME/sqlplus/admin

@H_301_65@#export NLS_LANG="SIMPLIFIED CHINESE_CHINA.ZHS16GBK" --AL32UTF8 SELECT userenv('LANGUAGE') db_NLS_LANG FROM DUAL;

@H_301_65@export NLS_LANG="AMERICAN_CHINA.ZHS16GBK"

@H_301_65@alias sas='sqlplus / as sysdba'

@H_301_65@#export PS1="[\u@\h-\`echo \$ORACLE_SID\` \W]$ "

@H_301_65@#export PS1='[$LOGNAME@'`hostname`:'$PWD'']# '

1.3 新建安装目录

mkdir -p /u01/app/oracle

@H_301_65@chown -R oracle:oinstall /u01/app

@H_301_65@chmod -R 775 /u01/app

1.4 准备安装文件

1.4.1 拷贝安装文件

[root@localhost ~]# mkdir -p /soft

[root@localhost ~]# chmod 777 /soft

可以直接拷贝,也可以用SecureFXXFTP软件等方式拷贝到/soft目录下:

1.4.1.1 计算MD5

安装文件

MD5

p10404530_112030_Linux-x86-64_1of7.zip

bd bf 8e 26 36 63 21 4d c6 0b 0f de f5 a3 0b 0a

p10404530_112030_Linux-x86-64_2of7.zip

e5 6b 3d 9c 6b c5 4b 77 17 e1 4b 6c 54 9c ef 9e

p10404530_112030_Linux-x86-64_3of7.zip

69 5c ba d7 44 75 22 39 c7 64 87 e3 24 f7 b1 ab

[root@OCPLHR soft]# md5sum p10404530_112030_Linux-x86-64_1of7.zip

@H_301_65@bdbf8e263663214dc60b0fdef5a30b0a p10404530_112030_Linux-x86-64_1of7.zip

@H_301_65@[root@OCPLHR soft]# md5sum p10404530_112030_Linux-x86-64_2of7.zip

@H_301_65@e56b3d9c6bc54b7717e14b6c549cef9e p10404530_112030_Linux-x86-64_2of7.zip

@H_301_65@[root@OCPLHR soft]#

@H_301_65@[root@OCPLHR soft]# md5sum p10404530_112030_Linux-x86-64_3of7.zip

@H_301_65@695cbad744752239c76487e324f7b1ab p10404530_112030_Linux-x86-64_3of7.zip

@H_301_65@

D:\Users\xiaomaimiao>certutil -hashfile "G:\安装文件\数据库\Oracle\oracle db安装\11.2.0.3\11.2.0.3_linux\64\p10404530_112030_Linux-x86-64_1of7.zip" MD5

@H_301_65@MD5哈希(文件G:\\p10404530_112030_Linux-x86-64_1of7.zip):

@H_301_65@bd bf 8e 26 36 63 21 4d c6 0b 0f de f5 a3 0b 0a

@H_301_65@CertUtil: -hashfile命令成功完成。

@H_301_65@\p10404530_112030_Linux-x86-64_2of7.zip" MD5

@H_301_65@\p10404530_112030_Linux-x86-64_2of7.zip):

@H_301_65@e5 6b 3d 9c 6b c5 4b 77 17 e1 4b 6c 54 9c ef 9e

@H_301_65@\p10404530_112030_Linux-x86-64_3of7.zip" MD5

@H_301_65@\p10404530_112030_Linux-x86-64_3of7.zip):

@H_301_65@69 5c ba d7 44 75 22 39 c7 64 87 e3 24 f7 b1 ab

@H_301_65@命令成功完成。

1.4.2 解压安装文件

[root@OCPLHR soft]# ll

@H_301_65@total 3401656

@H_301_65@drwx------ 2 root root 16384 Jan 5 14:42 lost+found

@H_301_65@-rw-r--r-- 1 root root 1358454646 Dec 14 2011 p10404530_112030_Linux-x86-64_1of7.zip

@H_301_65@-rw-r--r-- 1 root root 1142195302 May 25 2012 p10404530_112030_Linux-x86-64_2of7.zip

@H_301_65@-rw-r--r-- 1 root root 979195792 May 26 2012 p10404530_112030_Linux-x86-64_3of7.zip

@H_301_65@[root@OCPLHR soft]# chmod 777 *

@H_301_65@drwxrwxrwx 2 root root 16384 Jan 5 14:42 lost+found

@H_301_65@-rwxrwxrwx 1 root root 1358454646 Dec 14 2011 p10404530_112030_Linux-x86-64_1of7.zip

@H_301_65@-rwxrwxrwx 1 root root 1142195302 May 25 2012 p10404530_112030_Linux-x86-64_2of7.zip

@H_301_65@-rwxrwxrwx 1 root root 979195792 May 26 2012 p10404530_112030_Linux-x86-64_3of7.zip

@H_301_65@解压oracle安装文件包:如果不想输出信息,则可以加上> /dev/null 2>&1”,-d表示解压到的目录:

unzip p10404530_112030_Linux-x86-64_1of7.zip -d /tmp > /dev/null 2>&1 && unzip p10404530_112030_Linux-x86-64_2of7.zip -d /tmp > /dev/null 2>&1

unzip p10404530_112030_Linux-x86-64_1of7.zip > /dev/null 2>&1 && unzip p10404530_112030_Linux-x86-64_2of7.zip > /dev/null 2>&1

切换到oracle用户,图形界面登录,执行oracle安装文件

[root@OCPLHR soft]# su - oracle

@H_301_65@[oracle@OCPLHR ~]$ cd /soft/

@H_301_65@[oracle@OCPLHR soft]$ ll

@H_301_65@total 3401664

@H_301_65@[oracle@OCPLHR soft]$ unzip p10404530_112030_Linux-x86-64_1of7.zip > /dev/null 2>&1 && unzip p10404530_112030_Linux-x86-64_2of7.zip > /dev/null 2>&1

@H_301_65@drwxr-xr-x 8 oracle oinstall 4096 Sep 22 2011 database

@H_301_65@[oracle@OCPLHR soft]$ du -sh database

@H_301_65@2.5G database

@H_301_65@[oracle@OCPLHR soft]$ cd database/

@H_301_65@[oracle@OCPLHR database]$ ll

@H_301_65@total 100

@H_301_65@drwxr-xr-x 12 oracle oinstall 4096 Sep 19 2011 doc

@H_301_65@drwxr-xr-x 4 oracle oinstall 4096 Sep 22 2011 install

@H_301_65@-rwxr-xr-x 1 oracle oinstall 28122 Sep 22 2011 readme.html

@H_301_65@drwxr-xr-x 2 oracle oinstall 4096 Sep 22 2011 response

@H_301_65@drwxr-xr-x 2 oracle oinstall 4096 Sep 22 2011 rpm

@H_301_65@-rwxr-xr-x 1 oracle oinstall 3226 Sep 22 2011 runInstaller

@H_301_65@drwxr-xr-x 2 oracle oinstall 4096 Sep 22 2011 sshsetup

@H_301_65@drwxr-xr-x 14 oracle oinstall 4096 Sep 22 2011 stage

@H_301_65@-rwxr-xr-x 1 oracle oinstall 5466 Aug 23 2011 welcome.html

1.5 开始静默安装

可以只执行一条命令即可安装完成数据库软件的部署:

/soft/database/runInstaller -silent -force -noconfig -IgnoreSysPreReqs -ignorePrereq -showProgress \

@H_301_65@oracle.install.option=INSTALL_DB_SWONLY \

@H_301_65@DECLINE_SECURITY_UPDATES=true \

@H_301_65@UNIX_GROUP_NAME=oinstall \

@H_301_65@INVENTORY_LOCATION=/u01/app/oraInventory \

@H_301_65@SELECTED_LANGUAGES=en \

@H_301_65@ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1 \

@H_301_65@ORACLE_BASE=/u01/app/oracle \

@H_301_65@oracle.install.db.InstallEdition=EE \

@H_301_65@oracle.install.db.isCustomInstall=false \

@H_301_65@oracle.install.db.DBA_GROUP=dba \

@H_301_65@oracle.install.db.OPER_GROUP=dba \

@H_301_65@oracle.install.db.isRACOneInstall=false \

@H_301_65@oracle.install.db.config.starterdb.type=GENERAL_PURPOSE \

@H_301_65@SECURITY_UPDATES_VIA_MYORACLESUPPORT=false \

@H_301_65@oracle.installer.autoupdates.option=SKIP_UPDATES

[root@localhost ~]# su - oracle

@H_301_65@Last login: Wed Feb 7 08:48:45 PST 2018 on pts/3

@H_301_65@[oracle@localhost ~]$ cd /soft/

@H_301_65@[oracle@localhost soft]$ ll

@H_301_65@total 2442048

@H_301_65@drwxr-xr-x. 8 oracle oinstall 4096 Sep 22 2011 database

@H_301_65@-rw-r--r--. 1 root root 1358454646 Dec 13 2011 p10404530_112030_Linux-x86-64_1of7.zip

@H_301_65@-rw-r--r--. 1 root root 1142195302 May 25 2012 p10404530_112030_Linux-x86-64_2of7.zip

@H_301_65@[oracle@localhost soft]$ cd database/

@H_301_65@[oracle@localhost database]$ ll

@H_301_65@total 52

@H_301_65@drwxr-xr-x. 12 oracle oinstall 4096 Sep 18 2011 doc

@H_301_65@drwxr-xr-x. 4 oracle oinstall 4096 Sep 22 2011 install

@H_301_65@-rwxr-xr-x. 1 oracle oinstall 28122 Sep 22 2011 readme.html

@H_301_65@drwxr-xr-x. 2 oracle oinstall 58 Sep 22 2011 response

@H_301_65@drwxr-xr-x. 2 oracle oinstall 33 Sep 22 2011 rpm

@H_301_65@-rwxr-xr-x. 1 oracle oinstall 3226 Sep 22 2011 runInstaller

@H_301_65@drwxr-xr-x. 2 oracle oinstall 28 Sep 22 2011 sshsetup

@H_301_65@drwxr-xr-x. 14 oracle oinstall 4096 Sep 22 2011 stage

@H_301_65@-rwxr-xr-x. 1 oracle oinstall 5466 Aug 22 2011 welcome.html

@H_301_65@[oracle@localhost database]$ /soft/database/runInstaller -silent -force -noconfig -IgnoreSysPreReqs -ignorePrereq -showProgress \

@H_301_65@> oracle.install.option=INSTALL_DB_SWONLY \

@H_301_65@> DECLINE_SECURITY_UPDATES=true \

@H_301_65@> UNIX_GROUP_NAME=oinstall \

@H_301_65@> INVENTORY_LOCATION=/u01/app/oraInventory \

@H_301_65@> SELECTED_LANGUAGES=en \

@H_301_65@> ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1 \

@H_301_65@> ORACLE_BASE=/u01/app/oracle \

@H_301_65@> oracle.install.db.InstallEdition=EE \

@H_301_65@> oracle.install.db.isCustomInstall=false \

@H_301_65@> oracle.install.db.DBA_GROUP=dba \

@H_301_65@> oracle.install.db.OPER_GROUP=dba \

@H_301_65@> oracle.install.db.isRACOneInstall=false \

@H_301_65@> oracle.install.db.config.starterdb.type=GENERAL_PURPOSE \

@H_301_65@> SECURITY_UPDATES_VIA_MYORACLESUPPORT=false \

@H_301_65@> oracle.installer.autoupdates.option=SKIP_UPDATES

@H_301_65@Starting Oracle Universal Installer...

@H_301_65@Checking Temp space: must be greater than 120 MB. Actual 91506 MB Passed

@H_301_65@Checking swap space: must be greater than 150 MB. Actual 1586 MB Passed

@H_301_65@Preparing to launch Oracle Universal Installer from /tmp/OraInstall2018-02-07_08-58-36AM. Please wait ...[oracle@localhost database]$ You can find the log of this install session at:

@H_301_65@/u01/app/oraInventory/logs/installActions2018-02-07_08-58-36AM.log

@H_301_65@Prepare in progress.

@H_301_65@.................................................. 9% Done.

@H_301_65@Prepare successful.

@H_301_65@Copy files in progress.

@H_301_65@.................................................. 14% Done.

@H_301_65@.................................................. 20% Done.

@H_301_65@.................................................. 26% Done.

@H_301_65@.................................................. 31% Done.

@H_301_65@.................................................. 36% Done.

@H_301_65@.................................................. 44% Done.

@H_301_65@.................................................. 49% Done.

@H_301_65@.................................................. 55% Done.

@H_301_65@.................................................. 63% Done.

@H_301_65@.................................................. 68% Done.

@H_301_65@.................................................. 73% Done.

@H_301_65@.................................................. 78% Done.

@H_301_65@.................................................. 83% Done.

@H_301_65@..............................

@H_301_65@Copy files successful.

@H_301_65@Link binaries in progress.

@H_301_65@..........

@H_301_65@Link binaries successful.

@H_301_65@Setup files in progress.

@H_301_65@.................................................. 88% Done.

@H_301_65@.................................................. 94% Done.

@H_301_65@Setup files successful.

@H_301_65@The installation of Oracle Database 11g was successful.

@H_301_65@Please check '/u01/app/oraInventory/logs/silentInstall2018-02-07_08-58-36AM.log' for more details.

@H_301_65@Execute Root Scripts in progress.

@H_301_65@As a root user,execute the following script(s):

@H_301_65@ 1. /u01/app/oraInventory/orainstRoot.sh

@H_301_65@ 2. /u01/app/oracle/product/11.2.0/dbhome_1/root.sh

@H_301_65@.................................................. 100% Done.

@H_301_65@Execute Root Scripts successful.

@H_301_65@Successfully Setup Software.

@H_301_65@[oracle@localhost database]$

@H_301_65@[root@localhost ~]# /u01/app/oraInventory/orainstRoot.sh

@H_301_65@Changing permissions of /u01/app/oraInventory.

@H_301_65@Adding read,write permissions for group.

@H_301_65@Removing read,write,execute permissions for world.

@H_301_65@Changing groupname of /u01/app/oraInventory to oinstall.

@H_301_65@The execution of the script is complete.

@H_301_65@[root@localhost ~]# /u01/app/oracle/product/11.2.0/dbhome_1/root.sh

@H_301_65@Check /u01/app/oracle/product/11.2.0/dbhome_1/install/root_localhost.localdomain_2018-02-07_09-10-23.log for the output of root script

@H_301_65@[root@localhost ~]#

猜你在找的CentOS相关文章