启动lnsr需要写tmp权限


今天凌晨被叫醒起来,某省的数据库db01坏了一个cpu,由于有HA架构的保护,切换到了db02,但是在db02上却无法启动侦听,以下是报错信息:

oracle@gz_dc02:/oracle/app/oracle/admin/gzmisc/bdump > lsnrctl start
 
LSNRCTL for HPUX: Version 9.2.0.6.0 - Production on 29-JUL-2009 03:53:16
 
Copyright (c) 1991, 2002, Oracle Corporation.  All rights reserved.
 
Starting /oracle/app/oracle/product/9.2.0/bin/tnslsnr: please wait...
 
TNSLSNR for HPUX: Version 9.2.0.6.0 - Production
System parameter file is /oracle/app/oracle/product/9.2.0/network/admin/listener.ora
Log messages written to /oracle/app/oracle/product/9.2.0/network/log/listener.log
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.203.104.11)(PORT=1521)))
Error listening on: (ADDRESS=(PROTOCOL=ipc)(PARTIAL=yes)(QUEUESIZE=1))
No longer listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.203.104.11)(PORT=1521)))
TNS-12541: TNS:no listener
 TNS-12560: TNS:protocol adapter error
  TNS-00511: No listener
   HPUX Error: 2: No such file or directory
 
Listener failed to start. See the error message(s) above...
 
oracle@gz_dc02:/oracle/app/oracle/admin/gzmisc/bdump >

看报错很奇怪:Error listening on: (ADDRESS=(PROTOCOL=ipc)(PARTIAL=yes)(QUEUESIZE=1)),难道是网络的问题?问了一下主机工程师,确认网络没问题。

root@gz_dc02:/oracle/app/oracle/product/9.2.0/network/admin #
root@gz_dc02:/oracle/app/oracle/product/9.2.0/network/admin # ioscan -fnClan
Class     I  H/W Path    Driver S/W State   H/W Type     Description
=====================================================================
lan       0  0/0/0/1/0   igelan CLAIMED     INTERFACE    HP PCI-X 1000Base-T Built-in
lan       1  0/0/10/1/0  iether CLAIMED     INTERFACE    HP AD331-60001 PCI/PCI-X 1000Base-T Adapter
lan       2  0/0/12/1/0  iether CLAIMED     INTERFACE    HP AD331-60001 PCI/PCI-X 1000Base-T Adapter
root@gz_dc02:/oracle/app/oracle/product/9.2.0/network/admin # netstat -in
Name      Mtu  Network         Address         Ipkts   Ierrs Opkts   Oerrs Coll
lan2*     1500 none            none            0       0     0       0     0   
lan1:1    1500 10.203.104.0    10.203.104.11   2291678 0     46      0     0   
lan1      1500 10.203.104.0    10.203.104.62   32093945 0     51519548 0     0   
lan0      1500 10.203.105.220  10.203.105.222  201     0     55      0     0   
lo0       4136 127.0.0.0       127.0.0.1       36434057 0     36434729 0     0

那难道是ipc协议的问题?继续去看listener.ora文件的配置:

oracle@gz_dc02:/oracle/app/oracle/product/9.2.0/network/admin > cat listener.ora
# LISTENER.ORA Network Configuration File: /oracle/app/oracle/product/9.2.0/network/admin/listener.ora
# Generated by Oracle configuration tools.
 
LISTENER =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
      (ADDRESS_LIST =
        (ADDRESS = (PROTOCOL = TCP)(HOST = 10.203.104.11)(PORT = 1521))
      )
      (ADDRESS_LIST =
        (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
      )
    )
  )
 
SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =
      (SID_NAME = PLSExtProc)
      (ORACLE_HOME = /oracle/app/oracle/product/9.2.0)
      (PROGRAM = extproc)
    )
    (SID_DESC =
      (SID_NAME = gzmisc)
      (ORACLE_HOME = /oracle/app/oracle/product/9.2.0)
    )
  )
 
oracle@gz_dc02:/oracle/app/oracle/product/9.2.0/network/admin >

难道是(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC)) 的问题?但是这个一模一样的配置当初在db01也是没事的呀,奇怪!尝试去掉这个配置,再次启动侦听的时候,还是报同样的错。

重启network服务还是一样报错;一样的配置,尝试再次切换到db01,侦听能顺利启动;再切换到db02,还是无法启动。

没办法,trace一下侦听吧,由于侦听没启动,不能LSNRCTL> set trc_level admin,只能在listener.ora文件里面加入如下的内容:

TRACE_FILE_LISTENER = LISTENER.TRC
TRACE_DIRECTORY_LISTENER = /oracle/app/oracle/product/9.2.0/network/trace
TRACE_LEVEL_LISTENER = SUPPORT
TRACE_FILELEN_LISTENER=10240
TRACE_FILENO_LISTENER=10

