为开发网络程序,笔记本上安装了nginx+mysql+php环境,由于不经常用,因此把这几个的启动项去掉了。为了使用方便,做了两个简单的bash文件来打开和关闭这几项服务。
打开网站服务的bash:
#!/bin/sh /etc/init.d/nginx start /etc/init.d/mysql start /etc/init.d/php-fpm start echo "server run!"
关闭网站服务的bash:
#!/bin/sh /etc/init.d/nginx stop /etc/init.d/mysql stop /etc/init.d/php-fpm stop echo "server down!"