- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Kill stuck process (java app)
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
06-19-2002 02:13 AM
06-19-2002 02:13 AM
Kill stuck process (java app)
Accidentally I ran awt demo that comes with hp-ux java development kit while being logged in in text mode. The system got stuck.
Could you help how to kill this process? I'm logged in as regular user.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2002 02:31 AM
06-19-2002 02:31 AM
Re: Kill stuck process (java app)
As that user
$su -
#ps -ef | grep awt
kill the processes.if not, reboot the system
#reboot
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2002 02:32 AM
06-19-2002 02:32 AM
Re: Kill stuck process (java app)
Collect the pids & ppids of the whole chain of commands you wish to kill.
e.g. pid 123 is the process you wish to kill
ps -fp 123 # look at the 3rd column and it will show the PPID.
repeat up & down the chain & note cmd:pid:ppid.
You should get back to the original "awt" command. Then
kill -15
ps -fp
If they have not use a bigger hammer
kill -9
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2002 02:38 AM
06-19-2002 02:38 AM
Re: Kill stuck process (java app)
Had to do ugly reboot of the system (power off).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2002 02:56 AM
06-19-2002 02:56 AM
Re: Kill stuck process (java app)
Regards
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2002 03:04 AM
06-19-2002 03:04 AM
Re: Kill stuck process (java app)
In any case, thank you for your answers.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2002 03:32 AM
06-19-2002 03:32 AM
Re: Kill stuck process (java app)
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xe5a43a7b3682d611abdb0090277a778c,00.html
Tim

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2002 02:12 AM
06-20-2002 02:12 AM
Re: Kill stuck process (java app)
to check if the java requirements are met on this box.
http://www.hp.com/go/java
...
http://www.hp.com/products1/unix/java/infolibrary/patches.html
for recent recommendations.
BTW-lazy me-
show_patches > 1
F=1
cat java-req.txt |grep PH |sed 's/^.*\(PH.._[0-9]\{4,5\}\)[^0-9]*.*$/\1/g' |while read P
do
if grep -q "$P" $F
then echo .\\c
else echo "$P missing in $F ?"
fi
done
hth, tom.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2002 02:33 AM
06-20-2002 02:33 AM
Re: Kill stuck process (java app)
I will run the script, and update you on results.