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 1 year has passed since last update.

systemctl status crond.serviceでUnit crond.service could not be foundと言われた件

Posted at

駆け出しおじさんエンジニアです。

AmazonLinuxでcronを使おうとした際に表題の通りになってつまづいたので
自分自身の覚書として記載しておきます。

結論

AmazonLinuxには標準でcronがインストールされていないので、インストールしてね

ということでした。

手順

クラスメソッド様のCronがインストールされていない問題をハンズオンして解決に至りました。



1.cronの今の状態を確認してみる
$ systemctl status crond.service
Unit crond.service could not be found.

cronがありませんよーと言われました。



2.Fedoraのドキュメントを確認してみる

cronie というパッケージで使えるようになるらしい。



3.cronieをインストールしてみる
#cronieが標準リポジトリにあるか確認
$ dnf info cronie

#cronieがインストールされているか確認
$ rpm -q cronie cronie-anacron

#cronieをインストールする
$ dnf install cronie cronie-anacron

#cronをstartして完了
$ systemctl start crond.service

これでいけました。

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?