9
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Raspberry Pi3B でPythonをcronする。

Last updated at Posted at 2017-11-27

Raspberrypi3BでPythonをcronする際の備忘録

pythonで作ったコードをcronで定期実行させようとしたところ動かなかった。
mtaがないとったログがありネットと調べpostfixをインストールしてもダメ。。。
答えはシンプルでした。

実行するpyhonのコードは以下のファイルとして記載しています。
/home/pi/abcd.py

以下のコマンドでcron設定を開始

cronの設定
$ sudo crontab -e -u root

設定ファイルの末尾に以下を記述
※注意点はpythonの記述をフルパスで書くこと!

cronの設定
*/1 * * * * /usr/bin/python /home/pi/abcd.py

(参考)cron関連のコマンドメモ

cronの設定内容の表示
$ sudo crontab -l
cronの設定
$ sudo crontab -e
cronの設定削除
$ sudo crontab -r
cronのステータス表示
$ sudo service cron status

cronのログ確認
$ cat /var/log/cron.log 
9
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?