系统版本:

[[email protected]]# cat /etc/redhat-release 
CentOS Linux release 7.4.1708 (Core)

安装oracle数据库过程中,出现以下报错:

记一次oracle12在Centos7上部署的问题 /tmp/CVU_12.2.0.1.0_oracle

查找相关资料显示为 “无法设置CVU远程执行框架目录“/tmp/CVU_12.2.0.1.0_oracle”。由于系统不是oracle-linux,因此部署过程中会检查系统版本、型号相关参数

解决步骤依次为:

1、初步分析是因为文件夹权限问题,为/tmp/CVU_12.2.0.1.0_oracle 赋予777权限:chmod 777 /tmp/CVU_12.2.0.1.0_oracle------未奏效

2、安装命令添加跳过检查:./runInstaller -silent -responseFile /home/oracle/etc/db_install.rsp -ignoreSysPrereqs -skipPrereqs ------未奏效

3、为整个/tmp 目录授权:chmod 777 /tmp -----未奏效

4、分析错误后面字段,nodes "localhost",分析有可能与host文件有关,因此,检查/etc/hosts下配置,发现本机Ip和主机名并未加到其中,增加 ip hostname 到/etc/hosts中,重新执行安装命令---------生效!

记一次oracle12在Centos7上部署的问题 /tmp/CVU_12.2.0.1.0_oracle

总结:部署过程一定要细心,注重每一个细节!!!

 

 

 

相关文章:

  • 2021-11-10
  • 2021-08-11
  • 2021-06-25
  • 2021-08-19
  • 2021-10-29
  • 2021-12-28
  • 2021-08-14
  • 2022-01-10
猜你喜欢
  • 2021-11-16
  • 2021-09-13
  • 2021-09-12
  • 2021-07-02
  • 2022-01-06
  • 2021-06-20
相关资源
相似解决方案