- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Oracle process cannot be stopped during halt o...
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-30-2006 11:02 PM
10-30-2006 11:02 PM
Oracle process cannot be stopped during halt of package
Installed versions of SG:
B5140BA A.11.23.05 Serviceguard NFS Toolkit
T1905BA A.11.17.00 Serviceguard
T2803BA B.04.01 Serviceguard Extension for SAP
While halting the package the process oracle
Get following message in log-file of package:
Oct 31 19:38:11 - Node "infhp150": (ora_wait): Wait for Oracle shadow process cleanup (Timeout: 200 secs)
Oct 31 19:38:11 - Node "infhp150": (ora_wait): 6869 ? 00:00 oraclePE2
Oct 31 19:48:24 - Node "infhp150": (ora_wait): WARNING: Failed. Archiver stuck?
Any idea how to solve?
With kind regards
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2006 11:21 PM
10-30-2006 11:21 PM
Re: Oracle process cannot be stopped during halt of package
The dbshut program from Oracle ships broken.
Where it says shutdown should be changed to shutdown immediate.
This will probably fix the problem.
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-30-2006 11:34 PM
10-30-2006 11:34 PM
Re: Oracle process cannot be stopped during halt of package
umount: cannot unmount /oracle/PE2 : Device busy
umount: return error 1.
WARNING: Running fuser to remove anyone using the file system directly.
/dev/PE2vg10/lvol1: 6865m(pe2adm) 6869mcto(orape2)
There is a file still open on /oracle/PE2, which appears to be your $ORACLE_BASE and $SAPDATA_HOME. The file is open (o) by pid 6865 in the current dir (c), login name orape2, and is memory mapped (m), as well as a text file (t).
Oct 31 19:38:11 - Node "infhp150": (ora_wait): 6869 ? 00:00 oraclePE2
Oct 31 19:48:24 - Node "infhp150": (ora_wait): WARNING: Failed. Archiver stuck?
This error tells us the archiver background process is hung. You could try to force a logswitch and stop the archiver process:
SQL> ALTER SYSTEM SWITCH LOGFILE;
SQL> ALTER SYSTEM ARCHIVE LOG STOP;
SQL> SHUTDOWN IMMEDIATE;
But you may end up needing to kill the process. First try from within Oracle:
SQL> SELECT * FROM V$SESSION;
SQL> ALTER SYSTEM KILL SESSION 'SESSION-ID,SESSION-SERIAL#';
And if that doesn't work, from the OS:
# kill 6869
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2006 12:02 AM
10-31-2006 12:02 AM
Re: Oracle process cannot be stopped during halt of package
With kind regards
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2006 12:23 AM
10-31-2006 12:23 AM
Re: Oracle process cannot be stopped during halt of package
# su - ora
$ echo $ORACLE_SID
$ sqlplus /nolog
SQL> CONNECT / AS SYSDBA;
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2006 02:51 AM
10-31-2006 02:51 AM