centos7虚拟机安装oracle11g数据库
时间: 2023-07-25 10:22:46 浏览: 151
CentOS7下安装oracle11g
安装Oracle 11g需要以下步骤:
1. 下载Oracle 11g安装包和补丁
在Oracle官网下载Oracle 11g安装包和补丁,下载后上传到CentOS虚拟机中。
2. 安装依赖包
在CentOS 7中,需要安装以下依赖包:
```
yum install oracle-rdbms-server-11gR2-preinstall
```
3. 安装Oracle 11g
在CentOS虚拟机中,执行以下命令:
```
unzip linux.x64_11gR2_database_1of2.zip
unzip linux.x64_11gR2_database_2of2.zip
cd database
./runInstaller
```
执行上述命令后,会进入Oracle 11g安装向导,按照提示进行配置,包括选择语言、安装类型、安装路径、监听器配置等。安装过程需要耐心等待,可能需要数十分钟或数小时。
4. 执行补丁
在安装Oracle 11g后,需要执行以下补丁:
```
unzip p13390677_112040_Linux-x86-64_1of7.zip
unzip p13390677_112040_Linux-x86-64_2of7.zip
cd 13390677
./opatch apply
```
5. 配置环境变量
编辑/etc/profile文件,在文件末尾添加以下内容:
```
export ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1
export PATH=$ORACLE_HOME/bin:$PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib
export NLS_LANG=AMERICAN_AMERICA.AL32UTF8
```
6. 启动Oracle 11g
执行以下命令启动Oracle 11g:
```
su - oracle
sqlplus / as sysdba
startup
```
7. 设置Oracle 11g开机启动
编辑/etc/rc.d/rc.local文件,在文件末尾添加以下内容:
```
su - oracle -c '$ORACLE_HOME/bin/dbstart'
su - oracle -c '$ORACLE_HOME/bin/lsnrctl start'
```
8. 测试连接
在其他机器上,使用Oracle客户端工具测试是否能够连接Oracle 11g数据库。
以上是在CentOS 7虚拟机中安装Oracle 11g的步骤。
阅读全文