redhat 9.0 mysql 3.23.54
[root@techtool node-runner]# crontab -a node.start crontab: invalid option -- a crontab: usage error: unrecognized option usage: crontab [-u user] file crontab [-u user] { -e | -l | -r } (default operation is replace, per 1003.2) -e (edit user's crontab) -l (list user's crontab) -r (delete user's crontab)
this is the what i get when i try to install node.start.
am i doing this wrong? plz help i would love to get this running!!!
You need to run 'crontab -e'. This will start up a text editor from which you will be able to add a line like this:
0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57 * * * * /usr/local/node-runner/node.start >> /tmp/outfile.txt
Then save the file and exit and it will install the line into your cron.
--Brad Fears
Log in to post a comment.
redhat 9.0 mysql 3.23.54
[root@techtool node-runner]# crontab -a node.start
crontab: invalid option -- a
crontab: usage error: unrecognized option
usage: crontab [-u user] file
crontab [-u user] { -e | -l | -r }
(default operation is replace, per 1003.2)
-e (edit user's crontab)
-l (list user's crontab)
-r (delete user's crontab)
this is the what i get when i try to install node.start.
am i doing this wrong?
plz help i would love to get this running!!!
You need to run 'crontab -e'. This will start up a text editor from which you will be able to add a line like this:
0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57 * * * * /usr/local/node-runner/node.start >> /tmp/outfile.txt
Then save the file and exit and it will install the line into your cron.
--Brad Fears