最近有些闲余时间,抽空把Oracle数据库在Linux上面安装一下,也是经历各种波折,网上资料良莠不齐。
所以把自己安装Oracle的过程记录下来,废话不多说,开始咯
参考资料:
http://blog.csdn.net/kimsoft/article/details/8117575
http://www.360doc.com/content/13/0526/12/11722185_288278721.shtml
一,Linux操作系统环境
Centos 6.3 32位 运行内存 1G , swap空间3G
一般来说在安装系统应该就会配置swap空间,如果不够的话可以对swap进行扩容,下面是一个扩容示例
扩大swap临时区空间
[root@localhost Desktop]# dd if=/dev/zero of=/home/oracle/swap.file bs=1024k count=1024
格式化建立的临时交换文件
mkswap /home/oracle/swap.file
通过swapon命令使swap文件生效
swapon /home/oracle/swap.file
通过free命令查看结果
使其永久有效
echo "/home/oracle/swap.file swap default 0 0">>/etc/fstab
二,关闭SELinux,防火墙
关闭SELINUX
vi /etc/sysconfig/selinux
SELINUX=enforcing改成SELINUX=disabled
关闭防火墙
service iptables stop
service ip6tables stop
三,建立用户和组
/usr/sbin/groupadd oinstall
/usr/sbin/groupadd dba
/usr/sbin/useradd -g oninstall -G dba oracle
设置oracle用户密码
passwd oracle
查看一下
@localhost Desktop]$ id oracle
uid=501(oracle) gid=501(oinstall) groups=501(oinstall),502(dba)
四,建立安装目录(google一下OFA)
mkdir -p /home/oracle/app/oracle/product/11.2.0/db_1
chown -R oracle:oinstall /home/oracle/app
chmod -R 775 /home/oracle/app
五,修改Linux内核参数
fs.file-max = 6815744
fs.aio-max-nr = 1048576
kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
net.ipv4.ip_local_port_range = 9000 65500
net.core.rmem_default = 4194304
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048576
改好后,使之生效
sysctl -p
六,修改文件限制
vim /etc/security/limits.conf
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
oracle soft stack 10240
vim /etc/pam.d/login (感觉好象没有必要)
#session required /lib/security/pam_limits.so
session required pam_limits.so
七,修改ulimit(感觉好象没有必要)
vim /etc/profile
if [ $USER = "oracle" ]; then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
fi
八,修改oracle用户环境变量
vim ~oracle/.bash_profile
ORACLE_BASE=/home/oracle/app/oracle #修改和OFA路径一致
ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1
ORACLE_SID=ORADB #修改
export ORACLE_BASE ORACLE_HOME ORACLE_SID
PATH=$ORACLE_HOME/bin:$PATH
export PATH
九,将Oracle安装文件解压到/home/oracle目录下进行安装
需要为解压后的文件设置运行权限
chown -R oracle:oinstall /home/oracle/database
chmod -R 775 /home/oracle/database
输入命令xhost + ,提供图形界面的运行
切换oracle用户
unset LANG LANGUAGE #解决中文乱码
cd /home/oracle/app/oracle/databse
./runInstaller
执行先决条件检查时,会有不少包要求装,可以根据提示将需要安装的东西安装好
一切顺利,到最后,要用root执行两个脚本,按提示就OK
在oracle用户下进入sqlplus,测试安装成功