skypesky / study

study everything
3 stars 0 forks source link

[article]: systemd timer 定时任务 #475

Closed skypesky closed 5 months ago

skypesky commented 6 months ago
➜  github-backup cat /etc/systemd/system/github-backup-arcblock.service
[Unit]
Description=Backup GitHub repository for ArcBlock

[Service]
Type=simple
ExecStart=/bin/bash -c "/data/github-backup/backup.sh ArcBlock"
User=ec2-user

➜  github-backup cat /etc/systemd/system/github-backup-arcblock.timer
[Unit]
Description=Run GitHub backup for ArcBlock

[Timer]
OnCalendar=*-*-* 01:00:00
Persistent=true

[Install]
WantedBy=timers.target

# 启动
sudo  systemctl daemon-reload
sudo systemctl restart github-backup-arcblock.service
sudo systemctl restart github-backup-blocklet.service

# 自动启动
sudo systemctl enable github-backup-arcblock.service
sudo systemctl enable github-backup-blocklet.service

# 查看执行状态
sudo systemctl status github-backup-arcblock.service
sudo systemctl status github-backup-blocklet.service