- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- CRON: Enable A Specific User To Run Scripts
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
04-17-2003 12:42 PM
04-17-2003 12:42 PM
Is there a specific file to edit? Do I put them in the wheel group?
We run most of the enterprise databases, and developers are always asking for this in one form or another so they can tell when certain jobs have run with success.
Any help is much appreciated!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2003 12:48 PM
04-17-2003 12:48 PM
Solutionman crontab
As far as being able to run scrips? The permission of the script in question would determine if it is executable for a given user:group
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2003 12:48 PM
04-17-2003 12:48 PM
Re: CRON: Enable A Specific User To Run Scripts
Entering the user's username in /var/adm/cron/cron.allow will allow that user to use cron.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2003 12:50 PM
04-17-2003 12:50 PM
Re: CRON: Enable A Specific User To Run Scripts
Allowing (and/or disallowing) users to run cron jobs is controlled in '/var/adm/cron/cron.allow' and '/var/adm/cron/cron.deny' as described in the 'crontab' man pages.
The same mechanism applies for the use of 'at' or 'batch' jobs using '/var/adm/cron/at.allow' and '/var/adm/cron/at.deny'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2003 12:55 PM
04-17-2003 12:55 PM
Re: CRON: Enable A Specific User To Run Scripts
HTH
-- Rod Hills
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2003 01:00 PM
04-17-2003 01:00 PM
Re: CRON: Enable A Specific User To Run Scripts
Thanks for all of your help! Mucho points!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2003 01:08 PM
04-17-2003 01:08 PM
Re: CRON: Enable A Specific User To Run Scripts
One further note. Try to avoid the use of 'crontab -e'
Use this method:
$ crontab -l >/tmp/work
make your changes and then save the file and submit it.
$ crontab /tmp/work