LoginSignup
0
1

More than 5 years have passed since last update.

サービスを管理 - Ubuntu Server 18.04 LTS

Posted at

はじめに

systemdでサービスを管理する。

コマンド

unit一覧

$ systemctl

すべてのunit一覧

$ systemctl -a

確認・起動・停止・再起動

$ systemctl status hoge.service
$ systemctl start hoge.service
$ systemctl stop hoge.service
$ systemctl restart hoge.service

自動起動の確認・有効化・無効化

$ systemctl list-unit-files
$ systemctl enable hoge.service
$ systemctl disable hoge.service

リファレンス

0
1
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
1