- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ServiceGuard Oracle Scripts
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
10-14-2004 02:12 AM
10-14-2004 02:12 AM
Thank you
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2004 02:16 AM
10-14-2004 02:16 AM
Re: ServiceGuard Oracle Scripts
oracle serviceguard script comes with oracle toolkit that is not free. So, I am not sure if anyone can (should) provide you with the script.
I have been having the same script for the last four years. I simply modify the script to change the parameters (like ORACLE_HOME, svrmgrl or sqlplus) etc., depending on the version.
It's not hard to do.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2004 02:17 AM
10-14-2004 02:17 AM
Re: ServiceGuard Oracle Scripts
The database is different, but the basic processes that must be monitored are very similar.
Some stuff:
http://www.fujitsu.com/downloads/SYSWLK/pdf/ora_f.pdf
http://www.google.com/search?hl=en&lr=&q=oracle+9.2+ServiceGuard+monitor+script&btnG=Search
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2004 02:38 AM
10-14-2004 02:38 AM
Re: ServiceGuard Oracle Scripts
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2004 03:14 AM
10-14-2004 03:14 AM
Solutionsvrmgrl <
shutdown immediate
EOF
svrmgrl <
startup
EOF
Replace these with something like: -
sqlplus /nolog <
shutdown immediate
EOF
sqlplus /nolog <
startup
EOF
svrmgrl was still supported in 8.x, but the sqlplus method was encouraged. svrmgrl is now removed in 9.x
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2004 03:22 AM
10-14-2004 03:22 AM
Re: ServiceGuard Oracle Scripts
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2004 08:10 PM
10-14-2004 08:10 PM
Re: ServiceGuard Oracle Scripts
#stop database
sqlplus "/ as sysdba"
shutdown immediate
exit
#start database
sqlplus "/ as sysdba"
startup
exit
Or
#stop database in 0 seconds
sqlplus "/ as sysdba"
shutdown abort
exit
#start database with automatic recovery
#and no problem of consistency
sqlplus "/ as sysdba"
startup
exit
Rodrigo