2020年5月11日月曜日

Raspberry Pi(Raspbian Buster)にCrontab UIをインストールする

Crontab UIでWebブラウザからcrontabを編集・管理を行うことができます。

〇Crontab UIの画面(Raspberry Pi)


〇インストール手順
以下のコマンドを実行します。
sudo apt-get -y install curl

curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -

sudo apt-get install -y nodejs

sudo npm install -g crontab-ui

cat << EOF | sudo tee /etc/systemd/system/crontabui.service
[Unit]
Description=crontab-ui
[Service]
Type=simple
Environment=HOST=0.0.0.0
Environment=PORT=9000
ExecStart=/usr/bin/crontab-ui
Restart=always
RestartSec=10
[Install]
WantedBy=multi-user.target
EOF

sudo systemctl enable crontabui.service

sudo systemctl start crontabui.service

インストール後、ブラウザからhttp://<サーバー名またはIP>:9000にアクセスします。

0 件のコメント:

コメントを投稿