You can also use "pkill -<signal> weblogic"
Main Topics
Browse All TopicsI have executed the following command to see the process id and then kill them
ps -ef|grep weblogic
It gave me the below results
Can someone please let me know what the process id will be in the below table. There are 2 columns with numbers (second column and third column). Which column would be the process id.
Also to kill a process is "kill <process id>" the command that needs to be used?
Thank you
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
WebLogic has its interface for shutting down or starting up. This a question investigating methods for shutting it down through console. This is why I've suggested -9. It seems that this is the last resort if something goes bad and the service could not be stopped thrug java administration GUI or shell :)
>>WebLogic has its interface for shutting down or starting up. This a question investigating methods for shutting it down through console. This is why I've suggested -9. It seems that this is the last resort if something goes bad and the service could not be stopped thrug java administration GUI or shell :
You are right. Sometimes the server throws OutOfMemory errors after which it stops responding. In that case the Weblogic UI does not work. So I have to manually shutdown the services and restart Weblogic
Business Accounts
Answer for Membership
by: KeremEPosted on 2009-06-03 at 21:57:56ID: 24543670
Hi,
the second column ins the process id, the third is the parent process id. Youcan use:
kill -9 <pid>
To prevent it to reject the kill signal.
Cheers,
K.