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
05-28-2002 05:02 AM
05-28-2002 05:02 AM
root 7623 c Thu May 23 23:30:03 EDT 2002 ts=139
Does anyone lnow what the ts=139 means?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2002 05:15 AM
05-28-2002 05:15 AM
SolutionThat's a Termination Signal or error code for a cron job that died.
ts=termination signal
rc=return code
You need to look at cron to determine what job may have been running at that time & check to see if it's been setup poperly. Could also be the cron daemon itself that died.
See the following thread
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x95d2d06ed8c8d4118fef0090279cd0f9,00.html
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2002 05:22 AM
05-28-2002 05:22 AM
Re: cron
ts=139 is a signal called SIGCLEANUP. This is normally run if a process detects a SIGHUP (hangup or kill -1 command) and passes to its cleanup procedure before closing.
You might be able to get more info from;
man 5 signal
I think your cron process, whatever it was, received a termination call and cleaned itself up then stopped running.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2002 05:26 AM
05-28-2002 05:26 AM
Re: cron
Here is the cron entry
>crontab -l
* * * * * /usr/bin/date >> /tmp/crontest
/tmp
>date
Tue May 28 09:25:11 EDT 2002
/tmp
ls -l /tmp/crontest
/tmp/crontest not found
/tmp
>
Here is the cron log:
>CMD: /usr/bin/date >> /tmp/crontest
>estewar1 25413 c Tue May 28 09:25:00 EDT 2002
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2002 05:30 AM
05-28-2002 05:30 AM
Re: cron
Friday at 23:30, operations does an automatic reboot of the system.
All cron jobs are still getting the ts=139
As soon as the operation person gets in I will convince him to restart cron.
I will keep everyone informed.
Thanks for the support and rapid responses.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2002 05:42 AM
05-28-2002 05:42 AM
Re: cron
Its a termination signal and your cron process has got terminated due to some problems.
Check out if your cron process had some problems. You can check in the syslog also if some errors are logegd in or in the cron log ../var/cron/log.
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2002 06:13 AM
05-28-2002 06:13 AM
Re: cron
It seems to be working now.
No idea exactly what caused the problem. just glad it has gone away.