oracle 9 可以在Centos7上安装吗
时间: 2023-12-17 12:05:33 浏览: 173
centos下安装oracle
Oracle 9i是一个比较老的版本,它的支持范围已经非常有限。不过,理论上它应该可以在CentOS 7上安装,但是可能需要一些额外的步骤和配置。以下是一些可能需要的步骤:
1. 安装必要的依赖:yum install libaio compat-libstdc++-33 elfutils-libelf-devel elfutils-libelf-devel-static gcc gcc-c++ glibc glibc-common glibc-devel glibc-headers ksh libaio libaio-devel libgcc libstdc++ libstdc++-devel make sysstat unixODBC unixODBC-devel
2. 创建用户和组:groupadd oinstall && groupadd dba && useradd -g oinstall -G dba oracle
3. 设置内核参数:vi /etc/sysctl.conf
```
fs.file-max = 65536
kernel.sem = 250 32000 100 128
kernel.shmmni = 4096
kernel.shmall = 2097152
kernel.shmmax = 2147483648
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default = 262144
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048576
```
4. 重新加载内核参数:sysctl -p
5. 设置用户限制:vi /etc/security/limits.conf
```
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
oracle soft stack 10240
```
6. 修改/etc/pam.d/login文件,在文件末尾添加如下两行:
```
session required pam_limits.so
session required pam_env.so
```
7. 安装Oracle 9i。
虽然这些步骤看起来比较简单,但是在实际操作中可能会遇到一些问题。建议在安装Oracle 9i之前先做好充分的准备工作,并且参考相关的文档和资料。
阅读全文