启动侦听后,观察trace文件:

  1. TNSLSNR for HPUX: Version 9.2.0.6.0 - Production on 29-JUL-2009 04:48:02
  2.  
  3. Copyright (c) 1991, 2002, Oracle Corporation.  All rights reserved.
  4.  
  5. [000001 29-JUL-2009 04:48:02:875]
  6. --- TRACE CONFIGURATION INFORMATION FOLLOWS ---
  7. [000001 29-JUL-2009 04:48:02:875] New trace stream is /oracle/app/oracle/product/9.2.0/network/trace/listener.trc
  8. [000001 29-JUL-2009 04:48:02:875] New trace level is 16
  9. [000001 29-JUL-2009 04:48:02:875] --- TRACE CONFIGURATION INFORMATION ENDS ---
  10. [000001 29-JUL-2009 04:48:02:875]
  11. --- PARAMETER SOURCE INFORMATION FOLLOWS ---
  12. [000001 29-JUL-2009 04:48:02:875] Attempted load of system pfile source /oracle/app/oracle/product/9.2.0/network/admin/listener.ora
  13. [000001 29-JUL-2009 04:48:02:875] Parameter source loaded successfully
  14. [000001 29-JUL-2009 04:48:02:875]
  15. [000001 29-JUL-2009 04:48:02:875] Attempted load of command line source
  16. [000001 29-JUL-2009 04:48:02:875] Parameter source was not loaded
  17. [000001 29-JUL-2009 04:48:02:876]
  18. [000001 29-JUL-2009 04:48:02:876]  -> PARAMETER TABLE LOAD RESULTS FOLLOW <-
  19. [000001 29-JUL-2009 04:48:02:876] Successful parameter table load
  20. [000001 29-JUL-2009 04:48:02:876-> PARAMETER TABLE HAS THE FOLLOWING CONTENTS <-
  21. [000001 29-JUL-2009 04:48:02:876]   TRACE_FILELEN_LISTENER = 10240
  22. [000001 29-JUL-2009 04:48:02:876]   LISTENER = (DESCRIPTION_LIST = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 10.203.104.11)(PORT = 1521))) (ADDRESS_LIST = (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC)))))
  23. [000001 29-JUL-2009 04:48:02:876]   TRACE_LEVEL_LISTENER = SUPPORT
  24. [000001 29-JUL-2009 04:48:02:876]   TRACE_FILENO_LISTENER = 10
  25. [000001 29-JUL-2009 04:48:02:876]   SID_LIST_LISTENER = (SID_LIST = (SID_DESC = (SID_NAME = PLSExtProc) (ORACLE_HOME = /oracle/app/oracle/product/9.2.0) (PROGRAM = extproc)) (SID_DESC = (SID_NAME = gzmisc) (ORACLE_HOME = /oracle/app/oracle/product/9.2.0)))
  26. [000001 29-JUL-2009 04:48:02:876]   TRACE_DIRECTORY_LISTENER = /oracle/app/oracle/product/9.2.0/network/trace
  27. [000001 29-JUL-2009 04:48:02:876]   TRACE_FILE_LISTENER = LISTENER.TRC
  28. [000001 29-JUL-2009 04:48:02:876] --- PARAMETER SOURCE INFORMATION ENDS ---
  29. [000001 29-JUL-2009 04:48:02:876]
  30. --- LOG CONFIGURATION INFORMATION FOLLOWS ---
  31. [000001 29-JUL-2009 04:48:02:876] Log stream will be "/oracle/app/oracle/product/9.2.0/network/log/listener.log"
  32. [000001 29-JUL-2009 04:48:02:876] Log stream validation requested
  33. [000001 29-JUL-2009 04:48:02:877] Log stream is valid
  34. [000001 29-JUL-2009 04:48:02:877] --- LOG CONFIGURATION INFORMATION ENDS ---
  35.  
  36. [000001 29-JUL-2009 04:48:02:877] ntvllt: entry
  37. [000001 29-JUL-2009 04:48:02:877] ntvllt: exit
  38. [000001 29-JUL-2009 04:48:02:877] nsglldprm: Resolved "INBOUND_CONNECT_TIMEOUT_LISTENER" to: 0
  39. [000001 29-JUL-2009 04:48:02:877] nsglldprm: Resolved "STARTUP_WAIT_TIME_LISTENER" to: 0
  40. [000001 29-JUL-2009 04:48:02:880] nsinherit: entry
  41. [000001 29-JUL-2009 04:48:02:880] nsinherit: doing connect handshake...
  42. [000001 29-JUL-2009 04:48:02:880] nsc2addr: entry
  43. [000001 29-JUL-2009 04:48:02:880] nlpcaini: entry
  44. [000001 29-JUL-2009 04:48:02:880] nlpcaini: No process parameters set
  45. [000001 29-JUL-2009 04:48:02:880] nlpcaini: exit
  46. [000001 29-JUL-2009 04:48:02:881] nsc2addr: normal exit
  47. [000001 29-JUL-2009 04:48:02:885] nsinherit: inheriting the connection...
  48. [000001 29-JUL-2009 04:48:02:885] nsopen: entry
  49. [000001 29-JUL-2009 04:48:02:885] nsmal: entry
  50. [000001 29-JUL-2009 04:48:02:885] nsmal: 800 bytes at 0x8000000100166448
  51. [000001 29-JUL-2009 04:48:02:885] nsmal: normal exit
  52. [000001 29-JUL-2009 04:48:02:886] nsopenmplx: entry
  53. [000001 29-JUL-2009 04:48:02:886] nsmal: entry
  54. [000001 29-JUL-2009 04:48:02:886] nsmal: 2592 bytes at 0x8000000100166780
  55. [000001 29-JUL-2009 04:48:02:886] nsmal: normal exit
  56. [000001 29-JUL-2009 04:48:02:886] nsopenmplx: normal exit
  57. [000001 29-JUL-2009 04:48:02:886] nsopen: opening transport...
  58. [000001 29-JUL-2009 04:48:02:886] ntpcon: entry
  59. [000001 29-JUL-2009 04:48:02:886] ntpcon: toc = 4
  60. [000001 29-JUL-2009 04:48:02:886] ntpcon: NT layer IPC connection has been established
  61. [000001 29-JUL-2009 04:48:02:886] ntpcon: exit
  62. [000001 29-JUL-2009 04:48:02:886] nsopen: transport is open
  63. [000001 29-JUL-2009 04:48:02:886] nsoptions: entry
  64. [000001 29-JUL-2009 04:48:02:887] nsoptions: lcl[0]=0x0, lcl[1]=0x0, gbl[0]=0x0, gbl[1]=0x0, cha=0x0
  65. [000001 29-JUL-2009 04:48:02:887] nsoptions: lcl[0]=0xffe9ff, lcl[1]=0x0, gbl[0]=0x7e3f, gbl[1]=0x0
  66. [000001 29-JUL-2009 04:48:02:887] nsoptions: normal exit
  67. [000001 29-JUL-2009 04:48:02:887] nsnainit: entry
  68. [000001 29-JUL-2009 04:48:02:887] nsnainit: inherit
  69. [000001 29-JUL-2009 04:48:02:887] nsnadct: entry
  70. [000001 29-JUL-2009 04:48:02:887] nsnadct: normal exit
  71. [000001 29-JUL-2009 04:48:02:887] nsnasvnainfo: entry
  72. [000001 29-JUL-2009 04:48:02:887] nsnasvnainfo: NA disabled for this connection
  73. [000001 29-JUL-2009 04:48:02:887] ntpctl: entry
  74. [000001 29-JUL-2009 04:48:02:887] ntpctl: exit
  75. [000001 29-JUL-2009 04:48:02:887] nsnasvnainfo: normal exit
  76. [000001 29-JUL-2009 04:48:02:887] nainit: entry
  77. [000001 29-JUL-2009 04:48:02:887] nagblini: entry
  78. [000001 29-JUL-2009 04:48:02:888] nau_gin: entry
  79. [000001 29-JUL-2009 04:48:02:888] nau_gparams: entry
  80. [000001 29-JUL-2009 04:48:02:888] nam_gbp: Reading parameter "sqlnet.authentication_required" from parameter file
  81. [000001 29-JUL-2009 04:48:02:888] nam_gbp: Parameter not found
  82. [000001 29-JUL-2009 04:48:02:888] nau_gparams: Using default value "FALSE"
  83. [000001 29-JUL-2009 04:48:02:888] nau_gslf: entry
  84. [000001 29-JUL-2009 04:48:02:888] nam_gic: entry
  85. [000001 29-JUL-2009 04:48:02:888] nam_gic: Counting # of items in "sqlnet.authentication_services" parameter
  86. [000001 29-JUL-2009 04:48:02:888] nam_gic: Parameter not found
  87. [000001 29-JUL-2009 04:48:02:888] nam_gic: Found 0 items
  88. [000001 29-JUL-2009 04:48:02:888] nam_gic: exit
  89. [000001 29-JUL-2009 04:48:02:888] nau_gslf: Using default value "all available adapters"
  90. [000001 29-JUL-2009 04:48:02:888] nauss_set_state: entry
  91. [000001 29-JUL-2009 04:48:02:888] nauss_set_state: exit
  92. [000001 29-JUL-2009 04:48:02:889] nau_gslf: exit
  93. [000001 29-JUL-2009 04:48:02:889] nau_gparams: exit
  94. [000001 29-JUL-2009 04:48:02:889] nau_gin: exit
  95. [000001 29-JUL-2009 04:48:02:889] nagblini: exit
  96. [000001 29-JUL-2009 04:48:02:889] na_saveprot: entry
  97. [000001 29-JUL-2009 04:48:02:889] na_saveprot: exit
  98. [000001 29-JUL-2009 04:48:02:889] nacomin: entry
  99. [000001 29-JUL-2009 04:48:02:889] nas_init: entry
  100. [000001 29-JUL-2009 04:48:02:889] nas_init: exit
  101. [000001 29-JUL-2009 04:48:02:889] nau_ini: entry
  102. [000001 29-JUL-2009 04:48:02:889] naugcp_get_connect_parameters: entry
  103. [000001 29-JUL-2009 04:48:02:889] nauss_set_state: entry
  104. [000001 29-JUL-2009 04:48:02:889] nauss_set_state: exit
  105. [000001 29-JUL-2009 04:48:02:889] naugcp_get_connect_parameters: exit
  106. [000001 29-JUL-2009 04:48:02:889] nau_gettab: entry
  107. [000001 29-JUL-2009 04:48:02:889] nau_tadv: entry
  108. [000001 29-JUL-2009 04:48:02:890] nau_fad: entry
  109. [000001 29-JUL-2009 04:48:02:890] nau_fad: The following authentication adapter dll does not exist: /oracle/app/oracle/product/9.2.0/lib/libnk59.sl
  110. [000001 29-JUL-2009 04:48:02:891] nau_fad: exit
  111. [000001 29-JUL-2009 04:48:02:891] nau_fad: entry
  112. [000001 29-JUL-2009 04:48:02:891] nau_fad: The following authentication adapter dll does not exist: /oracle/app/oracle/product/9.2.0/lib/libngss9.sl
  113. [000001 29-JUL-2009 04:48:02:891] nau_fad: exit
  114. [000001 29-JUL-2009 04:48:02:891] nau_fad: entry
  115. [000001 29-JUL-2009 04:48:02:891] nau_fad: The following authentication adapter dll does not exist: /oracle/app/oracle/product/9.2.0/lib/libnnts9.sl
  116. [000001 29-JUL-2009 04:48:02:891] nau_fad: exit
  117. [000001 29-JUL-2009 04:48:02:891] nau_fad: entry
  118. [000001 29-JUL-2009 04:48:02:891] nau_fad: The following authentication adapter dll does not exist: /oracle/app/oracle/product/9.2.0/lib/libnrad9.sl
  119. [000001 29-JUL-2009 04:48:02:891] nau_fad: exit
  120. [000001 29-JUL-2009 04:48:02:891] nau_tadv: Found at least one invalid entry
  121. [000001 29-JUL-2009 04:48:02:891] nau_tadv: exit
  122. [000001 29-JUL-2009 04:48:02:891] nau_gettab: using authentication adapter table "dynamic table"
  123. [000001 29-JUL-2009 04:48:02:892] nau_gettab: adapter table is empty
  124. [000001 29-JUL-2009 04:48:02:892] nau_gettab: exit
  125. [000001 29-JUL-2009 04:48:02:892] nau_sini: entry
  126. [000001 29-JUL-2009 04:48:02:892] nau_sini: exit
  127. [000001 29-JUL-2009 04:48:02:892] nau_ini: connection type: "standard"
  128. [000001 29-JUL-2009 04:48:02:892] nau_ini: exit
  129. [000001 29-JUL-2009 04:48:02:892] naeeinit: entry
  130. [000001 29-JUL-2009 04:48:02:892] nam_gbp: Reading parameter "SQLNET.FIPS_140" from parameter file
  131. [000001 29-JUL-2009 04:48:02:892] nam_gbp: Parameter not found
  132. [000001 29-JUL-2009 04:48:02:892] nam_gnsp: Reading parameter "SQLNET.ENCRYPTION_SERVER" from parameter file
  133. [000001 29-JUL-2009 04:48:02:892] nam_gnsp: Parameter not found
  134. [000001 29-JUL-2009 04:48:02:892] naequad: Using default value "ACCEPTED"
  135. [000001 29-JUL-2009 04:48:02:892] nam_gic: entry
  136. [000001 29-JUL-2009 04:48:02:892] nam_gic: Counting # of items in "SQLNET.ENCRYPTION_TYPES_SERVER" parameter
  137. [000001 29-JUL-2009 04:48:02:892] nam_gic: Parameter not found
  138. [000001 29-JUL-2009 04:48:02:893] nam_gic: exit
  139. [000001 29-JUL-2009 04:48:02:893] naesno: Using default value "all available algorithms"
  140. [000001 29-JUL-2009 04:48:02:893] naeshow: entry
  141. [000001 29-JUL-2009 04:48:02:893] naeshow: These are the encryption algorithms that the server will accept, in decreasing order of preference:
  142. [000001 29-JUL-2009 04:48:02:893] naeshow: Choice 0: no algorithm; encryption inactive
  143. [000001 29-JUL-2009 04:48:02:893] naeshow: Choice 1: 'AES256' (ID 17)
  144. [000001 29-JUL-2009 04:48:02:893] naeshow: Choice 2: 'RC4_256' (ID 6)
  145. [000001 29-JUL-2009 04:48:02:893] naeshow: Choice 3: 'AES192' (ID 16)
  146. [000001 29-JUL-2009 04:48:02:893] naeshow: Choice 4: '3DES168' (ID 12)
  147. [000001 29-JUL-2009 04:48:02:893] naeshow: Choice 5: 'AES128' (ID 15)
  148. [000001 29-JUL-2009 04:48:02:893] naeshow: Choice 6: 'RC4_128' (ID 10)
  149. [000001 29-JUL-2009 04:48:02:893] naeshow: Choice 7: '3DES112' (ID 11)
  150. [000001 29-JUL-2009 04:48:02:893] naeshow: Choice 8: 'RC4_56' (ID 8)
  151. [000001 29-JUL-2009 04:48:02:893] naeshow: Choice 9: 'DES' (ID 2)
  152. [000001 29-JUL-2009 04:48:02:893] naeshow: Choice 10: 'RC4_40' (ID 1)
  153. [000001 29-JUL-2009 04:48:02:893] naeshow: Choice 11: 'DES40' (ID 3)
  154. [000001 29-JUL-2009 04:48:02:894] naeshow: exit
  155. [000001 29-JUL-2009 04:48:02:894] naeeinit: exit
  156. [000001 29-JUL-2009 04:48:02:894] naecinit: entry
  157. [000001 29-JUL-2009 04:48:02:894] nam_gnsp: Reading parameter "SQLNET.CRYPTO_CHECKSUM_SERVER" from parameter file
  158. [000001 29-JUL-2009 04:48:02:894] nam_gnsp: Parameter not found
  159. [000001 29-JUL-2009 04:48:02:894] naequad: Using default value "ACCEPTED"
  160. [000001 29-JUL-2009 04:48:02:894] nam_gic: entry
  161. [000001 29-JUL-2009 04:48:02:894] nam_gic: Counting # of items in "SQLNET.CRYPTO_CHECKSUM_TYPES_SERVER" parameter
  162. [000001 29-JUL-2009 04:48:02:894] nam_gic: Parameter not found
  163. [000001 29-JUL-2009 04:48:02:894] nam_gic: exit
  164. [000001 29-JUL-2009 04:48:02:894] naesno: Using default value "all available algorithms"
  165. [000001 29-JUL-2009 04:48:02:894] naeshow: entry
  166. [000001 29-JUL-2009 04:48:02:894] naeshow: These are the checksumming algorithms that the server will accept, in decreasingorder of preference:
  167. [000001 29-JUL-2009 04:48:02:894] naeshow: Choice 0: no algorithm; checksumming inactive
  168. [000001 29-JUL-2009 04:48:02:894] naeshow: Choice 1: 'SHA1' (ID 3)
  169. [000001 29-JUL-2009 04:48:02:895] naeshow: Choice 2: 'MD5' (ID 1)
  170. [000001 29-JUL-2009 04:48:02:895] naeshow: exit
  171. [000001 29-JUL-2009 04:48:02:895] naecinit: exit
  172. [000001 29-JUL-2009 04:48:02:895] nainit: native services disabled - disconnecting
  173. [000001 29-JUL-2009 04:48:02:895] nadisc: entry
  174. [000001 29-JUL-2009 04:48:02:895] nacomtm: entry
  175. [000001 29-JUL-2009 04:48:02:895] nacompd: entry
  176. [000001 29-JUL-2009 04:48:02:895] nacompd: exit
  177. [000001 29-JUL-2009 04:48:02:895] nacompd: entry
  178. [000001 29-JUL-2009 04:48:02:895] nacompd: exit
  179. [000001 29-JUL-2009 04:48:02:895] nacomtm: exit
  180. [000001 29-JUL-2009 04:48:02:895] nas_dis: entry
  181. [000001 29-JUL-2009 04:48:02:895] nas_dis: exit
  182. [000001 29-JUL-2009 04:48:02:895] nau_dis: entry
  183. [000001 29-JUL-2009 04:48:02:895] nau_dis: exit
  184. [000001 29-JUL-2009 04:48:02:895] naeetrm: entry
  185. [000001 29-JUL-2009 04:48:02:896] naeetrm: exit
  186. [000001 29-JUL-2009 04:48:02:896] naectrm: entry
  187. [000001 29-JUL-2009 04:48:02:896] naectrm: exit
  188. [000001 29-JUL-2009 04:48:02:896] nagbltrm: entry
  189. [000001 29-JUL-2009 04:48:02:896] nau_gtm: entry
  190. [000001 29-JUL-2009 04:48:02:896] nau_gtm: exit
  191. [000001 29-JUL-2009 04:48:02:896] nagbltrm: exit
  192. [000001 29-JUL-2009 04:48:02:896] nadisc: exit
  193. [000001 29-JUL-2009 04:48:02:896] nainit: exit
  194. [000001 29-JUL-2009 04:48:02:896] nsnainit: NS Connection version: 312
  195. [000001 29-JUL-2009 04:48:02:896] nsnainit: inf->nsinfflg[0]: 0xd inf->nsinfflg[1]: 0xd
  196. [000001 29-JUL-2009 04:48:02:896] nsnainit: "or" info flags: 0xd        Translations follow:
  197.         native service(s) is (are) wanted
  198.         NA disabled remotely for this connection
  199.         NA services unavailable on both processes - negotiation not needed
  200.  
  201. [000001 29-JUL-2009 04:48:02:896] nsnainit: "or" info flags: 0xd        Translations follow:
  202.         native service(s) is (are) wanted
  203.         NA disabled remotely for this connection
  204.         NA services unavailable on both processes - negotiation not needed
  205. "and" info flags: 0xd   Translations follow:
  206.         native service(s) is (are) wanted
  207.         NA disabled remotely for this connection
  208.         NA services unavailable on both processes - negotiation not needed
  209.  
  210. [000001 29-JUL-2009 04:48:02:896] nsnainit: normal exit
  211. [000001 29-JUL-2009 04:48:02:896] nsopen: global context check-in (to slot 0) complete
  212. [000001 29-JUL-2009 04:48:02:897] nsopen: lcl[0]=0xffe9ff, lcl[1]=0x0, gbl[0]=0x7e3f, gbl[1]=0x0, tdu=8192, sdu=2048
  213. [000001 29-JUL-2009 04:48:02:897] nsdo: entry
  214. [000001 29-JUL-2009 04:48:02:897] nsdo: cid=0, opcode=65, *bl=0, *what=0, uflgs=0x0, cflgs=0x2
  215. [000001 29-JUL-2009 04:48:02:897] nsdo: rank=64, nsctxrnk=0
  216. [000001 29-JUL-2009 04:48:02:897] nsdo: nsctx: state=7, flg=0x4200, mvd=0
  217. [000001 29-JUL-2009 04:48:02:897] nsbal: entry
  218. [000001 29-JUL-2009 04:48:02:897] nsbgetfl: entry
  219. [000001 29-JUL-2009 04:48:02:897] nsbgetfl: normal exit
  220. [000001 29-JUL-2009 04:48:02:897] nsmal: entry
  221. [000001 29-JUL-2009 04:48:02:897] nsmal: 96 bytes at 0x8000000100041c28
  222. [000001 29-JUL-2009 04:48:02:897] nsmal: normal exit
  223. [000001 29-JUL-2009 04:48:02:897] nsbal: normal exit
  224. [000001 29-JUL-2009 04:48:02:897] nsbal: entry
  225. [000001 29-JUL-2009 04:48:02:897] nsbgetfl: entry
  226. [000001 29-JUL-2009 04:48:02:897] nsbgetfl: normal exit
  227. [000001 29-JUL-2009 04:48:02:898] nsmal: entry
  228. [000001 29-JUL-2009 04:48:02:898] nsmal: 96 bytes at 0x8000000100041ca0
  229. [000001 29-JUL-2009 04:48:02:898] nsmal: normal exit
  230. [000001 29-JUL-2009 04:48:02:898] nsbal: normal exit
  231. [000001 29-JUL-2009 04:48:02:898] nsdo: nsctxrnk=0
  232. [000001 29-JUL-2009 04:48:02:898] nsdo: normal exit
  233. [000001 29-JUL-2009 04:48:02:898] nsopen: normal exit
  234. [000001 29-JUL-2009 04:48:02:898] nsdo: entry
  235. [000001 29-JUL-2009 04:48:02:898] nsdo: cid=0, opcode=68, *bl=0, *what=8, uflgs=0x0, cflgs=0x3
  236. [000001 29-JUL-2009 04:48:02:898] nsdo: rank=64, nsctxrnk=0
  237. [000001 29-JUL-2009 04:48:02:898] nsdo: nsctx: state=14, flg=0x4204, mvd=0
  238. [000001 29-JUL-2009 04:48:02:898] nsdo: gtn=0, gtc=0, ptn=10, ptc=2011
  239. [000001 29-JUL-2009 04:48:02:898] nscon: entry
  240. [000001 29-JUL-2009 04:48:02:898] nscon: doing connect handshake...
  241. [000001 29-JUL-2009 04:48:02:898] nscon: recving a packet
  242. [000001 29-JUL-2009 04:48:02:899] nsprecv: entry
  243. [000001 29-JUL-2009 04:48:02:899] nsbal: entry
  244. [000001 29-JUL-2009 04:48:02:899] nsbgetfl: entry
  245. [000001 29-JUL-2009 04:48:02:899] nsbgetfl: normal exit
  246. [000001 29-JUL-2009 04:48:02:899] nsmal: entry
  247. [000001 29-JUL-2009 04:48:02:899] nsmal: 96 bytes at 0x8000000100167870
  248. [000001 29-JUL-2009 04:48:02:899] nsmal: normal exit
  249. [000001 29-JUL-2009 04:48:02:899] nsbal: normal exit
  250. [000001 29-JUL-2009 04:48:02:899] nsprecv: reading from transport...
  251. [000001 29-JUL-2009 04:48:02:899] ntprd: entry
  252. [000001 29-JUL-2009 04:48:02:899] ntprd: exit
  253. [000001 29-JUL-2009 04:48:02:899] nsprecv: 189 bytes from transport
  254. [000001 29-JUL-2009 04:48:02:899] nsprecv: tlen=189, plen=189, type=1
  255. [000001 29-JUL-2009 04:48:02:899] nsprecv: packet dump
  256. [000001 29-JUL-2009 04:48:02:899] nsprecv: 00 BD 00 00 01 00 00 00  |........|
  257. [000001 29-JUL-2009 04:48:02:900] nsprecv: 01 38 01 2C 00 00 08 00  |.8.,....|
  258. [000001 29-JUL-2009 04:48:02:900] nsprecv: 20 00 4F 98 00 00 00 01  |..O.....|
  259. [000001 29-JUL-2009 04:48:02:900] nsprecv: 00 83 00 3A 00 00 08 00  |...:....|
  260. [000001 29-JUL-2009 04:48:02:900] nsprecv: 0C 0C 00 00 00 00 00 00  |........|
  261. [000001 29-JUL-2009 04:48:02:900] nsprecv: 00 00 00 00 6E 9F 00 00  |....n...|
  262. [000001 29-JUL-2009 04:48:02:900] nsprecv: 00 06 00 00 00 00 00 00  |........|
  263. [000001 29-JUL-2009 04:48:02:900] nsprecv: 00 00 28 41 44 44 52 45  |..(ADDRE|
  264. [000001 29-JUL-2009 04:48:02:900] nsprecv: 53 53 3D 28 50 52 4F 54  |SS=(PROT|
  265. [000001 29-JUL-2009 04:48:02:900] nsprecv: 4F 43 4F 4C 3D 62 65 71  |OCOL=beq|
  266. [000001 29-JUL-2009 04:48:02:900] nsprecv: 29 28 50 52 4F 47 52 41  |)(PROGRA|
  267. [000001 29-JUL-2009 04:48:02:900] nsprecv: 4D 3D 2F 6F 72 61 63 6C  |M=/oracl|
  268. [000001 29-JUL-2009 04:48:02:900] nsprecv: 65 2F 61 70 70 2F 6F 72  |e/app/or|
  269. [000001 29-JUL-2009 04:48:02:900] nsprecv: 61 63 6C 65 2F 70 72 6F  |acle/pro|
  270. [000001 29-JUL-2009 04:48:02:900] nsprecv: 64 75 63 74 2F 39 2E 32  |duct/9.2|
  271. [000001 29-JUL-2009 04:48:02:900] nsprecv: 2E 30 2F 62 69 6E 2F 74  |.0/bin/t|
  272. [000001 29-JUL-2009 04:48:02:900] nsprecv: 6E 73 6C 73 6E 72 29 28  |nslsnr)(|
  273. [000001 29-JUL-2009 04:48:02:900] nsprecv: 45 4E 56 53 3D 29 28 41  |ENVS=)(A|
  274. [000001 29-JUL-2009 04:48:02:900] nsprecv: 52 47 56 30 3D 29 28 41  |RGV0=)(A|
  275. [000001 29-JUL-2009 04:48:02:900] nsprecv: 52 47 53 3D 27 4C 49 53  |RGS='LIS|
  276. [000001 29-JUL-2009 04:48:02:900] nsprecv: 54 45 4E 45 52 2C 2D 69  |TENER,-i|
  277. [000001 29-JUL-2009 04:48:02:900] nsprecv: 6E 68 65 72 69 74 27 29  |nherit')|
  278. [000001 29-JUL-2009 04:48:02:900] nsprecv: 28 44 45 54 41 43 48 3D  |(DETACH=|
  279. [000001 29-JUL-2009 04:48:02:900] nsprecv: 79 65 73 29 29           |yes))   |
  280. [000001 29-JUL-2009 04:48:02:901] nsprecv: normal exit
  281. [000001 29-JUL-2009 04:48:02:901] nscon: got NSPTCN packet
  282. [000001 29-JUL-2009 04:48:02:901] nsconneg: entry
  283. [000001 29-JUL-2009 04:48:02:901] nsconneg: vsn=312, lov=300, opt=0x0, sdu=2048, tdu=8192, ntc=0x4f98
  284. [000001 29-JUL-2009 04:48:02:901] nsconneg: vsn=312, gbl=0x0, sdu=2048, tdu=8192
  285. [000001 29-JUL-2009 04:48:02:901] nsconneg: normal exit
  286. [000001 29-JUL-2009 04:48:02:901] nsmal: entry
  287. [000001 29-JUL-2009 04:48:02:901] nsmal: 131 bytes at 0x8000000100167c30
  288. [000001 29-JUL-2009 04:48:02:901] nsmal: normal exit
  289. [000001 29-JUL-2009 04:48:02:901] nscon: got 131 bytes connect data
  290. [000001 29-JUL-2009 04:48:02:901] nsmfr: entry
  291. [000001 29-JUL-2009 04:48:02:901] nsmfr: 131 bytes at 0x8000000100167c30
  292. [000001 29-JUL-2009 04:48:02:901] nsmfr: normal exit
  293. [000001 29-JUL-2009 04:48:02:901] nscon: discarding connect data (131 bytes)
  294. [000001 29-JUL-2009 04:48:02:901] nscon: exit (0)
  295. [000001 29-JUL-2009 04:48:02:902] nsdo: nsctxrnk=0
  296. [000001 29-JUL-2009 04:48:02:902] nsdo: normal exit
  297. [000001 29-JUL-2009 04:48:02:902] nsinherit: connection inherited
  298. [000001 29-JUL-2009 04:48:02:902] nsinherit: connected
  299. [000001 29-JUL-2009 04:48:02:902] nsinherit: normal exit
  300. [000001 29-JUL-2009 04:48:02:902] nsglma: entry
  301. [000001 29-JUL-2009 04:48:02:902] nsglma: Listener's pid=28321
  302. [000001 29-JUL-2009 04:48:02:902] nladini: entry
  303. [000001 29-JUL-2009 04:48:02:902] nladini: exit
  304. [000001 29-JUL-2009 04:48:02:902] nladget: entry
  305. [000001 29-JUL-2009 04:48:02:902] nladget: exit
  306. [000001 29-JUL-2009 04:48:02:903] nsgllsn: LSNDSC==>(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=10.203.104.11)(PORT=1521)))
  307. [000001 29-JUL-2009 04:48:02:903] nsglhcrt: entry
  308. [000001 29-JUL-2009 04:48:02:903] nsglhcrt: exit
  309. [000001 29-JUL-2009 04:48:02:903] nladini: entry
  310. [000001 29-JUL-2009 04:48:02:903] nladini: exit
  311. [000001 29-JUL-2009 04:48:02:903] nladget: entry
  312. [000001 29-JUL-2009 04:48:02:903] nladget: exit
  313. [000001 29-JUL-2009 04:48:02:903] nladtrm: entry
  314. [000001 29-JUL-2009 04:48:02:903] nladtrm: exit
  315. [000001 29-JUL-2009 04:48:02:903] nslisten: entry
  316. [000001 29-JUL-2009 04:48:02:903] nsc2addr: entry
  317. [000001 29-JUL-2009 04:48:02:904] nttbnd2addr: entry
  318. [000001 29-JUL-2009 04:48:02:904] nttgetport: entry
  319. [000001 29-JUL-2009 04:48:02:904] nttgetport: port resolved to 1521
  320. [000001 29-JUL-2009 04:48:02:904] nttgetport: exit
  321. [000001 29-JUL-2009 04:48:02:904] nttbnd2addr: using host IP address: 10.203.104.11
  322. [000001 29-JUL-2009 04:48:02:904] nttbnd2addr: exit
  323. [000001 29-JUL-2009 04:48:02:904] nsc2addr: normal exit
  324. [000001 29-JUL-2009 04:48:02:904] nsopen: entry
  325. [000001 29-JUL-2009 04:48:02:904] nsmal: entry
  326. [000001 29-JUL-2009 04:48:02:904] nsmal: 800 bytes at 0x8000000100195b78
  327. [000001 29-JUL-2009 04:48:02:904] nsmal: normal exit
  328. [000001 29-JUL-2009 04:48:02:904] nsopenmplx: entry
  329. [000001 29-JUL-2009 04:48:02:904] nsmal: entry
  330. [000001 29-JUL-2009 04:48:02:904] nsmal: 2592 bytes at 0x8000000100195eb0
  331. [000001 29-JUL-2009 04:48:02:905] nsmal: normal exit
  332. [000001 29-JUL-2009 04:48:02:905] nsopenmplx: normal exit
  333. [000001 29-JUL-2009 04:48:02:905] nttcon: entry
  334. [000001 29-JUL-2009 04:48:02:905] nttcon: toc = 6
  335. [000001 29-JUL-2009 04:48:02:905] nttcnp: entry
  336. [000001 29-JUL-2009 04:48:02:905] nttcnp: exit
  337. [000001 29-JUL-2009 04:48:02:905] nttcon: exit
  338. [000001 29-JUL-2009 04:48:02:905] nsopen: opening transport...
  339. [000001 29-JUL-2009 04:48:02:905] nttcon: entry
  340. [000001 29-JUL-2009 04:48:02:905] nttcon: toc = 2
  341. [000001 29-JUL-2009 04:48:02:905] nttcnp: entry
  342. [000001 29-JUL-2009 04:48:02:905] ntvlin: entry
  343. [000001 29-JUL-2009 04:48:02:905] ntvllt: entry
  344. [000001 29-JUL-2009 04:48:02:905] ntvllt: tcp.validnode_checking not turned on
  345. [000001 29-JUL-2009 04:48:02:905] ntvllt: exit
  346. [000001 29-JUL-2009 04:48:02:906] ntvlin: exit
  347. [000001 29-JUL-2009 04:48:02:906] nttcnp: Validnode Table IN use; err 0x0
  348. [000001 29-JUL-2009 04:48:02:906] nttcnp: creating a socket.
  349. [000001 29-JUL-2009 04:48:02:906] nttcnp: binding an address to a socket.
  350. [000001 29-JUL-2009 04:48:02:906] nttcnp: listening on a bound socket (queue size = 20).
  351. [000001 29-JUL-2009 04:48:02:906] nttcnp: getting sockname
  352. [000001 29-JUL-2009 04:48:02:906] nttcnp: exit
  353. [000001 29-JUL-2009 04:48:02:906] nttcon: exit
  354. [000001 29-JUL-2009 04:48:02:906] nsopen: transport is open
  355. [000001 29-JUL-2009 04:48:02:906] nsoptions: entry
  356. [000001 29-JUL-2009 04:48:02:906] nsoptions: lcl[0]=0x0, lcl[1]=0x12003, gbl[0]=0x0, gbl[1]=0x2001, cha=0x0
  357. [000001 29-JUL-2009 04:48:02:906] nsoptions: lcl[0]=0xffe9ff, lcl[1]=0x12003, gbl[0]=0x7e3f, gbl[1]=0x2001
  358. [000001 29-JUL-2009 04:48:02:907] nsoptions: normal exit
  359. [000001 29-JUL-2009 04:48:02:907] nsopen: global context check-in (to slot 1) complete
  360. [000001 29-JUL-2009 04:48:02:907] nsopen: lcl[0]=0xffe9ff, lcl[1]=0x12003, gbl[0]=0x7e3f, gbl[1]=0x2001, tdu=32767, sdu=8192
  361. [000001 29-JUL-2009 04:48:02:907] nsdo: entry
  362. [000001 29-JUL-2009 04:48:02:907] nsdo: cid=1, opcode=65, *bl=0, *what=0, uflgs=0x0, cflgs=0x2
  363. [000001 29-JUL-2009 04:48:02:907] nsdo: rank=64, nsctxrnk=0
  364. [000001 29-JUL-2009 04:48:02:907] nsdo: nsctx: state=7, flg=0x4202, mvd=0
  365. [000001 29-JUL-2009 04:48:02:907] nsdo: nsctxrnk=0
  366. [000001 29-JUL-2009 04:48:02:907] nsdo: normal exit
  367. [000001 29-JUL-2009 04:48:02:907] nsopen: normal exit
  368. [000001 29-JUL-2009 04:48:02:907] nslisten: normal exit
  369. [000001 29-JUL-2009 04:48:02:907] nsgllsn: completing partial addr: (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=10.203.104.11)(PORT=1521)))
  370. [000001 29-JUL-2009 04:48:02:907] nttaddr2bnd: entry
  371. [000001 29-JUL-2009 04:48:02:907] nttaddr2bnd: exit
  372. [000001 29-JUL-2009 04:48:02:908] nsgllsn: Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.203.104.11)(PORT=1521)))
  373. [000001 29-JUL-2009 04:48:02:908] nsevreg: entry
  374. [000001 29-JUL-2009 04:48:02:908] nsevreg: begin registration process for 1
  375. [000001 29-JUL-2009 04:48:02:908] nsevregPrePost: entry
  376. [000001 29-JUL-2009 04:48:02:908] nsevregPrePost: normal exit
  377. [000001 29-JUL-2009 04:48:02:908] nsevreg: sgt=0, evn=1, evt[2]=0x0
  378. [000001 29-JUL-2009 04:48:02:908] nsevreg: begin notification process for 1
  379. [000001 29-JUL-2009 04:48:02:908] nsevregAffectNotif: entry
  380. [000001 29-JUL-2009 04:48:02:908] nsevregAffectNotif: exit (0)
  381. [000001 29-JUL-2009 04:48:02:908] nsevreg: rdm=0, sgt=0, evt[0]=0x1, [1]=0x1, [2]=0x0, nrg=0
  382. [000001 29-JUL-2009 04:48:02:908] nsevreg: registering for 0x1
  383. [000001 29-JUL-2009 04:48:02:908] nsevreg: normal exit
  384. [000001 29-JUL-2009 04:48:02:908] nsgllsn: Direct handoff is supported for the endpoint.
  385. [000001 29-JUL-2009 04:48:02:909] nsgllsn: Direct handoff is enabled for the endpoint.
  386. [000001 29-JUL-2009 04:48:02:909] nsglhins: entry
  387. [000001 29-JUL-2009 04:48:02:909] nsglhins: exit
  388. [000001 29-JUL-2009 04:48:02:909] nslisten: entry
  389. [000001 29-JUL-2009 04:48:02:909] nsc2addr: entry
  390. [000001 29-JUL-2009 04:48:02:909] sntuscrt: entry
  391. [000001 29-JUL-2009 04:48:02:909] sntuscrt: failed to create dir /tmp/.oracle
  392. [000001 29-JUL-2009 04:48:02:909] sntuscrt: exit
  393. [000001 29-JUL-2009 04:48:02:909] ntusb2adr: entry
  394. [000001 29-JUL-2009 04:48:02:909] nsc2addr: normal exit
  395. [000001 29-JUL-2009 04:48:02:909] nsopen: entry
  396. [000001 29-JUL-2009 04:48:02:909] nsmal: entry
  397. [000001 29-JUL-2009 04:48:02:909] nsmal: 800 bytes at 0x80000001001974f8
  398. [000001 29-JUL-2009 04:48:02:909] nsmal: normal exit
  399. [000001 29-JUL-2009 04:48:02:910] nsopenmplx: entry
  400. [000001 29-JUL-2009 04:48:02:910] nsmal: entry
  401. [000001 29-JUL-2009 04:48:02:910] nsmal: 2592 bytes at 0x8000000100197830
  402. [000001 29-JUL-2009 04:48:02:910] nsmal: normal exit
  403. [000001 29-JUL-2009 04:48:02:910] nsopenmplx: normal exit
  404. [000001 29-JUL-2009 04:48:02:910] ntusconn: entry
  405. [000001 29-JUL-2009 04:48:02:910] ntusconn: connect: operation  6
  406. [000001 29-JUL-2009 04:48:02:910] ntuscnp: entry
  407. [000001 29-JUL-2009 04:48:02:910] ntuscnp: exit
  408. [000001 29-JUL-2009 04:48:02:910] ntusconn: exit
  409. [000001 29-JUL-2009 04:48:02:910] nsopen: opening transport...
  410. [000001 29-JUL-2009 04:48:02:910] ntusconn: entry
  411. [000001 29-JUL-2009 04:48:02:910] ntusconn: connect: operation  2
  412. [000001 29-JUL-2009 04:48:02:910] ntuscnp: entry
  413. [000001 29-JUL-2009 04:48:02:910] sntusgph: entry
  414. [000001 29-JUL-2009 04:48:02:911] sntusgph: exit
  415. [000001 29-JUL-2009 04:48:02:911] ntus2err: entry
  416. [000001 29-JUL-2009 04:48:02:911] ntus2err: sd=21, op=1, resnt[0]=511, resnt[1]=2, resnt[2]=0
  417. [000001 29-JUL-2009 04:48:02:911] ntus2err: exit
  418. [000001 29-JUL-2009 04:48:02:911] ntuscnp: Address in use
  419. [000001 29-JUL-2009 04:48:02:911] ntus2err: entry
  420. [000001 29-JUL-2009 04:48:02:911] ntus2err: sd=21, op=1, resnt[0]=511, resnt[1]=2, resnt[2]=0
  421. [000001 29-JUL-2009 04:48:02:911] ntus2err: exit
  422. [000001 29-JUL-2009 04:48:02:911] ntuscnp: exit
  423. [000001 29-JUL-2009 04:48:02:911] ntusconn: exit
  424. [000001 29-JUL-2009 04:48:02:911] nserror: entry
  425. [000001 29-JUL-2009 04:48:02:911] nserror: nsres: id=0, op=65, ns=12541, ns2=12560; nt[0]=511, nt[1]=2, nt[2]=0; ora[0]=0, ora[1]=0, ora[2]=0
  426. [000001 29-JUL-2009 04:48:02:911] nsopen: unable to open transport
  427. [000001 29-JUL-2009 04:48:02:911] nsbfr: entry
  428. [000001 29-JUL-2009 04:48:02:911] nsbfr: normal exit
  429. [000001 29-JUL-2009 04:48:02:912] nsbfr: entry
  430. [000001 29-JUL-2009 04:48:02:912] nsbfr: normal exit
  431. [000001 29-JUL-2009 04:48:02:912] nsmfr: entry
  432. [000001 29-JUL-2009 04:48:02:912] nsmfr: 2592 bytes at 0x8000000100197830
  433. [000001 29-JUL-2009 04:48:02:912] nsmfr: normal exit
  434. [000001 29-JUL-2009 04:48:02:912] nsmfr: entry
  435. [000001 29-JUL-2009 04:48:02:912] nsmfr: 800 bytes at 0x80000001001974f8
  436. [000001 29-JUL-2009 04:48:02:912] nsmfr: normal exit
  437. [000001 29-JUL-2009 04:48:02:912] nsopen: error exit
  438. [000001 29-JUL-2009 04:48:02:912] nslisten: error exit
  439. [000001 29-JUL-2009 04:48:02:912] nsglhfre: entry
  440. [000001 29-JUL-2009 04:48:02:912] nsglhrem: entry
  441. [000001 29-JUL-2009 04:48:02:912] nsglhrem: entry
  442. [000001 29-JUL-2009 04:48:02:912] nsglhrem: exit
  443. [000001 29-JUL-2009 04:48:02:912] nsglhfre: Terminating listening endpoint: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.203.104.11)(PORT=1521)))
  444. [000001 29-JUL-2009 04:48:02:913] nsdisc: entry
  445. [000001 29-JUL-2009 04:48:02:913] nsclose: entry
  446. [000001 29-JUL-2009 04:48:02:913] nstimarmed: entry
  447. [000001 29-JUL-2009 04:48:02:913] nstimarmed: no timer allocated
  448. [000001 29-JUL-2009 04:48:02:913] nstimarmed: normal exit
  449. [000001 29-JUL-2009 04:48:02:913] nsdo: entry
  450. [000001 29-JUL-2009 04:48:02:913] nsdo: cid=1, opcode=98, *bl=0, *what=0, uflgs=0x40, cflgs=0x2
  451. [000001 29-JUL-2009 04:48:02:913] nsdo: rank=64, nsctxrnk=0
  452. [000001 29-JUL-2009 04:48:02:913] nsdo: nsctx: state=7, flg=0x4202, mvd=0
  453. [000001 29-JUL-2009 04:48:02:913] nsevunreg: entry
  454. [000001 29-JUL-2009 04:48:02:913] nsevunreg: cid=1, sgt=0, rdm=0
  455. [000001 29-JUL-2009 04:48:02:913] nsevunreg: 0 registered connection(s)
  456. [000001 29-JUL-2009 04:48:02:913] nsevunreg: exit (0)
  457. [000001 29-JUL-2009 04:48:02:913] nsdo: nsctxrnk=0
  458. [000001 29-JUL-2009 04:48:02:913] nsdo: normal exit
  459. [000001 29-JUL-2009 04:48:02:913] nsclose: closing transport
  460. [000001 29-JUL-2009 04:48:02:914] nttdisc: entry
  461. [000001 29-JUL-2009 04:48:02:914] nttdisc: Closed socket 20
  462. [000001 29-JUL-2009 04:48:02:914] nttdisc: exit
  463. [000001 29-JUL-2009 04:48:02:914] nsclose: global context check-out (from slot 1) complete
  464. [000001 29-JUL-2009 04:48:02:914] nsnadisc: entry
  465. [000001 29-JUL-2009 04:48:02:914] nsbfr: entry
  466. [000001 29-JUL-2009 04:48:02:914] nsbfr: normal exit
  467. [000001 29-JUL-2009 04:48:02:914] nsbfr: entry
  468. [000001 29-JUL-2009 04:48:02:914] nsbfr: normal exit
  469. [000001 29-JUL-2009 04:48:02:914] nsmfr: entry
  470. [000001 29-JUL-2009 04:48:02:914] nsmfr: 2592 bytes at 0x8000000100195eb0
  471. [000001 29-JUL-2009 04:48:02:914] nsmfr: normal exit
  472. [000001 29-JUL-2009 04:48:02:914] nsmfr: entry
  473. [000001 29-JUL-2009 04:48:02:914] nsmfr: 800 bytes at 0x8000000100195b78
  474. [000001 29-JUL-2009 04:48:02:914] nsmfr: normal exit
  475. [000001 29-JUL-2009 04:48:02:915] nsclose: normal exit
  476. [000001 29-JUL-2009 04:48:02:915] nsdisc: exit (0)
  477. [000001 29-JUL-2009 04:48:02:915] nsglhfre: Deallocating cxd 0x80000001001956d0.
  478. [000001 29-JUL-2009 04:48:02:915] nsglhfre: exit
  479. [000001 29-JUL-2009 04:48:02:915] nsglma: Reporting the following error stack:
  480. TNS-12541: TNS:no listener
  481. TNS-12560: TNS:protocol adapter error
  482.   TNS-00511: No listener
  483.    HPUX Error: 2: No such file or directory
  484.  
  485. [000001 29-JUL-2009 04:48:02:915] nsrefuse: entry
  486. [000001 29-JUL-2009 04:48:02:915] nsdo: entry
  487. [000001 29-JUL-2009 04:48:02:915] nsdo: cid=0, opcode=67, *bl=694, *what=10, uflgs=0x0, cflgs=0x3
  488. [000001 29-JUL-2009 04:48:02:915] nsdo: rank=64, nsctxrnk=0
  489. [000001 29-JUL-2009 04:48:02:915] nsdo: nsctx: state=2, flg=0x4204, mvd=0
  490. [000001 29-JUL-2009 04:48:02:915] nsdo: gtn=189, gtc=189, ptn=10, ptc=2011
  491. [000001 29-JUL-2009 04:48:02:915] nscon: entry
  492. [000001 29-JUL-2009 04:48:02:916] nscon: sending NSPTRF packet
  493. [000001 29-JUL-2009 04:48:02:916] nspsend: entry
  494. [000001 29-JUL-2009 04:48:02:916] nspsend: plen=12, type=4
  495. [000001 29-JUL-2009 04:48:02:916] ntpwr: entry
  496. [000001 29-JUL-2009 04:48:02:916] ntpwr: exit
  497. [000001 29-JUL-2009 04:48:02:916] nspsend: 12 bytes to transport
  498. [000001 29-JUL-2009 04:48:02:916] nspsend: packet dump
  499. [000001 29-JUL-2009 04:48:02:916] nspsend: 00 0C 00 00 04 00 00 00  |........|
  500. [000001 29-JUL-2009 04:48:02:916] nspsend: 22 00 02 B6              |"...    |
  501. [000001 29-JUL-2009 04:48:02:916] nspsend: normal exit
  502. [000001 29-JUL-2009 04:48:02:916] nscon: sending 694 bytes connect data
  503. [000001 29-JUL-2009 04:48:02:916] nsdo: entry
  504. [000001 29-JUL-2009 04:48:02:916] nsdo: cid=0, opcode=67, *bl=694, *what=1, uflgs=0x4000, cflgs=0x0
  505. [000001 29-JUL-2009 04:48:02:916] nsdo: nsctx: state=2, flg=0x4204, mvd=0
  506. [000001 29-JUL-2009 04:48:02:916] nsdo: gtn=189, gtc=189, ptn=10, ptc=2011
  507. [000001 29-JUL-2009 04:48:02:916] nsdo: 694 bytes to NS buffer
  508. [000001 29-JUL-2009 04:48:02:917] nsdo: normal exit
  509. [000001 29-JUL-2009 04:48:02:917] nscon: exit (0)
  510. [000001 29-JUL-2009 04:48:02:917] nsdo: nsctxrnk=0
  511. [000001 29-JUL-2009 04:48:02:917] nsdo: normal exit
  512. [000001 29-JUL-2009 04:48:02:917] nsclose: entry
  513. [000001 29-JUL-2009 04:48:02:917] nstimarmed: entry
  514. [000001 29-JUL-2009 04:48:02:917] nstimarmed: no timer allocated
  515. [000001 29-JUL-2009 04:48:02:917] nstimarmed: normal exit
  516. [000001 29-JUL-2009 04:48:02:917] nsdo: entry
  517. [000001 29-JUL-2009 04:48:02:917] nsdo: cid=0, opcode=66, *bl=0, *what=0, uflgs=0x0, cflgs=0x2
  518. [000001 29-JUL-2009 04:48:02:917] nsdo: rank=64, nsctxrnk=0
  519. [000001 29-JUL-2009 04:48:02:917] nsdo: nsctx: state=2, flg=0x4200, mvd=0
  520. [000001 29-JUL-2009 04:48:02:917] nsdofls: entry
  521. [000001 29-JUL-2009 04:48:02:917] nsdofls: DATA flags: 0x40
  522. [000001 29-JUL-2009 04:48:02:917] nsdofls: sending NSPTDA packet
  523. [000001 29-JUL-2009 04:48:02:917] nspsend: entry
  524. [000001 29-JUL-2009 04:48:02:918] nspsend: plen=704, type=6
  525. [000001 29-JUL-2009 04:48:02:918] ntpwr: entry
  526. [000001 29-JUL-2009 04:48:02:918] ntpwr: exit
  527. [000001 29-JUL-2009 04:48:02:918] nspsend: 704 bytes to transport
  528. [000001 29-JUL-2009 04:48:02:918] nspsend: packet dump
  529. [000001 29-JUL-2009 04:48:02:918] nspsend: 02 C0 00 00 06 00 00 00  |........|
  530. [000001 29-JUL-2009 04:48:02:918] nspsend: 00 40 54 4E 53 4C 53 4E  |.@TNSLSN|
  531. [000001 29-JUL-2009 04:48:02:918] nspsend: 52 20 66 6F 72 20 48 50  |R.for.HP|
  532. [000001 29-JUL-2009 04:48:02:918] nspsend: 55 58 3A 20 56 65 72 73  |UX:.Vers|
  533. [000001 29-JUL-2009 04:48:02:918] nspsend: 69 6F 6E 20 39 2E 32 2E  |ion.9.2.|
  534. [000001 29-JUL-2009 04:48:02:918] nspsend: 30 2E 36 2E 30 20 2D 20  |0.6.0.-.|
  535. [000001 29-JUL-2009 04:48:02:918] nspsend: 50 72 6F 64 75 63 74 69  |Producti|
  536. [000001 29-JUL-2009 04:48:02:918] nspsend: 6F 6E 0A 53 79 73 74 65  |on.Syste|
  537. [000001 29-JUL-2009 04:48:02:918] nspsend: 6D 20 70 61 72 61 6D 65  |m.parame|
  538. [000001 29-JUL-2009 04:48:02:918] nspsend: 74 65 72 20 66 69 6C 65  |ter.file|
  539. [000001 29-JUL-2009 04:48:02:918] nspsend: 20 69 73 20 2F 6F 72 61  |.is./ora|
  540. [000001 29-JUL-2009 04:48:02:918] nspsend: 63 6C 65 2F 61 70 70 2F  |cle/app/|
  541. [000001 29-JUL-2009 04:48:02:918] nspsend: 6F 72 61 63 6C 65 2F 70  |oracle/p|
  542. [000001 29-JUL-2009 04:48:02:918] nspsend: 72 6F 64 75 63 74 2F 39  |roduct/9|
  543. [000001 29-JUL-2009 04:48:02:918] nspsend: 2E 32 2E 30 2F 6E 65 74  |.2.0/net|
  544. [000001 29-JUL-2009 04:48:02:919] nspsend: 77 6F 72 6B 2F 61 64 6D  |work/adm|
  545. [000001 29-JUL-2009 04:48:02:919] nspsend: 69 6E 2F 6C 69 73 74 65  |in/liste|
  546. [000001 29-JUL-2009 04:48:02:919] nspsend: 6E 65 72 2E 6F 72 61 0A  |ner.ora.|
  547. [000001 29-JUL-2009 04:48:02:919] nspsend: 4C 6F 67 20 6D 65 73 73  |Log.mess|
  548. [000001 29-JUL-2009 04:48:02:919] nspsend: 61 67 65 73 20 77 72 69  |ages.wri|
  549. [000001 29-JUL-2009 04:48:02:919] nspsend: 74 74 65 6E 20 74 6F 20  |tten.to.|
  550. [000001 29-JUL-2009 04:48:02:919] nspsend: 2F 6F 72 61 63 6C 65 2F  |/oracle/|
  551. [000001 29-JUL-2009 04:48:02:919] nspsend: 61 70 70 2F 6F 72 61 63  |app/orac|
  552. [000001 29-JUL-2009 04:48:02:919] nspsend: 6C 65 2F 70 72 6F 64 75  |le/produ|
  553. [000001 29-JUL-2009 04:48:02:919] nspsend: 63 74 2F 39 2E 32 2E 30  |ct/9.2.0|
  554. [000001 29-JUL-2009 04:48:02:919] nspsend: 2F 6E 65 74 77 6F 72 6B  |/network|
  555. [000001 29-JUL-2009 04:48:02:919] nspsend: 2F 6C 6F 67 2F 6C 69 73  |/log/lis|
  556. [000001 29-JUL-2009 04:48:02:919] nspsend: 74 65 6E 65 72 2E 6C 6F  |tener.lo|
  557. [000001 29-JUL-2009 04:48:02:919] nspsend: 67 0A 54 72 61 63 65 20  |g.Trace.|
  558. [000001 29-JUL-2009 04:48:02:919] nspsend: 69 6E 66 6F 72 6D 61 74  |informat|
  559. [000001 29-JUL-2009 04:48:02:919] nspsend: 69 6F 6E 20 77 72 69 74  |ion.writ|
  560. [000001 29-JUL-2009 04:48:02:919] nspsend: 74 65 6E 20 74 6F 20 2F  |ten.to./|
  561. [000001 29-JUL-2009 04:48:02:919] nspsend: 6F 72 61 63 6C 65 2F 61  |oracle/a|
  562. [000001 29-JUL-2009 04:48:02:919] nspsend: 70 70 2F 6F 72 61 63 6C  |pp/oracl|
  563. [000001 29-JUL-2009 04:48:02:919] nspsend: 65 2F 70 72 6F 64 75 63  |e/produc|
  564. [000001 29-JUL-2009 04:48:02:919] nspsend: 74 2F 39 2E 32 2E 30 2F  |t/9.2.0/|
  565. [000001 29-JUL-2009 04:48:02:919] nspsend: 6E 65 74 77 6F 72 6B 2F  |network/|
  566. [000001 29-JUL-2009 04:48:02:920] nspsend: 74 72 61 63 65 2F 6C 69  |trace/li|
  567. [000001 29-JUL-2009 04:48:02:920] nspsend: 73 74 65 6E 65 72 2E 74  |stener.t|
  568. [000001 29-JUL-2009 04:48:02:920] nspsend: 72 63 31 2E 74 72 63 0A  |rc1.trc.|
  569. [000001 29-JUL-2009 04:48:02:920] nspsend: 4C 69 73 74 65 6E 69 6E  |Listenin|
  570. [000001 29-JUL-2009 04:48:02:920] nspsend: 67 20 6F 6E 3A 20 28 44  |g.on:.(D|
  571. [000001 29-JUL-2009 04:48:02:920] nspsend: 45 53 43 52 49 50 54 49  |ESCRIPTI|
  572. [000001 29-JUL-2009 04:48:02:920] nspsend: 4F 4E 3D 28 41 44 44 52  |ON=(ADDR|
  573. [000001 29-JUL-2009 04:48:02:920] nspsend: 45 53 53 3D 28 50 52 4F  |ESS=(PRO|
  574. [000001 29-JUL-2009 04:48:02:920] nspsend: 54 4F 43 4F 4C 3D 74 63  |TOCOL=tc|
  575. [000001 29-JUL-2009 04:48:02:920] nspsend: 70 29 28 48 4F 53 54 3D  |p)(HOST=|
  576. [000001 29-JUL-2009 04:48:02:920] nspsend: 31 30 2E 32 30 33 2E 31  |10.203.1|
  577. [000001 29-JUL-2009 04:48:02:920] nspsend: 30 34 2E 31 31 29 28 50  |04.11)(P|
  578. [000001 29-JUL-2009 04:48:02:920] nspsend: 4F 52 54 3D 31 35 32 31  |ORT=1521|
  579. [000001 29-JUL-2009 04:48:02:920] nspsend: 29 29 29 0A 45 72 72 6F  |))).Erro|
  580. [000001 29-JUL-2009 04:48:02:920] nspsend: 72 20 6C 69 73 74 65 6E  |r.listen|
  581. [000001 29-JUL-2009 04:48:02:920] nspsend: 69 6E 67 20 6F 6E 3A 20  |ing.on:.|
  582. [000001 29-JUL-2009 04:48:02:920] nspsend: 28 41 44 44 52 45 53 53  |(ADDRESS|
  583. [000001 29-JUL-2009 04:48:02:920] nspsend: 3D 28 50 52 4F 54 4F 43  |=(PROTOC|
  584. [000001 29-JUL-2009 04:48:02:920] nspsend: 4F 4C 3D 69 70 63 29 28  |OL=ipc)(|
  585. [000001 29-JUL-2009 04:48:02:920] nspsend: 50 41 52 54 49 41 4C 3D  |PARTIAL=|
  586. [000001 29-JUL-2009 04:48:02:920] nspsend: 79 65 73 29 28 51 55 45  |yes)(QUE|
  587. [000001 29-JUL-2009 04:48:02:920] nspsend: 55 45 53 49 5A 45 3D 31  |UESIZE=1|
  588. [000001 29-JUL-2009 04:48:02:921] nspsend: 29 29 0A 4E 6F 20 6C 6F  |)).No.lo|
  589. [000001 29-JUL-2009 04:48:02:921] nspsend: 6E 67 65 72 20 6C 69 73  |nger.lis|
  590. [000001 29-JUL-2009 04:48:02:921] nspsend: 74 65 6E 69 6E 67 20 6F  |tening.o|
  591. [000001 29-JUL-2009 04:48:02:921] nspsend: 6E 3A 20 28 44 45 53 43  |n:.(DESC|
  592. [000001 29-JUL-2009 04:48:02:921] nspsend: 52 49 50 54 49 4F 4E 3D  |RIPTION=|
  593. [000001 29-JUL-2009 04:48:02:921] nspsend: 28 41 44 44 52 45 53 53  |(ADDRESS|
  594. [000001 29-JUL-2009 04:48:02:921] nspsend: 3D 28 50 52 4F 54 4F 43  |=(PROTOC|
  595. [000001 29-JUL-2009 04:48:02:921] nspsend: 4F 4C 3D 74 63 70 29 28  |OL=tcp)(|
  596. [000001 29-JUL-2009 04:48:02:921] nspsend: 48 4F 53 54 3D 31 30 2E  |HOST=10.|
  597. [000001 29-JUL-2009 04:48:02:921] nspsend: 32 30 33 2E 31 30 34 2E  |203.104.|
  598. [000001 29-JUL-2009 04:48:02:921] nspsend: 31 31 29 28 50 4F 52 54  |11)(PORT|
  599. [000001 29-JUL-2009 04:48:02:921] nspsend: 3D 31 35 32 31 29 29 29  |=1521)))|
  600. [000001 29-JUL-2009 04:48:02:921] nspsend: 0A 54 4E 53 2D 31 32 35  |.TNS-125|
  601. [000001 29-JUL-2009 04:48:02:921] nspsend: 34 31 3A 20 54 4E 53 3A  |41:.TNS:|
  602. [000001 29-JUL-2009 04:48:02:921] nspsend: 6E 6F 20 6C 69 73 74 65  |no.liste|
  603. [000001 29-JUL-2009 04:48:02:921] nspsend: 6E 65 72 0A 20 54 4E 53  |ner..TNS|
  604. [000001 29-JUL-2009 04:48:02:921] nspsend: 2D 31 32 35 36 30 3A 20  |-12560:.|
  605. [000001 29-JUL-2009 04:48:02:921] nspsend: 54 4E 53 3A 70 72 6F 74  |TNS:prot|
  606. [000001 29-JUL-2009 04:48:02:921] nspsend: 6F 63 6F 6C 20 61 64 61  |ocol.ada|
  607. [000001 29-JUL-2009 04:48:02:921] nspsend: 70 74 65 72 20 65 72 72  |pter.err|
  608. [000001 29-JUL-2009 04:48:02:921] nspsend: 6F 72 0A 20 20 54 4E 53  |or...TNS|
  609. [000001 29-JUL-2009 04:48:02:921] nspsend: 2D 30 30 35 31 31 3A 20  |-00511:.|
  610. [000001 29-JUL-2009 04:48:02:922] nspsend: 4E 6F 20 6C 69 73 74 65  |No.liste|
  611. [000001 29-JUL-2009 04:48:02:922] nspsend: 6E 65 72 0A 20 20 20 48  |ner....H|
  612. [000001 29-JUL-2009 04:48:02:922] nspsend: 50 55 58 20 45 72 72 6F  |PUX.Erro|
  613. [000001 29-JUL-2009 04:48:02:922] nspsend: 72 3A 20 32 3A 20 4E 6F  |r:.2:.No|
  614. [000001 29-JUL-2009 04:48:02:922] nspsend: 20 73 75 63 68 20 66 69  |.such.fi|
  615. [000001 29-JUL-2009 04:48:02:922] nspsend: 6C 65 20 6F 72 20 64 69  |le.or.di|
  616. [000001 29-JUL-2009 04:48:02:922] nspsend: 72 65 63 74 6F 72 79 0A  |rectory.|
  617. [000001 29-JUL-2009 04:48:02:922] nspsend: normal exit
  618. [000001 29-JUL-2009 04:48:02:922] nsdofls: exit (0)
  619. [000001 29-JUL-2009 04:48:02:922] nsbfr: entry
  620. [000001 29-JUL-2009 04:48:02:922] nsbaddfl: entry
  621. [000001 29-JUL-2009 04:48:02:922] nsbaddfl: normal exit
  622. [000001 29-JUL-2009 04:48:02:922] nsbfr: normal exit
  623. [000001 29-JUL-2009 04:48:02:922] nsbfr: entry
  624. [000001 29-JUL-2009 04:48:02:922] nsbaddfl: entry
  625. [000001 29-JUL-2009 04:48:02:922] nsbaddfl: normal exit
  626. [000001 29-JUL-2009 04:48:02:922] nsbfr: normal exit
  627. [000001 29-JUL-2009 04:48:02:923] nsdo: nsctxrnk=0
  628. [000001 29-JUL-2009 04:48:02:923] nsdo: normal exit
  629. [000001 29-JUL-2009 04:48:02:923] nsclose: closing transport
  630. [000001 29-JUL-2009 04:48:02:923] ntpdisc: entry
  631. [000001 29-JUL-2009 04:48:02:923] ntpdisc: exit
  632. [000001 29-JUL-2009 04:48:02:923] nsclose: global context check-out (from slot 0) complete
  633. [000001 29-JUL-2009 04:48:02:923] nsnadisc: entry
  634. [000001 29-JUL-2009 04:48:02:923] nsbfr: entry
  635. [000001 29-JUL-2009 04:48:02:923] nsbaddfl: entry  
  636. [000001 29-JUL-2009 04:48:02:923] nsbaddfl: normal exit
  637. [000001 29-JUL-2009 04:48:02:923] nsbfr: normal exit
  638. [000001 29-JUL-2009 04:48:02:923] nsbfr: entry
  639. [000001 29-JUL-2009 04:48:02:923] nsbfr: normal exit
  640. [000001 29-JUL-2009 04:48:02:923] nsmfr: entry
  641. [000001 29-JUL-2009 04:48:02:923] nsmfr: 2592 bytes at 0x8000000100166780
  642. [000001 29-JUL-2009 04:48:02:923] nsmfr: normal exit
  643. [000001 29-JUL-2009 04:48:02:924] nsmfr: entry
  644. [000001 29-JUL-2009 04:48:02:924] nsmfr: 800 bytes at 0x8000000100166448
  645. [000001 29-JUL-2009 04:48:02:924] nsmfr: normal exit
  646. [000001 29-JUL-2009 04:48:02:924] nsclose: normal exit
  647. [000001 29-JUL-2009 04:48:02:924] nsrefuse: exit (0)

