Listener Won't Start from Startup Script - 8.1.7.4 Solaris 8 [message #55860] |
Thu, 20 February 2003 08:01 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Roger
Messages: 10 Registered: September 2000
|
Junior Member |
|
|
Alright, I have 8 instances running on 8.1.7.4 on Solaris 8, on an Ultra Ent 450. The startup script in /etc/init.d is:
#!/bin/sh
#
ORACLE_HOME=/app/oracle/product/8.1.7
ORACLE_BASE=/app/oracle
ORACLE_SID=test
PATH=$PATH:$ORACLE_HOME/bin
export ORACLE_HOME ORACLE_BASE ORACLE_SID PATH
case $1 in
start)
su - oracle -c $ORACLE_HOME/bin/dbstart
su - oracle -c "/app/oracle/product/8.1.7/bin/lsnrctl start"
exit 0
;;
stop)
su - oracle -c "$ORACLE_HOME/bin/lsnrctl stop"
su - oracle -c $ORACLE_HOME/bin/dbshut
;;
esac
If I start the listener manually, as the Oracle user, using 'lsnrctl start' the listener starts fine. But, when this script runs, (as root) it will not start, I get the following garbage:
SVRMGR runs and starts my 8 instances, and then:
# cd /
# cat oracleout |more
LSNRCTL for Solaris: Version 8.1.7.4.0 - Production on 20-FEB-2003 09:46:38
(c) Copyright 1998 Oracle Corporation. All rights reserved.
Message 1053 not found; No message file for product=network, facility=TNSTNS-125
41: Message 12541 not found; No message file for product=network, facility=TNS
TNS-12560: Message 12560 not found; No message file for product=network, facili
ty=TNS
TNS-00511: Message 511 not found; No message file for product=network, facilit
y=TNS
Solaris Error: 2: No such file or directory
Message 1053 not found; No message file for product=network, facility=TNSTNS-125
41: Message 12541 not found; No message file for product=network, facility=TNS
TNS-12560: Message 12560 not found; No message file for product=network, facili
ty=TNS
TNS-00511: Message 511 not found; No message file for product=network, facilit
y=TNS
Solaris Error: 146: Connection refused
I've search high and low on these error messages, but none of the instances of the error I've found have anything to do with my situation. I'm hoping the bright souls here can help! If you don't mind please e-mail me any replies. Thanks!
|
|
|
|
|