Centos7.6 安装 Oracle 11g
一、 环境准备 操作系统:CentOS Linux release 7.6.1810 (Core) 数据库版本:Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 数据库安装包: p13390677_112040_Linux-x86-64_1of7.zip p13390677_112040_Linux-x86-64_2of7.zip PL/SQL 注意: Oracle 官网目前只能下载到 11.2.0.1 的安装包,所以本文档的安装包请大家搜索找资源下载。 关闭防火墙和selinux systemctl status firewalld systemctl disable firewalld systemctl disable firewalld #firewall-cmd --zone=public --add-port=1521/tcp --permanent #如果打开防火墙的话,需放开Oracle1521端口 #firewall-cmd --reload #增加新的配置需重新加载 sed -i 's#SELINUX=.*#SELINUX=disabled#g' /etc/selinux/config sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc