- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: process tracking in unix
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp
Knowledge Base
Discussions
Forums
Discussions
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
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
09-05-2005 12:28 AM
09-05-2005 12:28 AM
process tracking in unix
I have some log files pointing to a problem comming form specific process with a known PID, but when I issue "ps -ef|grep PID" to know the process name it returns nothing.
form the log file it seems that this process runs repeatedly on the system but not on a scheduled time. is there any idea on how can I capture this process??
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2005 12:31 AM
09-05-2005 12:31 AM
Re: process tracking in unix
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2005 12:57 AM
09-05-2005 12:57 AM
Re: process tracking in unix
the main problem is that I don't know anything about this process except it PID, there is no scheduled jobs in the cron/at. it seems that this process is trigred form one of the already running processes.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2005 01:01 AM
09-05-2005 01:01 AM
Re: process tracking in unix
Such files grow very fast.
tusc -vfp -o /tmp/somelog_file.
You can get tusc from hpux.connect.org.uk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2005 06:18 PM
09-05-2005 06:18 PM
Re: process tracking in unix
check the parent process ID and track it from there. It might be a script you can fix.
Ish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2005 06:26 PM
09-05-2005 06:26 PM
Re: process tracking in unix
Now you will be in a situation to handle the problem.
Since the pid can be arbitrary, now you can process that log file manually or via a script if you know the structure to get the pod and then get the information about that process.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2005 07:25 PM
09-05-2005 07:25 PM
Re: process tracking in unix
thanks very much Im trying now to catch that process using the tusc tool hope this will succeed
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2005 07:30 PM
09-05-2005 07:30 PM
Re: process tracking in unix
tusc -vf -o /some_dir_with_enough_space/logfile -p "pid"