linux設定定時任務

2021-10-12 07:31:26 字數 1319 閱讀 5222

1、開啟定時任務資料夾

[root@localhost cron]# cd /var/spool/cron

[root@localhost cron]#

2、檢視定時任務

[root@localhost cron]# crontab -l

0 19 17 12 * /emqx/test0.sh

0 19 17 12 * /emqx/test1.sh

0 19 17 12 * /emqx/test2.sh

0 19 17 12 * /emqx/test3.sh

0 19 17 12 * /emqx/test4.sh

0 19 17 12 * /emqx/test5.sh

0 19 17 12 * /emqx/test6.sh

0 19 17 12 * /emqx/test7.sh

0 19 17 12 * /emqx/test8.sh

0 19 17 12 * /emqx/test9.sh

3、寫指令碼

touch test0.sh

chmod 777 test0.sh

vim test0.sh

## 這裡是測試emqx的資料

sysctl -w net.ipv4.ip_local_port_range="500 65535"

echo 1000000 > /proc/sys/fs/nr_open

ulimit -n 100000

/data/emqtt-bench/emqtt_bench conn -h 192.168.1.1 -p 1883 -c 50000 --ifaddr 192.168.1.2

4、執行定時任務

crontab -e

0 19 17 12 * /emqx/test0.sh

5   crontab檔案格式:

*       *       *      *      *        command

minute   hour    day   month   week      command

分       時      天     月     星期       命令

6、刪除定時任務

crontab -r
7、檢視、設定開機自啟

systemctl list-unit-files crond

systemctl enable crond

linux設定定時任務

service crond status如果滅有,需要確認是否安裝 crontab l能識別就說明已經安裝,然後沒有安裝的話進行安裝,步驟如下 1.安裝crontab root centos yum install vixie cron root centos yum install crontab...

LINUX 定時任務設定

為當前使用者建立cron服務 鍵入 crontab e 編輯crontab服務檔案 例如 檔案內容如下 2 bin sh home admin jiaoben buy deletefile.sh 儲存檔案並並退出 2 bin sh home admin jiaoben buy deletefile....

linux設定定時任務

crontab相關服務 service crond status 檢視crontab服務狀態 service crond start 啟動服務 service crond reload 重新載入配置 service crond restart 重啟服務 service crond stop 關閉服務...