我们注意到在391行有一个报错 [000001 29-JUL-2009 04:48:02:909] sntuscrt: failed to create dir /tmp/.oracle,在这个报错之后,在443行就[000001 29-JUL-2009 04:48:02:912] nsglhfre: Terminating listening endpoint: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.203.104.11)(PORT=1521))),侦听被终止了。

因此,我们将该问题定位于oracle无法写入/tmp/.oracle,并且通过进一步的检查,发现db01有/tmp/.oracle目录,而db02没这个目录,当我们手工创建/tmp/.oracle,并且chown oracle:dba /tmp/.oracle再次启动侦听,恢复正常了!

oracle@gz_dc02:/oracle > lsnrctl start                                                                                         
 
LSNRCTL for HPUX: Version 9.2.0.6.0 - Production on 29-JUL-2009 04:59:52
 
Copyright (c) 1991, 2002, Oracle Corporation.  All rights reserved.
 
Starting /oracle/app/oracle/product/9.2.0/bin/tnslsnr: please wait...
 
TNSLSNR for HPUX: Version 9.2.0.6.0 - Production
System parameter file is /oracle/app/oracle/product/9.2.0/network/admin/listener.ora
Log messages written to /oracle/app/oracle/product/9.2.0/network/log/listener.log
Trace information written to /oracle/app/oracle/product/9.2.0/network/trace/listener.trc1.trc
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.203.104.11)(PORT=1521)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC)))
 
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=10.203.104.11)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias                     LISTENER
Version                   TNSLSNR for HPUX: Version 9.2.0.6.0 - Production
Start Date                29-JUL-2009 04:59:52
Uptime                    0 days 0 hr. 0 min. 0 sec
Trace Level               support
Security                  OFF
SNMP                      OFF
Listener Parameter File   /oracle/app/oracle/product/9.2.0/network/admin/listener.ora
Listener Log File         /oracle/app/oracle/product/9.2.0/network/log/listener.log
Listener Trace File       /oracle/app/oracle/product/9.2.0/network/trace/listener.trc1.trc
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.203.104.11)(PORT=1521)))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC)))
Services Summary...
Service "PLSExtProc" has 1 instance(s).
  Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
