创建组
[root@rhel64 ~]# groupadd oinstall
[root@rhel64 ~]# groupadd dba
[root@rhel64 ~]# groupadd oper
创建用户 设置密码 oracle:oracle
[root@rhel64 ~]# useradd -g oinstall -G dba,oper oracle
[root@rhel64 ~]# passwd oracle
SecureCRT创建连接 使用oracle用户登录测试
[oracle@rhel64 ~]$ id
[root@rhel64 ~]# mkdir -p /u01/app/oracle
[root@rhel64 ~]# chown -R oracle:oinstall /u01
[root@rhel64 ~]# chmod -R 775 /u01/app/oracle
使用oracle用户连接 编辑/home/oracle/.bash_profile
[oracle@rhel64 ~]$ vi .bash_profile
unset TNS_ADMIN
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1
export ORACLE_SID=PROD
export PATH=$ORACLE_HOME/bin:$PATH
[oracle@rhel64 ~]$ source .bash_profile
验证
[oracle@rhel64 ~]$ echo $ORACLE_BASE
[oracle@rhel64 ~]$ echo $ORACLE_HOME
[oracle@rhel64 ~]$ echo $ORACLE_SID
[oracle@rhel64 ~]$ echo $PATH
root用户解压软件包 先后解压1、2
[root@rhel64 db]# cd /software/db
[root@rhel64 db]# ls
[root@rhel64 db]# unzip p10404530_112030_Linux-x86-64_1of7.zip
[root@rhel64 db]# unzip p10404530_112030_Linux-x86-64_2of7.zip
解压得到database目录 约2.5G
修改属主 属组 权限
[root@rhel64 db]# chown -R oracle:oinstall database/
[root@rhel64 db]# chmod -R +x database/
启动Xmanager - Passive
oracle用户设置DISPLAY 将图形化界面显示在宿主机
[oracle@rhel64 ~]$ export DISPLAY=192.168.6.6:0.0
[oracle@rhel64 ~]$ echo $DISPLAY
在oracle用户home目录执行安装操作
[oracle@rhel64 ~]$ cd /software/db/database/
[oracle@rhel64 database]$ ll
[oracle@rhel64 database]$ ./runInstaller
吕星昊
2015.12.22