Centos7或Red Linux7下安装Oracle19c

1.oracle 19c数据库的安装

操作系统 :CentOS Linux 7.6

系统配置
内 存 6G 6144M
网卡1个 host-only
系统空间120G

2.1 系统图形设置

开机以命令模式启动,执行
systemctl set-default multi-user.target

开机以图形界面启动,执行:
systemctl set-default graphical.target


2.2 修改主机名

[root@localhost ~]# vim /etc/hostname
19c
[root@localhost ~]# hostname 19c

2.3 配置hosts文件

os>vi /etc/hosts
192.168.31.47 19c

2.4 本地yum源配置,并安装依赖包

[root@node1 ~]# vim /etc/yum.repos.d/my.repo
[Oracle]
name=oracle_rac --可以自定义
baseurl=file:///mnt/
gpgcheck=0
enabled=1

如果是RHEL或者CentOS,请先将/etc/yum.repos.d下面的文件删除或者移动到别的目录下,RHEL创建方法和OEL一样,CentOS则baseurl=file:///mnt/ 即可,因为CentOS的repodata目录就在光盘根下。

配置好YUM,然后进行所需软件包的安装

yum -y install co

你可能感兴趣的:(ORACLE)