linux啟動nginx的命令:
一、查詢是否啟動
[root@jiang php-fpm.d]#ps -ef | grep nginx二、啟動
[root@jiang php-fpm.d]#ps -ef | grep nginx三、停止
從容停止nginx:
kill -quit 主程序號
[root@jiang php-fpm.d]#kill -quit 19513
[root@jiang php-fpm.d]#ps -ef | grep nginx
root 25190 19431 0 19:22 pts/0 00:00:00 grep nginx
快速停止nginx:
kill -term 主程序號
[root@jiang php-fpm.d]#kill -term 25192
[root@jiang php-fpm.d]#ps -ef | grep nginx
root 25203 19431 0 19:23 pts/0 00:00:00 grep nginx
[root@jiang php-fpm.d]#
強制停止nginx:
kill -9 主程序號
[root@jiang php-fpm.d]#kill -9 25205
[root@jiang php-fpm.d]#ps -ef | grep nginx
www 25206 1 0 19:24 ? 00:00:00 nginx: worker process
root 25210 19431 0 19:24 pts/0 00:00:00 grep nginx
四、重啟
[root@jiang php-fpm.d]#
linux啟動mysql的命令:
一、啟動
[root@jiang host]#service mysqld start
starting mysql… [ ok ]
或者[root@jiang host]#/etc/init.d/mysqld start
starting mysql… [ ok ]
二、停止
[root@jiang host]#service mysqld stop
shutting down mysql… [ ok ]
或者[root@jiang host]#/etc/init.d/mysqld stop
shutting down mysql. [ ok ]
三、重啟
[root@jiang host]#service mysqld restart
shutting down mysql… [ ok ]
starting mysql… [ ok ]
或者[root@jiang host]#/etc/init.d/mysqld restart
shutting down mysql… [ ok ]
starting mysql… [ ok ]
四、檢視mysql是否啟動
[root@jiang host]#service mysqld status
mysql running (24110) [ ok ]
[root@jiang host]#ps aux | grep mysqld
linux啟動php的命令:
service php-fpm restart
停止php:
[root@jiang host]#pkill php-fpm
檢視9000埠:
[root@jiang host]#netstat -lnt | grep 9000
[root@jiang host]#
啟動php:
檢視9000埠:
[root@jiang sbin]#netstat -tunlp | grep 9000
tcp 0 0 127.0.0.1:9000 0.0.0.0:* listen
linux 啟動 停止 重啟 mysql命令
一 啟動方式 1 使用 service 啟動 service mysqld start 2 使用 mysqld 指令碼啟動 etc init.d mysqld start 3 使用 safe mysqld 啟動 safe mysqld 二 停止 1 使用 service 啟動 service mys...
Linux 下mysql 啟動 停止 重啟
linux下開啟 關閉 重啟mysql服務命令 一 啟動 1 使用 service 啟動 service mysql start 2 使用 mysqld 指令碼啟動 etc inint.d mysql start 3 使用 safe mysqld 啟動 safe mysql 二 停止 1 使用 se...
Nginx 啟動 停止 重啟
例如 root linuxserver sbin usr local nginx sbin nginx c usr local nginx conf nginx.conf 停止nginx的停止有三種方式 從容停止 1 檢視程序號 root linuxserver ps ef grep nginx 2...