Linux Oracle 10g 安装问题集

来源:互联网 发布:电梯调度算法专利 编辑:程序博客网 时间:2024/05/29 06:44

 ORA-27101: shared memory realm does not exist

ERROR: 
ORA-01034: ORACLE not available 
ORA-27101: shared memory realm does not exist 
SVR4 Error: 2: No such file or directory 

Solution : 
You need to Manually startup the database 

check ORACLE_SID has value 

sqlplus "sys/password as sysdba" 
startup; 
Connected to an idle instance. 

SQL> start 
ORACLE instance started. 
SQL> exit 

$ export ORACLE_SID=ANOTHER_SID (此处重新设置一下oracle_sid)
$ sqlplus "sys/password as sysdba" 

SQL> startup; 

原创粉丝点击