Oracle .oui 安装错误

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/4449424/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-18 22:11:33  来源:igfitidea点击:

Oracle .oui Install Error

oracleinstallredhat

提问by user441423

When I'm trying to install Oracle on Linux Redhat 5 I get the error of .oui at line 54 file permission denied.

当我尝试在 Linux Redhat 5 上安装 Oracle 时,出现错误 .oui at line 54 file permission denied.

I gave permission to the .runInstaller file up to 777 but that did not help me.

我给了 .runInstaller 文件最多 777 的权限,但这对我没有帮助。

I created the dir like /u01/app/oracle

我创建了像 /u01/app/oracle 这样的目录

回答by Doug Porter

Check out the forum post below. It goes through a series of steps regarding permissions, prerequisites, and user level to resolve the error you are getting:

查看下面的论坛帖子。它通过一系列有关权限、先决条件和用户级别的步骤来解决您遇到的错误:

http://forums.oracle.com/forums/thread.jspa?threadID=1102139

http://forums.oracle.com/forums/thread.jspa?threadID=1102139

回答by mikia

The best solution is:

最好的解决办法是:

  1. Copy oracle installation in /home/oracle/database with oracle user
  2. Change mod for all structure under database folder

    chmod -R 777 /home/oracle/ndatabase/
    
  3. Call install script from database folder

    sh ./runInstaller
    
  1. 用oracle用户复制oracle安装到/home/oracle/database
  2. 更改数据库文件夹下所有结构的mod

    chmod -R 777 /home/oracle/ndatabase/
    
  3. 从数据库文件夹调用安装脚本

    sh ./runInstaller