# crontab

原文连接:snippets crontab

centos 8默认已安装crontab,通过crontab可以设置周期性调度任务、启动时任务。

crontab中的任务分为用户任务,系统级任务。

# 用户任务

查看用户任务

crontab -l

编辑用户任务

crontab -e

清空任务

crontab -r

注:用户任务配置在目录/var/spool/cron

# 系统级任务

系统级任务配置在/etc/crontab中,可配置定时任务,也可配置系统启动时需要执行的任务

某些任务需要root账号启动,可配置在系统级任务中 如:nginx默认占用80443等特殊端口,而centos中,1000以内的端口需要root账号才能使用

SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root

# For details see man 4 crontabs

# 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

@reboot root /home/path/start.sh # 系统启动时执行的任务

# 查看日志

crontab 日志目录为 /var/log/cron

# 其他类似方案

# pm2

pm2是基于nodejs的进程管理工具,可以配合shell执行周期性任务, 也可以用来管理开机自启任务(通过保存进程状态,在开机时恢复进程状态,这一点上比crontab好用)。

# 自动部署服务

编写shell脚本,从github拉去代码、编译构建、部署到nginx

cd path-of-project
git pull

npm i
npm run build

mv -f dist/* path-of-nginx

sleep 60 # 这里 sleep 一分钟是为了避免 pm2 过于频繁的执行该脚本

通过pm2持续性的运行该脚本

pm2 start shell-path -- -option value

# 或不带参数

pm2 start shell-path

如果需要开机自动启动该脚本,可以通过pm2 save保存进程状态,开机便会自动运行。

注:在使用 pm2 save之前需要确保pm2本身能够开机启动,执行以下命令并根据提示设置自启动pm2 startup

# 监控
  1. 终端监控
pm2 monit

通过执行pm2 monit可直接在终端打开监控。

  1. 在线地址
pm2 plus

通过执行pm2 plus可开启在线监控,但该服务为收费服务,默认提供14天体验时间。

# chkconfig

参考文档: chkconfig

最后更新: Wed, 09 Aug 2023 14:10:15 GMT

0 评论

加载中...
访问量:-