centos下apache、nginx、mysql、php-fpm启动停止重启

在centos下我们操作命令行后,
需要进行启动、停止或重启等操作。
下面记录一下便于以后自己使用。

centos7之后的命令:

apache

systemctl start httpd    // 启动
systemctl stop httpd    // 停止
systemctl restart httpd    // 重启

mysql

systemctl start mysqld    // 启动
systemctl stop mysqld    // 停止
systemctl restart mysqld    // 重启

php-fpm

systemctl start php-fpm    // 启动
systemctl stop php-fpm    // 停止
systemctl restart php-fpm    // 重启

nginx

systemctl start nginx    // 启动
systemctl stop nginx    // 停止
systemctl restart nginx    // 重启

centos7之前的命令:

以上程序:xxx

service xxx start    // 启动
service xxx stop    // 停止
service xxx restart    // 重启

冯奎博客

冯奎博客
请先登录后发表评论
  • latest comments
  • 总共0条评论