CentOS7系统下Apache/Nginx/MySQL/php-fpm启动、重启及停止命令大全,LAMPLNMP分享:
注意:是Linux CentOS7系统下
Apache启动/重启/停止命令
- 启动命令:systemctl start httpd
- 重启命令:systemctl restart httpd
- 停止命令:systemctl stop httpd
Nginx启动/重启/停止命令
- 启动命令:systemctl start nginx
- 重启命令:systemctl restart nginx
- 停止命令:systemctl stop nginx
MySQL启动/重启/停止命令
- 启动命令:systemctl start mysqld
- 重启命令:systemctl restart mysqld
- 停止命令:systemctl stop mysqld
php-fpm启动/重启/停止命令
- 启动命令:systemctl start php-fpm
- 重启命令:systemctl restart php-fpm
- 停止命令:systemctl stop php-fpm