-
Notifications
You must be signed in to change notification settings - Fork 1
/
cron.html
295 lines (255 loc) · 10.2 KB
/
cron.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<title>Pythonスクリプトをcronから定期実行する — Daydreaming in Greater Boston</title>
<meta name="author" content="Kyos">
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/favicon.png" rel="icon">
<link href="/theme/css/main.css" media="screen, projection"
rel="stylesheet" type="text/css">
<link href="//fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic"
rel="stylesheet" type="text/css">
<link href="//fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic"
rel="stylesheet" type="text/css">
</head>
<body>
<header role="banner"><hgroup>
<h1><a href="/">Daydreaming in Greater Boston</a></h1>
</hgroup></header>
<nav role="navigation"><ul class="subscription" data-subscription="rss">
</ul>
<ul class="main-navigation">
<li><a href="/pages/about.html">About Me</a></li>
<li >
<a href="/category/blog.html">Blog</a>
</li>
<li >
<a href="/category/english.html">English</a>
</li>
<li class="active">
<a href="/category/linux.html">Linux</a>
</li>
<li >
<a href="/category/python.html">Python</a>
</li>
<li >
<a href="/category/tech.html">Tech</a>
</li>
</ul></nav>
<div id="main">
<div id="content">
<div>
<article class="hentry" role="article">
<header>
<h1 class="entry-title">Pythonスクリプトをcronから定期実行する</h1>
<p class="meta">
<time datetime="2022-01-22T00:00:00-05:00" pubdate>Sat 22 January 2022</time> </p>
</header>
<div class="entry-content"><div id="table-of-contents">
<h2>Table of Contents</h2>
<div id="text-table-of-contents">
<ul>
<li><a href="#org2c3a2fe">1. はじめに</a></li>
<li><a href="#org1819ed3">2. venv環境を使う</a></li>
<li><a href="#org7ce72e0">3. crontabに登録する</a></li>
<li><a href="#org3b20a87">4. 終わりに</a></li>
</ul>
</div>
</div>
<div id="outline-container-org2c3a2fe" class="outline-2">
<h2 id="org2c3a2fe"><span class="section-number-2">1</span> はじめに</h2>
<div class="outline-text-2" id="text-1">
<p>
PythonのスクリプトをLinuxマシン上で定期実行することを考えます。Linuxにはジョブスケジューラーのcronがありますが、必要ライブラリをpipでインストール済みのvenv環境を使うには少し工夫が必要です。
</p>
</div>
</div>
<div id="outline-container-org1819ed3" class="outline-2">
<h2 id="org1819ed3"><span class="section-number-2">2</span> venv環境を使う</h2>
<div class="outline-text-2" id="text-2">
<p>
venv環境をactivateしてPythonスクリプトを実行するためには、cronから
</p>
<pre class="example">
python <script>.py
</pre>
<p>
のように直接Pythonを呼んでスクリプトを実行するのではなく、ヘルパーのシェルスクリプトに頼ります。
</p>
<p>
しかし、venv環境をactivateするsourceコマンドは普通のshにはなく、bashを使わなくてはいけません。そこで、例えば次のようなスクリプトを作ります。
</p>
<pre class="example">
#!/usr/bin/bash
cd </path/to/venv/folder>
source bin/activate
bin/python <python_script>.py
</pre>
<p>
よく目にする <code>#!/bin/sh</code> でなくbashを指定することと、 <code></path/to/venv/folder>/bin/python</code> を使うところがポイントです。
</p>
<p>
これをrun_script.sh としてセーブし、実行可能にします。
</p>
<pre class="example">
chmod a+x run_script.sh
</pre>
</div>
</div>
<div id="outline-container-org7ce72e0" class="outline-2">
<h2 id="org7ce72e0"><span class="section-number-2">3</span> crontabに登録する</h2>
<div class="outline-text-2" id="text-3">
<p>
crontabに登録してcron実行するために、
</p>
<pre class="example">
sudo crontab -e
</pre>
<p>
を実行します。すると、viでcrontabが開かれるので、
</p>
<pre class="example">
0 */4 * * * </path/to/venv/folder>/run_script.sh
</pre>
<p>
のような行を追加します。上記は4時間毎の実行です。 <code>0</code> は(毎時)ゼロ分を、 <code>*/4</code> は4時間毎を意味します。
</p>
<p>
左端の5個のフィールドは以下のフォーマットになっています。
</p>
<pre class="example">
* * * * *
| | | | +--- 曜日(0-6; 日曜が0)
| | | +----- 月(1-12)
| | +------- 日(1-31)
| +--------- 時(0-23)
+----------- 分(0-59)
</pre>
<p>
きちんと登録されたかどうかは以下のコマンドで表示、確認できます。
</p>
<pre class="example">
sudo crontab -l
</pre>
<p>
デバッグのためには、もっと頻繁に、例えば2分に1回の実行とし、print文やエラーをファイルに出力させるといいと思います。
</p>
<pre class="example">
*/2 * * * * </path/to/venv/folder>/run_script.sh >> /tmp/out.txt 2>&1
</pre>
<p>
上記において、 <code>2>&1</code> の部分は、エラーを標準出力にリダイレクトしています。
</p>
<p>
実際にこれが実行されたかどうかはログを見ます。
</p>
<pre class="example">
sudo tail -f /var/log/cron
</pre>
<p>
次の実行が出力されたら、/tmp/out.txtを見に行きます。
</p>
<ul class="org-ul">
<li>そもそも/tmp/out.txtが作成されているか</li>
<li>out.txtにエラーが出ていないか</li>
</ul>
<p>
といったことを見ます。2回目以降は、実行される前に/tmp/out.txtを消しておくと、切り分けが少し楽になります。
</p>
</div>
</div>
<div id="outline-container-org3b20a87" class="outline-2">
<h2 id="org3b20a87"><span class="section-number-2">4</span> 終わりに</h2>
<div class="outline-text-2" id="text-4">
<p>
上記のテクニックを使って、オフィスのラボにあるサーバーがダウンしていないかを自動で定期的に確認し、ダウンしていたらSlackにメッセージをポストするようにしました。更に、サーバーにインストール済みのバージョンよりも新しいバージョンが無いか、Jenkinsをチェックして比較しています。
</p>
<p>
このように、社内システムのAPIを使って「退屈なこと(boring stuff)」を自動化するのに、手軽に使えて高機能なPythonは向いていると思います。
</p>
</div>
</div>
</div>
<footer>
<p class="meta">
<span class="byline author vcard">
Posted by <span class="fn">
きょうす
</span>
</span>
<time datetime="2022-01-22T00:00:00-05:00" pubdate>Sat 22 January 2022</time> <span class="categories">
<a class='category' href='/category/linux.html'>Linux</a>
</span>
<span class="categories">
<a class="category" href="/tag/linux.html">Linux</a>, <a class="category" href="/tag/python.html">Python</a> </span>
</p><div class="sharing">
</div> </footer>
</article>
</div>
<aside class="sidebar">
<section>
<h1>Recent Posts</h1>
<ul id="recent_posts">
<li class="post">
<a href="/tello.html">アメリカ格安SIMをSpeedtalkからTelloに変えました</a>
</li>
<li class="post">
<a href="/improve_eng2.html">上級者向け英語学習法(実践編)</a>
</li>
<li class="post">
<a href="/improve_eng1.html">上級者向け英語学習法(考察編)</a>
</li>
<li class="post">
<a href="/vocabulary.html">オススメのボキャビル方法</a>
</li>
<li class="post">
<a href="/emacs_build.html">Rokcy LinuxとM1 MacBook上でemacsをソースからビルドしてみる</a>
</li>
</ul>
</section>
<section>
<h1>Categories</h1>
<ul id="recent_posts">
<li><a href="/category/blog.html">Blog</a></li>
<li><a href="/category/english.html">English</a></li>
<li><a href="/category/linux.html">Linux</a></li>
<li><a href="/category/python.html">Python</a></li>
<li><a href="/category/tech.html">Tech</a></li>
</ul>
</section>
<section>
<h1>Tags</h1>
<a href="/tag/blog.html">Blog</a>, <a href="/tag/amerikasheng-huo.html">アメリカ生活</a>, <a href="/tag/tech.html">Tech</a>, <a href="/tag/ying-yu.html">英語</a>, <a href="/tag/emacs.html">emacs</a>, <a href="/tag/sekiyuritei.html">セキュリティ</a>, <a href="/tag/investment.html">Investment</a>, <a href="/tag/python.html">Python</a>, <a href="/tag/english.html">English</a>, <a href="/tag/linux.html">Linux</a>, <a href="/tag/mac.html">Mac</a>, <a href="/tag/toraburu.html">トラブル</a>, <a href="/tag/game.html">game</a>, <a href="/tag/vacation.html">Vacation</a>, <a href="/tag/ying-yu-jiao-yu.html">英語教育</a>, <a href="/tag/ying-jian.html">英検</a> </section>
<section>
<h1>Social</h1>
<ul>
<li><a href="#" target="_blank">You can add links in your config file</a></li>
<li><a href="#" target="_blank">Another social link</a></li>
</ul>
</section>
<section>
<h1>Blogroll</h1>
<ul>
<li><a href="https://getpelican.com/" target="_blank">Pelican</a></li>
<li><a href="https://www.python.org/" target="_blank">Python.org</a></li>
<li><a href="https://palletsprojects.com/p/jinja/" target="_blank">Jinja2</a></li>
<li><a href="#" target="_blank">You can modify those links in your config file</a></li>
</ul>
</section>
</aside> </div>
</div>
<footer role="contentinfo"><p>
Copyright © 2020–2024 Kyos —
<span class="credit">Powered by <a href="http://getpelican.com">Pelican</a></span>
</p></footer>
<script src="/theme/js/modernizr-2.0.js"></script>
<script src="/theme/js/ender.js"></script>
<script src="/theme/js/octopress.js" type="text/javascript"></script>
</body>
</html>