ORA-01034: ORACLE not available問題

andyann發表於2011-10-27
最近在安裝完資料庫出現本地sys登陸進去後報錯,查詢相關資訊也正常,百思不得其解時,看到一同行部落格也遇到此問題,原來是環境設定問題,把相關資訊貼出來給大家參考。


[oracle@anpc db]$ sqlplus / as sysdba

SQL*Plus: Release 11.1.0.7.0 - Production on Thu Oct 27 14:54:28 2011

Copyright (c) 1982, 2008, Oracle.  All rights reserved.

Connected to an idle instance.

SQL> show parameter sga
ORA-01034: ORACLE not available
Process ID: 0
Session ID: 0 Serial number: 0


SQL> quit
Disconnected


(1)ps -ef | grep ora  ORACLE程式都正常執行

(2)使用其他普通帳號在別的機器可以正常登入和檢視資料。

(3)lsnrctl status 顯示也正常

(4)tnsping 也正常

最後看了一下環境變數:

[oracle@anpc ~]$ cat .bash_profile
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi
export ORACLE_BASE=/u01/app/oracle/
export ORACLE_SID=sid
export ORACLE_HOME=$ORACLE_BASE/product/11.1.0/db
export NLS_LANG=AMERICAN_AMERICA.ZHS16GBK
export LD_LIBRARY_PATH=$ORACLE_HOME/lib
export PATH=$PATH:$HOME/BIN:$ORACLE_HOME/bin

原來下面的行:
export ORACLE_BASE=/u01/app/oracle/
多了一個"/"符號,
編輯.bash_profile 去掉"/",儲存退出,然後重新登陸系統即可。

這幾個環境變數設定的時候一定要注意,符號該多的不要多,該少的一個也不要少。
一般本地登入有問題和環境有著直接關係。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24070945/viewspace-709790/,如需轉載,請註明出處,否則將追究法律責任。

相關文章