Linux Error: 29: Illegal seek
Today I faced some issue regarding listener startup and want to share this info with you folks…
I got an email from users saying they are unable to connect to one of the production server. They are getting “NO LISTENER” message. So, its clear from this that listener could have been shutdown.
I logged in and checked the listener status using both “lsnrctl status” command and “ps -ef | grep tns” command. Both of the commands didn’t given any posivitive result.
So I started the listener with the below command and got error as this…
oracle@YesB.in:/home/oracle [PROD] >lsnrctl
LSNRCTL for Linux: Version 11.2.0.3.0 - Production on 23-FEB-2016 12:46:17
Copyright (c) 1991, 2011, Oracle. All rights reserved.
Welcome to LSNRCTL, type "help" for information.
LSNRCTL> start
Starting /u01/app/oracle/product/11.2.0/dbhome_1/bin/tnslsnr: please wait...
TNS-12537: TNS:connection closed
TNS-12560: TNS:protocol adapter error
TNS-00507: Connection closed
Linux Error: 29: Illegal seek
The problem is identified as a line is missing in /etc/hosts file (mine is a Linux server). I added below line and problem solved
127.0.0.1 localhost.localdomain localhost
So, whenever you hit with the above error (Illegal Seek), please check hosts file and add the above line which will solve the issue……
Comments
Post a Comment