1systemctl 命令管理服務(wù)
Linux中如何啟動、重啟、停止、重載服務(wù)以及檢查服務(wù)(如 httpd.service Apache)狀態(tài)
#systemctl start httpd.service
#systemct lrestart httpd.service
#systemctl stop httpd.service
#systemctl reload httpd.service
#systemctl status httpd.service
#systemct lkill httpd
#systemct llist-unit-files --type=service 列出所有狀態(tài)
2卸載PHP
1.yum list Installed | grep php 先找到php對應(yīng)的程序
2刪除某些PHP的時候 系統(tǒng)自動的會把對應(yīng)的依賴也刪除掉。一直到完全刪除為止淮韭。
# yum remove php56w-common.x86_64?
3卸載mysql
1 查看有沒有安裝包:yum list mysql*
2 卸載mysql
yum -y remove mysql*