Oracle資料庫的監聽器掛起情況

mengzhaoliang發表於2011-12-05

1、 客戶端連線不上資料庫。

2、 檢視資料庫的例項狀態為OPEN,並且alert_SID.log沒有錯誤

3、 檢視資料庫監聽器時出現下面的資訊:

$ lsnrctl status

 

LSNRCTL for IBM/AIX RISC System/6000: Version 10.2.0.1.0 - Production on 05-DEC-

2011 09:13:49

 

Copyright (c) 1991, 2005, Oracle.  All rights reserved.

 

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=testdb)(PORT=1568)))

  

   不能正常查詢出監聽例項的資訊,就一直不動了。好像掛起的現象。

 

Lsnrctl stop, lsnrctl start 都不能正常執行,情況像lsnrctl status 一樣。

 

解決:

OS中殺死lsnrct的程式

查詢:

$ ps -ef|grep lsnr

  oraoms  598058       1   0   Oct 08      - 28:38 /home/oraoms/OraHome_1/bin/tn

slsnr LISTENER -inherit

  oraoms  970884 1790128   0 09:19:21  pts/0  0:00 grep lsnr

  oraoms 1814580  598058   0 07:26:15      -  0:00 /home/oraoms/OraHome_1/bin/tn

slsnr LISTENER -inherit

$

 

殺死程式:

$ kill 1814580

$ ps -ef|grep lsnr

  oraoms  598058       1   1   Oct 08      - 28:38 /home/oraoms/OraHome_1/bin/tn

slsnr LISTENER -inherit

  oraoms 1007764 1790128   0 09:19:42  pts/0  0:00 grep lsnr

$ kill 598058

$ ps -ef|grep lsnr

  oraoms  598060 1790128   0 09:20:00  pts/0  0:00 grep lsnr

 

$ lsnrctl status

 

LSNRCTL for IBM/AIX RISC System/6000: Version 10.2.0.1.0 - Production on 05-DEC-

2011 09:20:04

 

Copyright (c) 1991, 2005, Oracle.  All rights reserved.

 

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=testdb)(PORT=1568)))

TNS-12541: TNS:no listener

 TNS-12560: TNS:protocol adapter error

  TNS-00511: No listener

   IBM/AIX RISC System/6000 Error: 79: Connection refused

$

 

再次啟動監聽器,則可以解決。

$ lsnrctl start

 

 

 

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

相關文章