Oracle Listener gets killed when root session is closed


 
Thread Tools Search this Thread
Operating Systems AIX Oracle Listener gets killed when root session is closed
# 1  
Old 01-20-2014
Oracle Listener gets killed when root session is closed

Hi everyone,

This is a strange thing, sometimes when I type > exit from root session, i get a message
> There are processes running

after this message is displayed the oracle listener dies out and have to startup the listener again.

but this doesn't have always.

Where should I start to troubleshoot ?

thanks
# 2  
Old 01-20-2014
How are you starting the listener?
# 3  
Old 01-20-2014
This happens if you have started the Oracle listener in the current shell,
and the listener does not completely disconnect its streams (as a daemon process should do).
Work around: associate the process' stdin (0) stdout (1) stderr(2) with /dev/null
Code:
listener_command < /dev/null >/dev/null 2>&1 &

This User Gave Thanks to MadeInGermany For This Post:
# 4  
Old 01-20-2014
Quote:
Originally Posted by rbatte1
How are you starting the listener?
from oracle user
Code:
# su - oracle
# lsnrctl {start|stop} listener_name

Quote:
Originally Posted by MadeInGermany
This happens if you have started the Oracle listener in the current shell,
and the listener does not completely disconnect its streams (as a daemon process should do).
Work around: associate the process' stdin (0) stdout (1) stderr(2) with /dev/null
Code:
listener_command < /dev/null >/dev/null 2>&1 &

1. will this impact the production ?
2. should i run this as an oracle user or root user


thanks
# 5  
Old 01-20-2014
Quote:
Originally Posted by filosophizer
from oracle user
Code:
# su - oracle
# lsnrctl {start|stop} listener_name

1. will this impact the production ?
2. should i run this as an oracle user or root user


thanks
1. I guess the impact is the same, as when You log off and the listener dies?!

2. as oracle

However, when You use the redirect to /dev/null, You have to check the return code. In case of an error You will see no output from this command.
Maybe a "nohup" will be more helpfull: nohup listener_command & - the output will redirected to nohup.out

regards
# 6  
Old 01-20-2014
If configured correctly, the listener should come and remain up with lsnrctl start <listener_name>.
Inspect the listener log file for errors (use lsnrctl status <listener_name> to get the log location and filename).
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. What is on Your Mind?

Has Oracle killed HP-UX

Has Oracle killed HP-UX with their gambit of telling the public they would no longer support Itanium? The company I work for in the Dallas, TX area has had several openings for HP-UX administrators and we're having such a tough time finding qualified people to fill them. I have been searching job... (3 Replies)
Discussion started by: keelba
3 Replies

2. Solaris

vnc windows unexceptly is closed after given root and passwd

hi all I'm new to solaris my vncviewer windows is closed suddenly after give root and root passwd in solaris 10 sparc machine ... i checked vnc services are online and everything is ok .. but i dont know how to solve this solution... any one face this solution before and share your knowledge ... (1 Reply)
Discussion started by: coolboys
1 Replies

3. Solaris

M5000 XSCF Console disconnecting when putty session is closed

Hi, I would appreciate some help. I remotely access, across a VPN, an M5000 and when I connect to the XSCF I can then access the OS using console -d0 and then I can get to the console. The problem I have is that I need to run something which will take many hours and I can't run it in the... (6 Replies)
Discussion started by: giles.cardew
6 Replies

4. Emergency UNIX and Linux Support

Nohup process getting killed after closing PUTTY session

I am running a process in nohup . nohup getkeys.ksh 132 > 132.out & When I close the putty terminal,The process is getting killed . default_signal_handler called for signal no: 1 Is there a way to keep the process running even If I close the terminal (2 Replies)
Discussion started by: prasperl
2 Replies

5. AIX

SIGHUP killing Oracle Listener Process

I have a cold backup script which backs up my database and then restarts the oracle listener and database at around 01:30 I can see at this time that my database and listener are indeed running. However at around 02:17 my listener process receives a SIGHUP 1 signal from the AIX OS ( version 5.3 )... (2 Replies)
Discussion started by: jimthompson
2 Replies

6. Red Hat

Oracle Listener Error on Red hat 5

Hello everybody, the reason why im posting this thread is because i've installed an oracle test database on RHEL 5, on a localhost (Since it is for test)... the thing is, after i have installed the DB it works just fine, but after i re start it, i get the following errors when i want to go into the... (5 Replies)
Discussion started by: blacksteel1988
5 Replies

7. Infrastructure Monitoring

Test if Oracle listener is running

Hi All , I am new to shall scripting, i want write an script for oracle tns and listener. If tns working i want o/p as "Listener and TNS are working" else o/p should be ""Listener and TNS are not Working" below is the command in unix to check the tns status, if no output it means TNS... (3 Replies)
Discussion started by: abdul bari
3 Replies

8. AIX

Session never expired If i closed client prompt

Hi, I need a solution. I am using Putty/CRT to login in a AIX server from my windows machine. When i closed my putty/CRT prompt from windows client, server session is expire. Ex. I have run a script to take RMAN backup from PUTTY/CRT command window, After closing command window RMAN backup... (2 Replies)
Discussion started by: dearsumon
2 Replies

9. UNIX and Linux Applications

Oracle - How to manage listener log files

Dear expert, I'm newbie in oracle, I have a problem regarding the listener log files under alert directory and trace directory(please refer to below). As the oracle hard disk size only 10GB, I have to manually delete the log files under alert directory and trace directory. Is that anyway for... (1 Reply)
Discussion started by: yhcheong
1 Replies

10. UNIX for Dummies Questions & Answers

mac 10.4>terminal>linux remote server>ssh login accepted>session closed-why?

mac 10.4>terminal>linux remote server>ssh login accepted>session closed-why? AHHHH!! I have been connecting to the server with the line: ssh userid@website.com The remote server accepts my password; logs me in with ssh; posts a lovely welcome message AND closes the session. Is this a "term... (0 Replies)
Discussion started by: xprankard
0 Replies
Login or Register to Ask a Question