An error from listener
Recently I clone an identical EBS environment from PROD, but when I start app services I find that the concurrent manager can't be started due to the listener of app tier.the error is the following:
LSNRCTL> start
Starting /oracle/prodora/8.0.6/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 8.0.6.3.0 - Production
Log messages written to /oracle/prodora/8.0.6/network/admin/apps_pko.log
Listening on: (ADDRESS=(PROTOCOL=tcp)(DEV=6)(HOST=172.17.11.72)(PORT=1526))
Attempted to listen on: (ADDRESS=(PROTOCOL=ipc)(PARTIAL=yes)(QUEUESIZE=1))
TNS-12541: TNS:no listener
TNS-12560: TNS:protocol adapter error
TNS-00511: No listener
Linux Error: 2: No such file or directory
I notice that the end of error info is about Linux Error which shows no such file or directory.
The root cause is due to the missing of hidden directory /var/tmp/.oracle. This directory contains a number of 'special' socket files that are used by local clients to connect via the IPC protocol (sqlnet) to various Oracle processes including the TNS listener.
So the solution is so simple, just like that:
[root@oracle422 tmp]# mkdir .oracle
[root@oracle422 tmp]# chown -R oracle:oinstall /var/tmp/.oracle
[root@oracle422 tmp]# cd .oracle
[root@oracle422 .oracle]# ll
total 4
srwxrwxrwx 1 oracle oinstall 0 May 16 13:20 s#18628.1
[root@oracle422 .oracle]#
[root@oracle422 .oracle]#
[oracle@oracle422 PKO_oracle422]$ lsnrctl
LSNRCTL for Linux: Version 8.0.6.3.0 - Production on 16-MAY-2011 10:36:46
(c) Copyright 1999 Oracle Corporation. All rights reserved.
Welcome to LSNRCTL, type "help" for information.
LSNRCTL> set cur APPS_PKO
Current Listener is APPS_PKO
LSNRCTL> start
Starting /oracle/prodora/8.0.6/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 8.0.6.3.0 - Production
Log messages written to /oracle/prodora/8.0.6/network/admin/apps_pko.log
Listening on: (ADDRESS=(PROTOCOL=tcp)(DEV=6)(HOST=172.17.11.72)(PORT=1526))
Connecting to (ADDRESS=(PROTOCOL=TCP)(Host=oracle422)(Port=1526))
STATUS of the LISTENER
------------------------
Alias APPS_PKO
Version TNSLSNR for Linux: Version 8.0.6.3.0 - Production
Start Date 16-MAY-2011 13:19:09
Uptime 0 days 0 hr. 0 min. 0 sec
Trace Level off
Security OFF
SNMP OFF
Listener Log File /oracle/prodora/8.0.6/network/admin/apps_pko.log
Services Summary...
FNDFS has 1 service handler(s)
FNDSM has 1 service handler(s)
The command completed successfully
LSNRCTL>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/38542/viewspace-1049930/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Listener refused the connection with the following error:ORA-12514, TNS:listenerError
- Connecting to ASM through the TNS Listener from a Client DesktopASMclient
- tar: Error exit delayed from previous errorsError
- 解決docker: Error response from daemon故障DockerError
- ORA-12541: TNS:no listener (DBD ERROR: OCIServerAttach) (轉)ErrorServer
- Got error 28 from storage engine 解決方法GoError
- ORA - 12502 TNS:listener received no CONNECT_DATA from clientclient
- MySQL案例09:Last_IO_Error: Got fatal error 1236 from master when reading data from binary logMySqlASTErrorGo
- docker無法拉取(pull)映象Error response from daemonDockerError
- Got fatal error 1236 from master when reading data from binary logGoErrorAST
- ERROR: Error from ejbc: 檔名、目錄名或卷標語法不正確Error
- oracle listener錯誤Linux Error: 111: Connection refusedOracleLinuxError
- Error: cannot fetch last explain plan from PLAN_TABLEErrorASTAI
- 狀態: 失敗 -測試失敗: Listener refused the connection with the following error: ORA-12505, TNS:listener doesError
- grid control Error in getting data for creating new listenerError
- 解決ERROR 1030 (HY000): Got error 168 from storage engine apparmorErrorGoAPP
- PSQLException: ERROR: failed to find conversion function from unknown to charSQLExceptionErrorAIFunction
- ORA-16198: LGWR received timedout error from KSRError
- Error occurred while downloading files from admin server for deploymentErrorWhileServer
- MySQL主從複製報錯:Got fatal error 1236 from master when reading data fromMySqlGoErrorAST
- 解決docker啟動映象報錯:docker: Error response from daemonDockerError
- Docker 啟動 Centos 映象 提示"Error response from daemon: No command specified"DockerCentOSError
- MySQL 5.7.17 安裝報錯SSL error: Unable to get private key fromMySqlError
- 關於local_listener、remote_listener、current_listenerREM
- remote_listener和listener passwordREM
- Listener
- remote_listener和local_listenerREM
- from v * ERROR at line 1: ORA-00942: table or view does not existErrorView
- mysql主從同步失敗Last_IO_Error: Got fatal error 1236 from master解決方法MySql主從同步ASTErrorGo
- local_listener ,remote_listener 的配置REM
- TNS Listener Hang, New Child Listener Process Forked
- cURL error 52: Empty reply from server GitHub 三方登入報錯ErrorServerGithub
- Nginx編譯時error: assignment makes pointer from integer without a cast處理Nginx編譯ErrorAST
- 【Mysql】Slave_IO_Running: No---Got fatal error 1236 from masterMySqlGoErrorAST
- How to resolve ORA-19706 error when select from dblinkError
- GoldenGate "Error mapping from table.a to table.a"錯誤測試GoErrorAPP
- Listener & FilterFilter
- Oracle ListenerOracle