AI智能
改变未来

Centos7下Oracle19c数据库安装


一.Oracle19c数据库的安装

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

2.1 系统图形设置(2个节点)

开机以命令模式启动,执行:
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文件

192.168.31.47 19c

2.4 yum配置,并安装依赖包(2个节点)

[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 compat-libstdc+±33 elfutils-libelf-d

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » Centos7下Oracle19c数据库安装