- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Perl cron job ???
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
07-17-2000 06:43 PM
07-17-2000 06:43 PM
Perl cron job ???
"sh: 22329"
Does anyone know what does the above indicate?
Apparently the shell program aborted while trying to start my Perl program.
Any hints for my problem are welcome.
Thanks
Philip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2000 08:37 PM
07-17-2000 08:37 PM
Re: Perl cron job ???
Do you have set up the path in users profile or /etc/profile to your program?
While executing from the command prompt, is it coming with the same error?
What shell to you use?
Come back with details.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2000 08:41 PM
07-17-2000 08:41 PM
Re: Perl cron job ???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2000 10:22 PM
07-17-2000 10:22 PM
Re: Perl cron job ???
All paths seem to be correct.
The Perl script is indeed encapsulated by the korn shell such as,
10 10 * * * ksh "..."
but the standard output always said "sh:
I also thought that this problem has nothing to do with the Perl script itself, but rather related to the environment or available system resource at that time. That is the reason why I'm interested to know what
Best regards,
Philip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2000 03:22 AM
07-18-2000 03:22 AM
Re: Perl cron job ???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2000 05:17 AM
07-18-2000 05:17 AM
Re: Perl cron job ???
I had some no-all-the-time error because of missing patches....(eg: in HP-UX 11.0 PHCO_13363).
I have no other better idea...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2000 06:09 PM
07-18-2000 06:09 PM
Re: Perl cron job ???
look in the /var/adm/cron/log for that process number
there might be a return code associated with it
a " rc=
This could help point you to the reason the shell exited.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2000 06:39 AM
07-19-2000 06:39 AM
Re: Perl cron job ???
does some logging prior to calling the perl script (date, time, pid, some text to indicate that the script is running), then do the same in the perl script and in the ksh script after the perl script terminates. You can scan through the log file and see if there are any indications of where the failure occured. If nothing is logged for a particular day, it could indicate that the shell script failed to initialize. If you were running out of file handles or the process table was full, I would have expected to see some indication in syslog.log unless you have the logging level turned down. If you have MeasureWare, you can check some of the kernel table values and see how busy the system was at the time the problem occured.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2000 06:11 PM
07-19-2000 06:11 PM
Re: Perl cron job ???
Have u tried putting -x option after ksh , which will let you know the status of the execution of the each command.
I suppose the number should be an error no. due to some failed system call.
REgs,
S.J.Babu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2000 08:14 PM
07-20-2000 08:14 PM
Re: Perl cron job ???
Cheers
Philip.