ORA-01034: ORACLE not available問題
最近在安裝完資料庫出現本地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 去掉"/",儲存退出,然後重新登陸系統即可。
這幾個環境變數設定的時候一定要注意,符號該多的不要多,該少的一個也不要少。
一般本地登入有問題和環境有著直接關係。
[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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ORA-01034: ORACLE not availableOracleAI
- ORA-01034: ORACLE not available .OracleAI
- 解決ora-01034:oracle not available 的方法OracleAI
- ORA-01034: ORACLE not available的解決辦法OracleAI
- ORA-01034 :oracle not available ora-27101OracleAI
- Oracle - ORA-01034: ORACLE not available Process ID: 0 / Connected to an idle instanceOracleAI
- RMAN-04006: error from auxiliary database: ORA-01034: ORACLE not availableErrorUXDatabaseOracleAI
- opatch option Not available yet問題的解決方法AI
- 解決 Sorry,this Adobe app is not available 問題的方法APPAI
- ORA-01034,修改主機名導致的資料庫問題資料庫
- 解決Parameter '__frch_item_0' not found. Available parameters 問題AI
- 解決rpmdb: Lock table is out of available locker entries問題。AI
- Spring中出現:No bean named 'XXX' available問題解決SpringBeanAI
- ORACLE碎片問題Oracle
- Oracle常見問題一千問Oracle
- oracle dblink問題Oracle
- Oracle IO問題解析Oracle
- oracle併發問題Oracle
- oracle IO 問題解析Oracle
- oracle鎖表問題Oracle
- oracle高水位問題Oracle
- oracle 分頁問題Oracle
- oracle AS重啟問題Oracle
- Oracle Guard --問題1Oracle
- oracle中排序問題Oracle排序
- Oracle EBS DMZ區訪問問題Oracle
- Oracle trigger問題Oracle
- Oracle 轉移符問題Oracle
- oracle的時區問題Oracle
- oracle的監聽問題Oracle
- Oracle常用問題及解答Oracle
- Oracle DBA 問題記錄Oracle
- Oracle寫日誌問題Oracle
- Oracle IO問題解析(ZT)Oracle
- oracle 解鎖的問題Oracle
- oracle 壞塊問題急救Oracle
- Oracle IO問題解析(7)Oracle
- JDBC連線ORACLE問題JDBCOracle