云主机(8c16g)
一块云硬盘(2500G)
操作系统:CentOS7.5 (默认最小化安装)
数据库:Oracle Database 12cR2
setenforce 0
systemctl stop firewalld
systemctl stop iptables.service
电脑yum源太慢可以调整为163
#1)下载repo文件
wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
#2)备份并替换系统的repo文件
cp CentOS7-Base-163.repo /etc/yum.repos.d/
cd /etc/yum.repos.d/
mv CentOS-Base.repo CentOS-Base.repo.bak
mv CentOS7-Base-163.repo CentOS-Base.repo
#3)执行yum源更新命令
yum clean all
yum makecache
yum update
oracle安装过程中需要远程到桌面,需要提前安装桌面环境和vnc远程桌面方式。当然,远程的话也可以使用他的方式。
# 本次安装桌面采用'GNOME Desktop',安装时间比较长,安装过程中出现找不到包,可以尝试更换下yum源
yum -y groups install "GNOME Desktop"
startx
报错::file /boot/efi/EFI/centos from install of fwupdate-efi-12-5.e17.centos.x86_64 conflicts with file fr
处理办法:yum update grub2-common
查看系统的2种启动模式:
vi /etc/inittab
//查询当前的默认设置:
systemctl get-default
//启动切换图形化界面:
startx
//设置默认启动为图形化界面:
systemctl set-default graphical.target
//设置默认启动为命令行界面:
systemctl set-default multi-user.target
yum -y install tigervnc-server
yum install epel-release -y
yum -y install xrdp
启动xrdp并设置开机启动
systemctl start xrdp
systemctl enable xrdp