- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- I can not kill the process,nor shutdown for reboot...
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
02-21-2004 01:49 PM
02-21-2004 01:49 PM
I met embrassed case in one server with oracle installed, I have met for three times, the oracle turn unwork and I cannot shut it down, either I do "killall -9 oracle", nothing affect to the oracle; further more, even if I type "reboot" or "shutdown -r now", the system only echo term signal, and also be there. Until I click the reset button to force it reboot.
ignore the oracle reasons, I doubt what can make a linux can not kill the process which is not in "defunct" yet? and how to reboot the linux forcely even if some process can not be terminated?
thanks in advance
frederick
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2004 02:08 PM
02-21-2004 02:08 PM
Re: I can not kill the process,nor shutdown for reboot,what caused it?
trying to shutdown a database will kill or killall is a <
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2004 04:24 PM
02-21-2004 04:24 PM
Re: I can not kill the process,nor shutdown for reboot,what caused it?
sqlplus internal
shutdown immediate
if that does not work
shutdown abort
startup
shutdown immediate
Then look for permission problems on /var fs
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
02-21-2004 10:30 PM
02-21-2004 10:30 PM
Re: I can not kill the process,nor shutdown for reboot,what caused it?
I agree to your suggestion, and Iã did on this way before. However, I can not shut down the oracle once the error occur, for, it will never can not be startup after I type in svrmgrl "shutdown XXX", although it echo shutdown successful, I can also ps its process out as nothing be done. that is why I had to kill oracle process, unfortunately, it also did not worked.
so I call it embarasse, I never thought the linux can not be shutdown before, and, I have to click the button, for even the ms windows is rarely on thus situation.
frederic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2004 02:02 AM
02-22-2004 02:02 AM
Re: I can not kill the process,nor shutdown for reboot,what caused it?
besides of checking file permissions (as SEP mentioned), you also might want to have a look for open network connections to your database. netstat should report them. I remember having read about hanging shutdown due to problems with network logins to the database.
Which version of Oracle are you running?
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2004 01:23 PM
02-22-2004 01:23 PM
Re: I can not kill the process,nor shutdown for reboot,what caused it?
It is linux 7.13, kernel of 2.4.18; and oracle 8.17. for it has been working for a long time, uptime over 250 days. so that I am surprise for this error by myself.
I will check for your recommends. Then, How do you think about the RAM could run out to make similar errors? I have 1000M Ram for the system, and 800M left after the oracle be startup, however, several days later, only tens Megabyte free ram left. does it normal,too?
rdgs,
Frederick
Hello Frederick,
besides of checking file permissions (as SEP mentioned), you also might want to have a look for open network connections to your database. netstat should report them. I remember having read about hanging shutdown due to problems with network logins to the database.
Which version of Oracle are you running?
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2004 06:20 PM
02-22-2004 06:20 PM
Solutionif you wanted to reboot the machine and that would not even work you can always try 'reboot -f'.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2004 07:23 PM
02-22-2004 07:23 PM
Re: I can not kill the process,nor shutdown for reboot,what caused it?
If you can't re-boot this thing, just turn it off.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2004 04:45 AM
02-25-2004 04:45 AM
Re: I can not kill the process,nor shutdown for reboot,what caused it?
Have you checked your Oracle alert log? It will usually show the shutdown messages. If you have active network connections to database sessions you will probably see a message about the shutdown process waiting for a session process to complete. Unless the session user logs out, you will need to kill the session (kill -15 will allow Oracle to rollback and minimize the chance of corruption). Once any hanging sessions are killed the database shutdown should resume and complete. If not, use the shutdown abort command in sqlmgrl. Be sure to restart and then shutdown normal or immediate afterwards. If you start the database after a shutdown abort and run without performing a clean shutdown it can result in an unstable database.
You might also check and make sure you are using a terminal release of Oracle and that all recommended Oracle patches are installed. Some earlier releases of 8.1.7 had memory leaks.
John