自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

解決Linux下sqlplus無響應的三種方法

數(shù)據(jù)庫 Oracle
本文我們主要介紹了Oracle數(shù)據(jù)庫服務器中的系統(tǒng)資源高造成的sqlplus沒有反應的情況,并介紹了三種解決方案,希望能夠?qū)δ兴鶐椭?/div>

Oracle數(shù)據(jù)庫的sqlplus無響應掛起處理,網(wǎng)上查看資料得知是oracle的bug引起的,事實上只要Linux x86主機運行天數(shù)是24.8的倍數(shù)都有可能引發(fā)該bug,因為time()函數(shù)值為null,造成無限死循環(huán),從而耗盡cpu。接下來我們介紹一下解決辦法。

解決辦法三種:

1) 重啟主機;

2) 打patch set,如升級到10.2.0.4;

3) 對該bug單獨打臨時patch 4612267。

第一種方法沒有徹底解決問題,以后照舊;第二種方法,升級時間長,且要求停庫很久,當前生產(chǎn)環(huán)境暫不適合;

參考文檔:

Doc ID: 338461.1 SQL*Plus 10.2.0.1 Hangs, When System Uptime Is Long Period of Time

Doc ID: 4612267.8 Bug 4612267 - OCI client spins when machine uptime >= 249 days

我采取的是第三種方法,打補丁包的方式。而且據(jù)oracle官方文檔說明,oracle11已經(jīng)修復該問題。

下面是pache 4612267補丁包的安裝及驗證方法:

先停監(jiān)聽、dbconsole和數(shù)據(jù)庫

 

  1. $ lsnrctl stop  
  2.  
  3. $ emctl stop dbconsole  
  4.  
  5. $ sqlplus / as sysdba  
  6.  
  7. SQL> shutdown immediate 

 

注意:dbconsole是在已經(jīng)裝了Oracle EM的情況下要停止,如果未安裝則無需干涉。

安裝patch

 

  1. $ mkdir $ORACLE_BASE/patches  
  2.  
  3. $ cd $ORACLE_BASE/patches  
  4.  
  5. $ rz    (SecureCRT里上傳 p4612267_10201_LINUX.zip 文件, 其它上傳方式也可以)  
  6.  
  7. $ unzip p4612267_10201_LINUX.zip    
  8.  
  9. $ cd 4612267/  
  10.  
  11. $ $ORACLE_HOME/OPatch/opatch apply  
  12.  
  13. Invoking OPatch 10.2.0.1.0  
  14.  
  15. ...  
  16.  
  17. Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.  
  18.  
  19. (Oracle Home = '/u01/app/oracle/product/10.2.0/db_1')  
  20.  
  21. Is the local system ready for patching?  
  22.  
  23. Do you want to proceed? [y|n]  
  24.  
  25. y    (此處輸入y)  
  26.  
  27. User Responded with: Y  
  28.  
  29. ...  
  30.  
  31. ApplySession adding interim patch '4612267' to inventory  
  32.  
  33. The local system has been patched and can be restarted.  
  34.  
  35. OPatch succeeded. 

 

驗證patch

 

  1. $ $ORACLE_HOME/OPatch/opatch lsinventory  
  2.  
  3. Invoking OPatch 10.2.0.1.0  
  4.  
  5. Oracle interim Patch Installer version 10.2.0.1.0  
  6.  
  7. Copyright (c) 2005, Oracle Corporation. All rights reserved..  
  8.  
  9. Oracle Home       : /u01/app/oracle/product/10.2.0/db_1  
  10.  
  11. Central Inventory : /u01/app/oracle/oraInventory  
  12.  
  13. from           : /u01/app/oracle/product/10.2.0/db_1/oraInst.loc  
  14.  
  15. OPatch version    : 10.2.0.1.0  
  16.  
  17. OUI version       : 10.2.0.1.0  
  18.  
  19. OUI location      : /u01/app/oracle/product/10.2.0/db_1/oui  
  20.  
  21. Log file location : /u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/opatch/opatch-2009_Jan_13_11-06-27-HKT_Tue.log  
  22.  
  23. Lsinventory Output file location : /u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/opatch/lsinv/lsinventory-2009_Jan_13_11-06-27-HKT_Tue.txt  
  24.  
  25. --------------------------------------------------------------------------------  
  26.  
  27. Installed Top-level Products (2):  
  28.  
  29. Oracle Database  
  30.  
  31. 10g                                                  10.2.0.1.0  
  32.  
  33. Oracle Database 10g Products                                         10.2.0.1.0  
  34.  
  35. There are 2 products installed in this Oracle Home.  
  36.  
  37. Interim patches (1) :  
  38.  
  39. Patch 4612267      : applied on Tue Jan 13 11:05:10 HKT 2009  
  40.  
  41.    Created on 5 Oct 2005, 13:48:00 hrs US/Pacific  
  42.  
  43.    Bugs fixed:  
  44.  
  45.      4612267  
  46.  
  47. --------------------------------------------------------------------------------  
  48.  
  49. OPatch succeeded. 

 

