- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- cron problems - secure system
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
12-13-2000 08:07 AM
12-13-2000 08:07 AM
cron problems - secure system
THANK YOU
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2000 08:22 AM
12-13-2000 08:22 AM
Re: cron problems - secure system
ts = termination signal
It is why the process died.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2000 08:45 AM
12-13-2000 08:45 AM
Re: cron problems - secure system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2000 09:00 AM
12-13-2000 09:00 AM
Re: cron problems - secure system
# kill -l
# man 5 signal
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2000 11:03 AM
12-13-2000 11:03 AM
Re: cron problems - secure system
your processes that are started by cron? Check for 2 cron processes running, there should only be one process with a parent id of 1.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2000 11:14 AM
12-13-2000 11:14 AM
Re: cron problems - secure system
are started bye the cron process:
root 7227 1 0 Dec 10 ? 0:02 /usr/sbin/cron
root 3739 7227 255 05:55:00 ? 8:07 /usr/sbin/cron
root 11981 7227 255 20:55:00 ? 206:33 /usr/sbin/cron
root 6473 7227 249 06:45:00 ? 1:37 /usr/sbin/cron
root 762 7227 249 04:45:00 ? 19:02 /usr/sbin/cron
root 3640 7227 255 05:50:00 ? 8:41 /usr/sbin/cron
root 12794 7227 249 21:05:00 ? 201:40 /usr/sbin/cron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2000 11:31 AM
12-13-2000 11:31 AM
Re: cron problems - secure system
check your root crontab file for a cron entry.
If you don't find one, check your other crontab files for the "cron" entry.
As root try
grep cron /var/spool/cron/crontabs/*
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2000 12:55 PM
12-13-2000 12:55 PM
Re: cron problems - secure system
As this is a recent occurance, when did you last reboot the server? if the answer is before the problem started then try stopping and restarting the cron.
First kill all the child cron jobs (NOT the one with an id of 1).
Then:-
/sbin/init.d/cron stop
/sbin/init.d/cron start
Then monitor how the cron behaves.
HTH
Paula