web-dev-qa-db-ja.com

Cron Jobが実行されません

次のコマンドを使用して、rootとしてcronジョブを作成しました。

crontab -e

次に、最後の行の後に0 4 24-31 * 4 /home/backupscript.shを追加しました。

crontab -eの出力は次のようになります。

# Edit this file to introduce tasks to be run by cron.
#
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
#
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').#
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and cron(8)
#
# m h  dom mon dow   command
0 4 24-31 * 4 /home/backupscript.sh

/home/backupscript.shにある私のスクリプトは次のようになります。

cd "/home/backups/"
datestring="$(date +%Y-%m-%d)"
Sudo /opt/bitnami/ctlscript.sh stop
Sudo tar -pczvf ${datestring}.openproject-backup.tar.gz /opt/bitnami
Sudo /opt/bitnami/ctlscript.sh start

bash /home/backupscript.shで実行すると問題なく動作します。

1
Orlando

スクリプトが直接実行するときに実行フラグが設定されていることを確認するか、スクリプトを入力としてインタープリターとしてbashを使用します。

インタプリタとしてbashを使用するには、行を0 4 24-31 * 4 bash /home/backupscript.shに変更します

スクリプトの実行フラグを設定するには、chmod +x /home/backupscript.shを使用します

3
stalet

Bashスクリプトは、起動プロセスに、それがbashシェルで実行されるスクリプトであることを知らせるために、Shebangで開始する必要があります。したがって、スクリプトの最初の行は#!/bin/bashである必要があります。これは良い慣習であり、bashスクリプトの記述方法です。現在、スクリプトはbash /home/backupscript.shを実行するときに機能します。これは、そのコマンドのbash部分でbashシェルを実行するように既に指示しているためです。おそらくcrontab行を作成することでこれを回避できます。

0 4 24-31 * 4 bash /home/backupscript.sh

これは正しい方法ではありません。スクリプトの権限はスキップされますが、動作します。

ほとんどの場合、スクリプトに対する正しい権限を持っていないため、実行ビットを設定する必要があります。これはchmodコマンドのドメインです。使用方法の説明は here。 にあります。

システム上の誰でもこのコマンドを実行できるようにする場合は、次を実行できます。

chmod +x /home/backupscript.sh

ユーザーがスクリプトを作成したと仮定して、アクセスを自分のユーザーだけに制限したい場合があります。

chmod u+x /home/backupscript.sh

私のアドバイスは、Shebangをスクリプトの先頭に追加し、権限を変更して実行可能にすることです。

1
Arronical