学习笔记 > apache等命令
更新时间:2021年04月01日
Centos7重启apache、mysql、php-fpm及nginx命令
1、apache常用的命令
启动
systemctl start httpd
停止
systemctl stop httpd
重启
systemctl restart httpd
2、mysql常用的命令
启动
systemctl start mysqld
停止
systemctl stop mysqld
重启
systemctl restart mysqld
3、php-fpm常用的命令
启动
systemctl start php-fpm
停止
systemctl stop php-fpm
重启
systemctl restart php-fpm
4、nginx常用的命令
启动
systemctl start nginx
停止
systemctl stop nginx
重启
systemctl restart nginx
总结:以上几个命令在操作centos7系统时可能经常需要用到,为此来简单整理下,注意只适用于centos7及以上版本。