Centos7下安装部署oracle数据库方法及问题汇总

目标:在centos7上配置oracle数据库服务器,并在win7上面使用pl/sql成功访问该oracle数据库

系统环境:
服务器:centos7 64位
客户端:win7 64位
注意cnetos7硬盘大小不能太小,其运行内存推荐2G,硬盘大小40G,交换内存3G(不用担心,稍后会讲到)

注意: firewalld和selinux都关掉
软件包:

https://pan.baidu.com/s/1c3zNv4
第一个文件是plsql安装程序
第二第三个文件是oracle服务端安装文件
第三个是plsql连接oracle服务端所需要的文件

Centos7安装oracle数据库过程
2017.9.11补充
(1)需要关闭一些服务,以避免安装过程中出现冲突错误

将下列命令写入某一脚本,然后执行(自己写的,可能不是很完善)

systemctl stop firewalld
systemctl stop cups
systemctl stop firstboot
systemctl stop wpa_supplicant
systemctl stop postfix
systemctl disable firewalld
systemctl disable cups
systemctl disable firstboot
systemctl disable wpa_supplicant
systemctl disable postfix
sed -i ‘s/SELINUX=enforcing/SELINUX=disabled/’ /etc/selinu

你可能感兴趣的:(mysql)