- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: cron errors
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
03-20-2002 04:32 PM
03-20-2002 04:32 PM
cron errors
ERROR [/.../.../.../.../monalert.sh]: not an SCCS file (co1)
could anybody help me out with this
thanks
pradeep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2002 04:49 PM
03-20-2002 04:49 PM
Re: cron errors
Can you post the crontab file which fires this job?
It seems that you are executing non executable file through a cron job.
Please make sure that file is having execute permission.
Thanks,
-pap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2002 06:58 PM
03-20-2002 06:58 PM
Re: cron errors
I suspect your cron job does a "get /.../.../.../.../monalert.sh".
/usr/bin/get generates an ASCII text file from the SCCS file, so it is alerting you that monalert.sh is not an SCCS file.
Please check what exactly is sought to be accomplished by your command. Did you want to run ftp's "get" instead? If so, consider using the "ftp -vin
If you are trying to invoke your own "get" utility or script, qualify it with the full path.
Hope this helps

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2002 09:19 PM
03-20-2002 09:19 PM
Re: cron errors
As Deepak mentioned, you need to specify the full path name for "get" in your script...
/usr/sccs/bin/get
/usr/ccs/bin/get
/usr/xpg4/bin/get
/usr/bin/get
whichever is applicable..
-Shabu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 12:17 PM
03-21-2002 12:17 PM
Re: cron errors
The cron script for my part looks like
00 1,6,12,18 * * * /opt/app/test/scripts/monalert.sh
thanks
pradeep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 12:21 PM
03-21-2002 12:21 PM
Re: cron errors
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 12:26 PM
03-21-2002 12:26 PM
Re: cron errors
I would suggest you to update your system with the latest patch bundle. A lot of SCCS error have been solved by patches.
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 12:44 PM
03-21-2002 12:44 PM
Re: cron errors
Surprisingly I have other similiar scripts in the cron ,which runs just fine !
thanks
pradeep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 12:51 PM
03-21-2002 12:51 PM
Re: cron errors
Do a:
help co1
and see if the error message is useful..
-Shabu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 04:16 PM
03-21-2002 04:16 PM
Re: cron errors
thanks
pradeep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2002 11:31 AM
03-22-2002 11:31 AM
Re: cron errors
If it is an HP server..
help co1
will say
co1:
"not an SCCS file"
A file that you think is an SCCS file
does not begin with the characters "s.".
It is co1 (it is the error message that you are getting) and not col1
-Shabu