起動状態のユニット一覧
systemctl
起動していないユニットも含めた一覧
systemctl -all
起動
systemctl start アプリケーション.service
停止
systemctl stop アプリケーション.service
再起動
systemctl restart アプリケーション.service
確認
systemctl status アプリケーション.service
自動起動設定の一覧
systemctl list-unit-files
自動起動の有効化
systemctl enable アプリケーション.service
自動起動の無効化
systemctl disable アプリケーション.service