阿里云CentOS 6.5安装配置LNMP服务器(Nginx+PHP+MySQL)
环境操作命令总结
1、Nginx启动: service nginx start重启: service nginx restart
2、Mysql启动: /etc/init.d/mysqld start
停止: /etc/init.d/mysqld stop
重启: /etc/init.d/mysqld restart
3、php启动: /etc/init.d/php-fpm start
重启: /etc/init.d/php-fpm restart
注:设置开机自启:
chkconfig mysqld on #设置mysql开机启动
chkconfig nginx on #设置nginx开机启动
chkconfig php-fpm on #设置php-fpm开机启动