建议
参考oracle官方文档提供的软硬件要求
https://docs.oracle.com/en/database/oracle/oracle-database/19/ladbi/operating-system-checklist-for-oracle-database-installation-on-linux.html#GUID-E5C0A90E-7750-45D9-A8BC-C7319ED934F0
建议使用OracleLinux8.6及以上操作系统,我这里使用OracleLinux8.9。
操作系统基础配置修改
安装过程中为了省事先关闭防火墙和selinux
#关闭防火墙并关闭开机自启
systemctl disable --now firewalld
#立即关闭selinux
setenforce 0
#永久关闭selinux
sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config
安装数据库准备
安装数据库准备包(自动修改内核参数、创建oracle用户及其相关的组)
注: 我使用的是OracleLinux8.9直接安装就行,如果其他操作系统需要添加oracle的yum源(可参考:https://blog.csdn.net/u012593882/article/details/133789928)
dnf -y install oracle-database-preinstall-19c#修改oracle用户密码
echo 'oracle:oraPwd' | chpasswd
创建相关目录及设置oracle用户环境变量
#设置ORACLE_HOME目录
ORACLE_HOME=/u01/app/oracle/product/19.3.0/db
#设置ORACLE_BASE目录
ORACLE_BASE=/u01/app/oracle
#设置oraInventory目录
oraInventory_HOME=/u01/app/oraInventory#创建安装目录
mkdir -p ${ORACLE_HOME}
mkdir -p ${oraInventory_HOME}
chown -R oracle:oinstall ${oraInventory_HOME}
chown -R oracle:oinstall ${ORACLE_BASE}
chmod -R 775 ${oraInventory_HOME}
chmod -R 775 ${ORACLE_BASE}#配置 oracle 用户环境变量
cat >> /home/oracle/.bash_profile <<EOF #Oracle19c ENV
umask 022
export NLS_LANG=AMERICAN_AMERICA.AL32UTF8
export ORACLE_BASE=${ORACLE_BASE}
export ORACLE_HOME=\$ORACLE_BASE/product/19.3.0/db
export ORACLE_SID=YWTB
export INVENTORY_LOCATION=${oraInventory_HOME}export PATH=\$ORACLE_HOME/bin:\$ORACLE_HOME/OPatch:\$PATH
EOF
安装oracle19c
我这里使用基于GUI的方式安装(服务器端不需要安装X环境)
创建带X11的oracle用户会话
我使用的终端是WindTerm,oracle用户会话的ssh属性中启用内部X显示
安装oracle软件、实例和监听
display=`xdpyinfo | grep 'name of display:' | cut -d':' -f3`
export DISPLAY=:${display}
export LANG=en_US.UTF-8
cd $ORACLE_HOME
unzip /opt/pkg/LINUX.ARM64_1919000_db_home.zip./runInstaller
后面的具体步骤我就不写了,安装过oracle的都知道