啟動數(shù)據(jù)庫、監(jiān)聽和dbconsole

 

  1. $ sqlplus / as sysdba  
  2.  
  3. SQL> startup  
  4.  
  5. $ lsnrctl start  
  6.  
  7. $ emctl start dbconsole 

 

如果有需要,還可以刪除patch,刪除前先停庫

 

  1. $ cd $ORACLE_BASE/patches/4612267  
  2.  
  3. $ $ORACLE_HOME/OPatch/opatch rollback -id 4612267  
  4.  
  5. Invoking OPatch 10.2.0.1.0  
  6.  
  7. ...  
  8.  
  9. Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.  
  10.  
  11. (Oracle Home = '/u01/app/oracle/product/10.2.0/db_1')  
  12.  
  13. Is the local system ready for patching?  
  14.  
  15. Do you want to proceed? [y|n]  
  16.  
  17. y    (此處輸入y)  
  18.  
  19. User Responded with: Y  
  20.  
  21. ...  
  22.  
  23. RollbackSession removing interim patch '4612267' from inventory  
  24.  
  25. The local system has been patched and can be restarted.  
  26.  
  27. OPatch succeeded. 

 

此時再執(zhí)行上面的驗證patch命令就會發(fā)現(xiàn)該patch已經(jīng)刪除了。

注:

 

  1. Running STRACE tool shows:  
  2.  
  3. $ strace /oracle/home/bin/sqlplus -V 2>&1 |less  
  4.  
  5. ......  
  6.  
  7. old_mmap(NULL, 385024, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x41794000  
  8.  
  9. gettimeofday({1122996561, 411035}, NULL) = 0  
  10.  
  11. access("/usr/local/UD/conf/sqlnet.ora", F_OK) = -1 ENOENT (No such file or directory)  
  12.  
  13. access("/usr/local/UD/lib/oracle/network/admin/sqlnet.ora", F_OK) = -1 ENOENT (No such file or directory)  
  14.  
  15. access("/usr/local/UD/conf/sqlnet.ora", F_OK) = -1 ENOENT (No such file or directory)  
  16.  
  17. access("/usr/local/UD/lib/oracle/network/admin/sqlnet.ora", F_OK) = -1 ENOENT (No such file or directory)  
  18.  
  19. fcntl64(-1218313656, F_SETFD, FD_CLOEXEC) = -1 EBADF (Bad file descriptor)  
  20.  
  21. It is looping on the times() function.--死循環(huán)中  
  22.  
  23. times(NULL) = -1825782405  
  24.  
  25. times(NULL) = -1825782405  
  26.  
  27. times(NULL) = -1825782405  
  28.  
  29. times(NULL) = -1825782405  
  30.  
  31. times(NULL) = -1825782405  
  32.  
  33. times(NULL) = -1825782405  
  34.  
  35. times(NULL) = -1825782405 

 

 關于Linux下sqlplus沒有反應的問題就介紹到這里了,希望通過本次的介紹能夠帶給您一些收獲!

【編輯推薦】

  1. Oracle數(shù)據(jù)庫基于用戶管理的備份與恢復
  2. Oracle 數(shù)據(jù)庫如何設置歸檔模式與非歸檔模式
  3. Oracle數(shù)據(jù)庫利用日志挖掘來恢復誤刪除的數(shù)據(jù)
  4. 只需兩步即可實現(xiàn)SQL Server數(shù)據(jù)庫降級的方法
  5. Linux環(huán)境下Oracle10G和Oracle11G并存的安裝和配置
責任編輯:趙鵬 來源: 網(wǎng)易博客
相關推薦

2016-09-09 13:07:56

CentOSJDKLinux

2022-08-19 11:17:09

Linux

2009-07-08 12:56:32

編寫Servlet

2011-06-10 10:43:12

Ubuntu應用安裝

2009-06-23 10:45:18

Hibernate支持

2015-12-11 09:24:38

加密數(shù)據(jù)Linux

2022-08-24 08:07:11

MyBatisSQLMySQL

2009-12-11 18:49:39

預算編制博科資訊

2022-07-13 16:06:16

Python參數(shù)代碼

2024-11-15 07:00:00

Python發(fā)送郵件

2011-04-18 15:32:45

游戲測試測試方法軟件測試

2010-09-14 15:10:49

CSS注釋

2023-08-14 17:58:13

RequestHTTP請求

2009-12-09 14:22:44

2020-06-17 10:52:00

DDoS攻擊網(wǎng)絡攻擊網(wǎng)絡安全

2016-10-12 13:53:38

JavaByteBufferRandomAcces

2010-09-08 13:29:48

CSS

2023-02-21 14:58:12

間序列周期數(shù)據(jù)集

2010-11-16 16:11:28

Oracle身份驗證

2022-11-18 15:09:29

點贊
收藏

51CTO技術(shù)棧公眾號