麒麟armv10-sp3安装oracle19c_arm版oracle安装包
项目需要用arm的操作系统安装oracle,未找到一个完整的安装文档,dbca无法图形问题解决,特此整理
一、环境信息
CPU
操作系统
兼容性信息
二、安装准备
1、软件下载及兼容性信息
麒麟系统兼容性官网网站:麒麟生态
oracle安装包:https://www.oracle.com/webapps/redirect/signon?nexturl=https://download.oracle.com/otn/linux/oracle19c/190000/LINUX.X64_193000_db_home.zip
oracle-database-preinstall-19c:Oracle Linux 7 (x86_64) Latest | Oracle, Software. Hardware. Complete.
oracle硬件要求:Server Hardware Checklist for Oracle Database Installation
2、设置hosts
###START-ORACL19C###
`hostname -I` `hostname` `hostname`
###END-ORACL19C###
EOF
3、规划swap
内存大于16G,swap要16G
dd if=/dev/zero of=/mnt/central/swapfile bs=1024 count=16M
mkswap /mnt/central/swapfile # 格式化 swap
chown root:root /mnt/central/swapfile
chmod 0600 /mnt/central/swapfile
swapon /mnt/central/swapfile # 激活 swap
swapon -s # 查看是否生效<