欢迎各位兄弟 发布技术文章
这里的技术是共享的
使用centos7操作系统,如果安装的是LAMP环境,那么在后台操作时,可能经常需要重启apache、mysql、php-fpm及nginx。那么对应的命令有哪些,本文idcspy.com简单汇总下,以便更好的设置。
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系统时可能经常需要用到,为此来简单整理下,注意只适用于centos7及以上版本。
来自 https://jingyan.baidu.com/article/4b07be3c1af2e908b380f3a9.html