linux定时重启花生壳
发布网友
发布时间:2022-04-26 05:40
我来回答
共1个回答
热心网友
时间:2022-06-21 07:18
可以用cron自动执行脚本
# Example of job definition:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed
* 23 * * * root /usr/local/*****
如上,/usr/local/**** 为花生壳重启服务的命令
追问能否写下具过程?本人对操作不熟,只是要求无办法
追答vim /etc/crontab
在末尾添加
* 23 * * * root /usr/local/*****
用花生壳安装路径和重启命令替换 /usr/local/*****