1.service命令其實是去/etc/init.d目錄下,去執行相關程式service nginx start
2.systemctl命令
systemd是linux系統最新的初始化系統(init),作用是提高系統的啟動速度,盡可能啟動較少的程序,盡可能更多程序併發啟動。
systemd對應的程序管理命令是systemctl
systemctl命令相容了service
1、啟動
systemctl start nginx
service nginx start
/etc/init.d/nginx start
2、停止
systemctl stop nginx
service nginx stop
/etc/init.d/nginx stop
3、重啟
systemctl restart nginx
service nginx restart
/etc/init.d/nginx resatrt
#php-fpm常用命令方式
1、啟動
systemctl start php-fpm
service php-fpm start
2、停止
systemctl stop php-fpm
service php-fpm stop
3、重啟
systemctl restart php-fpm
service php-fpm restart
#mysql常用命令方式
1、啟動
systemctl start mysqld
2、停止
systemctl stop mysqld
3、重啟
systemctl restart mysqld
#apache常用命令方式
1、啟動
2、停止
3、重啟
#開機自啟動
systemctl enable redis
linux 伺服器 常用命令
一.檔案處理命令 1.命令格式與目錄處理命令 ls a 檢視隱藏檔案 ls l 檢視檔案首席資訊官格式顯示 ls d 檢視指定目錄的詳細資訊 ls i 檢視任何檔案的l節點 ll 檔名 檢視乙個檔案的詳細資訊 df 顯示磁碟情況 df lh 詳細磁碟使用情況 df a 全部檔案系統使用情況 df i...
centos伺服器 常用命令
登入 ssh root p yyyy 上傳本地的秘鑰到伺服器 ssh copy id root p yyyy 檢視防火牆 firewall cmd list ports 複製 lsof i tcp 8080 command 程序的名稱 pid 程序識別符號 user 程序所有者 fd 檔案描述符,應...
Linux伺服器常用命令
ps 個人使用linux伺服器時常用的命令。登入伺服器 ssh 使用者名稱 iptop 顯示和管理系統程序,相當於windows任務管理器 kill 殺死程序或作業 殺死pid碼的程序或作業,釋放對應的記憶體 kill pidnvidia smi 檢視gpu使用情況和視訊記憶體占用 watch n ...