Oracle11GR2 Installation issue INS-10008

来源:互联网 发布:中国站长站 源码 编辑:程序博客网 时间:2024/06/04 17:59

Error Info:

[FATAL] [INS-10008] Session initialization failed

   CAUSE: An unexpected error occured while initializing the session.
   ACTION: Contact Oracle Support Services or refer logs
   SUMMARY:
       - .

Refer associated stacktrace #oracle.install.commons.util.exception.DefaultErrorAdvisor:1620


比较不幸的是第二次遇到这个错误了。

原因是在给oracle_home目录赋权限的时候给的属组是dba.而在执行installer的时候指定的UNIX_GROUP_NAME是oinstall.所以就报错了

Todo:

make sure the "inst_group" in /etc/oraInst.loc  and the UNIX_GROUP_NAME are the same as the group owner of ORACLE_BASE

1.chown -R oracle:oinstall $ORACLE_BASE
2.inst_group=oinstall
3../runInstaller -silent -debug -force \
-ignoreSysPrereqs -ignorePrereq \
FROM_LOCATION=/opt/software/database/stage/products.xml \
oracle.install.option=INSTALL_DB_SWONLY \
UNIX_GROUP_NAME=oinstall\
ORACLE_HOME=/opt/app/oracle/product/11.2/db_1 \
ORACLE_HOME_NAME="OraDb11g_Home1" \
ORACLE_BASE=/opt/app/oracle \
oracle.install.db.InstallEdition=EE \
oracle.install.db.isCustomInstall=false \
oracle.install.db.DBA_GROUP=dba \
oracle.install.db.OPER_GROUP=dba \
DECLINE_SECURITY_UPDATES=true

0 0
原创粉丝点击