Service "gzmisc" has 1 instance(s).
  Instance "gzmisc", status UNKNOWN, has 1 handler(s) for this service...
The command completed successfully
oracle@gz_dc02:/oracle >

我们此时再看了一下/tmp目前的权限,发现:

db01上
drwxrwxrwx  13 bin        bin           8192 Jul 29 03:32 tmp
db02上:
drwxr-xr-x  10 root       root          3072 Jul 29 04:58 tmp

看来还确实是权限问题,修改db02上的/tmp目前权限为777,和db01一样,这样,下次哪怕/tmp/.oracle目录被删除,也不怕了。

最后打扫战场,停止lsnr的trace。故障处理完成。

· 【文章发布信息】发表于: 2009-07-29 @ 15:04:34 · ||分类: ..experience, Working case

6 条评论 »

  1. mht 于 2009-07-29 @ 23:59:32 留言

    启动监听要在/tmp/.oracle目录下创建socket_file

  2. mht 于 2009-07-30 @ 00:26:48 留言

    应该不是所有平台都有这问题,我在linux上测试没有这问题

  3. 小荷 于 2009-07-30 @ 09:24:12 留言

    re mht:谢谢!在linux上也有这样的问题,linux的路径是/var/tmp/.oracle

  4. 一虫 于 2009-07-30 @ 10:10:40 留言

    上周刚刚遇到,unix和linux上都有。

  5. OoNiceDream 于 2009-08-02 @ 14:40:33 留言

    辛苦呀,凌晨被叫醒。。。

  6. mooer 于 2010-05-25 @ 16:26:29 留言

    遇到这种怪怪的问题,重建一个监听连接,可以吧。

RSS 为此帖反馈评论 · 反向跟踪 网站

留条评论