- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- process tracking in unix
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
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
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"