systemctl配下で動くサービス一覧
# systemctl list-units
自分用サービスユニットファイル例
# cat /etc/systemd/system/gvis.service
[Unit]
Description = gvis daemon
[Service]
ExecStart = /gvis/script/000_serviceStart.sh
Restart = no
Type = simple
[Install]
WantedBy = multi-user.target
サービス開始例
# systemctl start docker.service
サービス停止例
# systemctl stop docker.service
サービス有効化例
# systemctl enable gvis.service
サービス無効化例
# systemctl disable gvis.service
サービス有効かどうか確認
# systemctl is-enable xrdp