Created
January 17, 2018 16:49
-
-
Save shengyou/82335a018df9def3b9d1be50a4fa4bb8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 查看服務狀態 | |
sudo systemctl status apache2 | |
sudo systemctl status mysql | |
# 啟動各服務 | |
sudo systemctl start apache2 | |
sudo systemctl start mysql | |
# 關閉各服務 | |
sudo systemctl stop apache2 | |
sudo systemctl stop mysql | |
# 重啟各服務 | |
sudo systemctl restart apache2 | |
sudo systemctl restart mysql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment