I know it's probably right under my nose, but I can't seem to locate user cron jobs...What are they named?
cPanel.net Support Ticket Number:
I know it's probably right under my nose, but I can't seem to locate user cron jobs...What are they named?
cPanel.net Support Ticket Number:
Any idea why the big notice:
# DO NOT EDIT THIS FILE - edit the master and reinstall.
Would seem to makes things easier by editting there, than to have to find the "master" file.
cPanel.net Support Ticket Number:
Helping people Host, Create, and Maintain their Web Site
Also providing Server Admin Services - setup / troubleshooting
http://potentproducts.com/
Yeah, exactly. If you even pico the thing it breaks, and you have to set up everything again. I want to see what cron jobs my users have set up, but if I pico the ones in /var/spool/cron everything gets deleted. Mind you now, I'm not editing anything just opening and closing. So I'd like to be able to just look at the things.Originally posted by Website Rob
Any idea why the big notice:
# DO NOT EDIT THIS FILE - edit the master and reinstall.
Would seem to makes things easier by editting there, than to have to find the "master" file.
cPanel.net Support Ticket Number:
I guess I can just look in /var/spool/cron to see which users have cron jobs and then go to each user's cpanel individually....
cPanel.net Support Ticket Number:
Very simple:Originally posted by casey
Yeah, exactly. If you even pico the thing it breaks, and you have to set up everything again. I want to see what cron jobs my users have set up, but if I pico the ones in /var/spool/cron everything gets deleted. Mind you now, I'm not editing anything just opening and closing. So I'd like to be able to just look at the things.
I guess I can just look in /var/spool/cron to see which users have cron jobs and then go to each user's cpanel individually....
cPanel.net Support Ticket Number:
ls /var/spool/cron will show you the users that have cron jobs set.
crontab -l -u username => list the jobs set for that username
crontab -e -u username => edit the jobs for that username
crontab -r - u username => remove the jobs for that username
Regards,
Rodrigo
cPanel.net Support Ticket Number:
cPanel.net Support Ticket Number:
I just download the files in /var/spool/cron/ and look at them from my personal computer.
Also, I find editing the files, either with pico or by downloading, editing, and uploading, it does work. I just have go into cpanel afterwards, go to the cronjob, choose advanced, and commit changes. Whatever that does, it makes the edited file work.
Does anyone know exactly what the "commit changes" button does?
Thank you!!!Originally posted by rsferreira
Very simple:
ls /var/spool/cron will show you the users that have cron jobs set.
crontab -l -u username => list the jobs set for that username
crontab -e -u username => edit the jobs for that username
crontab -r - u username => remove the jobs for that username
Regards,
Rodrigo
cPanel.net Support Ticket Number:
cPanel.net Support Ticket Number:
cPanel.net Support Ticket Number:
I believe it's just another way of saying "save changes".Originally posted by squirrel
Does anyone know exactly what the "commit changes" button does?
cPanel.net Support Ticket Number:
That's what it does is save changes, but what does it do to save changes? It can't just write the lines to the /var/spool/cron file because I did that before uploading the changed file. It must do something with another file to make the changes to the cron file active.Originally posted by MySundown
I believe it's just another way of saying "save changes".
cPanel.net Support Ticket Number:
I make cron changes in SSH often, but I always have to go to cpanel to make the changes take effect. How can I make the changes take effect from SSH?
Just read my previous post in this thread. Those commands will do the magic.Originally posted by squirrel
That's what it does is save changes, but what does it do to save changes? It can't just write the lines to the /var/spool/cron file because I did that before uploading the changed file. It must do something with another file to make the changes to the cron file active.
I make cron changes in SSH often, but I always have to go to cpanel to make the changes take effect. How can I make the changes take effect from SSH?
cPanel.net Support Ticket Number:
Thanks. I just did a test. I uploaded a changed file, then used crontab -e -u username, made a tiny change so I would be able to save upon exit and it worked.
I know I could also just do all my editing there instead of uploading the text file, but I like working on changes on my home computer.
Now I don't need to keep going to cpanel to activate the changes.Thanks