- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Orlacle Listeners and Service Guard
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2006 05:16 AM
05-02-2006 05:16 AM
Orlacle Listeners and Service Guard
I've attached a copy of the scripts that starts the databases and listeners, not being a DBA I'm not sure why they aren't starting.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2006 05:32 AM
05-02-2006 05:32 AM
Re: Orlacle Listeners and Service Guard
Jeff Traigle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2006 05:45 AM
05-02-2006 05:45 AM
Re: Orlacle Listeners and Service Guard
ps -ef | grep tnslsnr |grep -v grep
oracle 1440 1 0 Apr 30 ? 0:06 /u01/oracle/product/9.2.0/bin/tnslsnr listener_esgwyp -inherit
oracle 1375 1 0 Apr 30 ? 0:06 /u01/oracle/product/9.2.0/bin/tnslsnr listener_vogwyp -inherit
oracle 102 1 0 Apr 30 ? 1:21 /u01/oracle/product/9.2.0/bin/tnslsnr LISTENER -inherit
oracle 1426 1 0 Apr 30 ? 0:05 /u01/oracle/product/9.2.0/bin/tnslsnr listener_spgwyp -inherit
oracle 1400 1 0 Apr 30 ? 0:09 /u01/oracle/product/9.2.0/bin/tnslsnr listener_dsngwyp -inherit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2006 06:16 AM
05-02-2006 06:16 AM
Re: Orlacle Listeners and Service Guard
if [ "`lsnrctl status $LISTENER | grep -i 'NO listener'`" != "" ]
FAILS because you already started $LISTENER
So you drop here:
else
_LogMsg "(OL_startListener): Listener is already started."
##_LogMsg "(OL_startListener): Listener for \"$ORACLE_SID\" is already started."
return 0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2006 08:07 PM
05-09-2006 08:07 PM
Re: Orlacle Listeners and Service Guard
I assume you have just 1 oracle installed with some databases running.
If I'm right, to start listener once for all databases is enough.
listener is just the Oracle's ear and into listener.ora file (check $ORACLE_HOME/network/admin/) there're all Oracle databases.
Have you tried to execute lsnrctl start just once?
Regards,
Carles
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2006 11:40 PM
05-09-2006 11:40 PM