0
0

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 3 years have passed since last update.

スクレイピング(Dockerつかったとき)のcronの注意点

Posted at

#Cronがうまく使えなかったので備忘録。

環境:dockerを用いて仮想環境を構築した。
使用したイメージ:ubuntu16.04

起こった問題点:cronを利用しようとしても、

command not found

と表示された。

原因:どうやらdockerで生成したubuntuにははじめからcronが入っていないらしい。
以下のコードでパッケージをインストールした。

apt-get install -y cron

他にも、sudoが使えなかったので、

apt-get install -y sudo

でいんすとーるした。

ただ、オプションである-yの意味は依然として不明。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?