Skip to content

Instantly share code, notes, and snippets.

@nishinoshake
Created June 2, 2016 05:22
Show Gist options
  • Save nishinoshake/86bb384ec9fdda4eb2c5d11f5509d783 to your computer and use it in GitHub Desktop.
Save nishinoshake/86bb384ec9fdda4eb2c5d11f5509d783 to your computer and use it in GitHub Desktop.
systemdの使い方

#なぜ変わったか 的なことを書く。

#起動
sudo systemctl start httpd
#停止
sudo systemctl stop httpd
#再起動
sudo systemctl restart httpd
#状態確認
sudo systemctl status httpd
#有効化されているUnitの一覧
systemctl list-units
#自動起動
sudo systemctl enable httpd
#自動起動させない
sudo systemctl disable httpd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment