1. Oracle11g安装包:
p13390677_112040_Linux-x86-64_1of7.zip
p13390677_112040_Linux-x86-64_2of7.zip
2. 虚拟机配置参考:
虚拟机安装CentOS7具体过程参见:https://blog.51cto.com/14451009/2428059?source=dra
我的配置方案是40G的硬盘/boot(系统启动目录)6个G,/(根目录)20个G,/home(存放所有用户文件的根目录)10个G,swap(虚拟内存)4个G。
二、CentOS7配置
首先确认关闭防火墙和Selinux,不知道可百度。
1. 创建用户组和用户
[root@localhost /]# groupadd oinstall [root@localhost /]# groupadd dba [root@localhost /]# user-g oinstall -G dba -m oracle #创建oracle用户,归属oinstall和dba两个组 [root@localhost /]# groups oracle # 验证oracle对应的组 oracle : dba [root@localhost /]# id oracle uid=1001(oracle) gid=1002(dba) groups=1002(dba) #少了oinstall,再用usermod把用户加到oinstall组 [root@localhost /]# usermod -a -G oinstall oracle [root@localhost /]# id oracle uid=1001(oracle) gid=1002(dba) groups=1002(dba),1001(oinstall) [root@localhost /]# groups oracle oracle : dba oinstall