2019年5月5日日曜日

Ubuntu18.04にCrontab UIをインストールする

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

〇Crontab UIの画面


〇インストール方法
シェルから以下のコマンド実行します
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -

sudo apt-get install -y nodejs gcc g++ make

sudo npm install -g crontab-ui

cat << EOF | sudo tee -a /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

〇関連情報
・プロジェクトサイト
https://github.com/alseambusher/crontab-ui

・Crontab UIに関する他の記事はこちらを参照してください。

0 件のコメント:

コメントを投稿