Linux环境安装oracle 11g数据库
一.安装环境
Linux服务器:Redhat 6.5 64位
oracle服务器:oracle11g-64位
oracle服务器:oracle11g-64位
二.系统配置
Root用户下进行以下配置:
1. 关闭SELinux、防火墙(后续要打开防火墙就得开放1521端口以及允许ip通过)
services iptables stop
chkconfig iptables off
services iptables stop
chkconfig iptables off
sed -i '/SELINUX/s/enforcing/disabled/' /etc/selinux/config
或者编辑 vi /etc/selinux/config
把SELINUX=enforcing
或者编辑 vi /etc/selinux/config
把SELINUX=enforcing
改为:SELINUX=disabled
重启电脑或者用命令立刻生效:linux系统安装oracle11g
# setenforce 0
重启电脑或者用命令立刻生效:linux系统安装oracle11g
# setenforce 0
2.检查hosts文件
vim /etc/hosts
127.0.0.1 localhost.localdomain localhost
vim /etc/hosts
127.0.0.1 localhost.localdomain localhost
172.0.0.214 localhost.localdomain localhost
3.修改linux内核,修改/f文件,输入命令: vim /f ,按i键进入编辑模式,修改或添加下列内容,编辑完成后按Esc键,输入“:wq”保存退出。
然后,使用命令:sysctl –p使之立刻生效。
然后,使用命令:sysctl –p使之立刻生效。
fs.suid_dumpable = 1
fs.aio-max-nr = 1048576
fs.file-max = 6815744
kernel.shmall = 2097152
kernel.shmmax = 536870912
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
net.ipv4.ip_local_port_range = 9000 65500
_default=4194304
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论