首页 > 代码库 > [Ubuntu] Autostart nginx, php-fpm and mysql in Ubuntu14.04
[Ubuntu] Autostart nginx, php-fpm and mysql in Ubuntu14.04
[nginx]
Step 1
Download the shell script
wget https://raw.github.com/JasonGiedymin/nginx-init-ubuntu/master/nginx -O /etc/init.d/nginx
Step 2
chmod +x /etc/init.d/nginx
Step 3
modify the code marked with red color to your configure
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin DAEMON=/usr/local/nginx/sbin/nginx PS="nginx" PIDNAME="nginx" #lets you do $PS-slave PIDFILE=$PIDNAME.pid #pid file PIDSPATH=/usr/local/nginx/logs #default pid location, you should change it DESCRIPTION="Nginx Server..." RUNAS=root #user to run as SCRIPT_OK=0 #ala error codes SCRIPT_ERROR=1 #ala error codes TRUE=1 #boolean FALSE=0 #boolean lockfile=/var/lock/subsys/nginx NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf"
Step 4
vi /etc/rc.local
add the code
service nginx start
[php-fpm]
Step 1
cp -f (php -5.4.x-source-dir)/sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
Step 2
chmod +x /etc/init.d/php-fpm
Step 3
vi /etc/rc.local
add the code
service php-fpm start
[mysql]
Step 1
cp /path/to/your/mysql/support-files/mysql.server /etc/init.d/mysql
Step 2
vi /etc/rc.local
add the code
service mysql start
Have fun with Ubuntu!
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。