centos6.5 nginx开机启动

/etc/init.d/下添加nginxd文件,内容如下:

#!/bin/bash
#
#chkconfig: - 85 15
#description: Nginx is a World Wide Web server.
#processname: nginx  

nginx=/usr/local/nginx/nginx
conf=/usr/local/nginx/nginx.conf

case $1 in
       start)
              echo -n "Starting Nginx"
              $nginx -c $conf
              echo " done"
       ;;  

       stop)
              echo -n "Stopping Nginx"
              killall -9 nginx
              echo " done"
       ;;  

       test)
              $nginx -t -c $conf
       ;;  

        reload)
              echo -n "Reloading Nginx"
              ps auxww | grep nginx | grep master | awk ‘{print $2}‘ | xargs kill -HUP
              echo " done"
       ;;  

        restart)
              $0 stop
              $0 start
       ;;  

       show)
              ps -aux|grep nginx
       ;;  

       *)
              echo -n "Usage: $0 {start|restart|reload|stop|test|show}"
       ;;  

esac

添加执行权限

chmod +x /etc/init.d/nginxd

添加到服务

chkconfig --add nginxd

设置开机启动

chkconfig nginxd on
时间: 2024-10-11 08:57:53

centos6.5 nginx开机启动的相关文章

centos6.5 tomcat开机启动

可参考:centos6.5 nginx开机启动 /etc/init.d/下添加tomcatd文件,内容如下: #!/bin/sh # # chkconfig: - 80 20 # # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for addi

centos6.5 mysql开机启动

可参考:centos6.5 nginx开机启动 /etc/init.d/下添加mysqld文件,内容如下: #!/bin/sh # Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB # This file is public domain and comes with NO WARRANTY of any kind # MySQL daemon start/stop script. # Us

设置nginx开机启动

制作nginx开机启动脚本: vi /etc/init.d/nginx -------------------------------以下是脚本内容-------------------------------------- #! /bin/sh# Default-Start: 2 3 4 5# Default-Stop: 0 1 6# Short-Description: starts the nginx web server PATH=$PATH:/usr/local/nginxDESC="

nginx开机启动

nginx开机启动使用的是编写shell脚本的方式来处理,如下: [[email protected] ~]# vi /etc/init.d/nginx #!/bin/bash # nginx Startup script for the Nginx HTTP Server # it is v.1.11.3 version. # chkconfig: - 85 15 # description: Nginx is a high-performance web and proxy server.

Centos7 Nginx 开机启动

Centos 系统服务脚本目录: 用户(user) 用户登录后才能运行的程序,存在用户(user) /usr/lib/systemd/ 系统(system) 如需要开机没有登陆情况下就能运行的程序,存在系统服务(system)里 /lib/systemd/system/ 服务以.service结尾. vim /lib/systemd/system/nginx.service [Unit] Description=nginx After=network.target [Service] Type=

[转]centos7.2 下 nginx 开机启动

1.在系统服务目录里创建nginx.service文件 vi /lib/systemd/system/nginx.service 内容如下 [Unit] Description=nginx After=network.target [Service] Type=forking ExecStart=/usr/local/nginx/sbin/nginx ExecReload=/usr/local/nginx/sbin/nginx -s reload ExecStop=/usr/local/ngin

ubuntu nginx 开机启动

这里需要特别说明的是,Ubuntu系统下没有RedHat系统下的chkconfig命令.但Ubuntu有一个类似的命令: sysv-rc-conf. 通过apt-get命令完成sysv-rc-conf软件的安装. 背景 Linux系统的运行级别有7个,分别对应的: 0: 关机 1: 单用户(维护) 2~5: 多用户 6: 重启 可以通过runlevel命令来查看当前系统的运行等级: wds@wds-VirtualBox:~$ runlevel N 2 其中第一个表示上一次的运行等级,N表示没有上

Nginx 开机启动

首先,在linux系统的/etc/init.d/目录下创建nginx文件,使用如下命令: vi /etc/init.d/nginx 在脚本中添加如下命令: #!/bin/bash # nginx Startup script for the Nginx HTTP Server # it is v.0.0.2 version. # chkconfig: - 85 15 # description: Nginx is a high-performance web and proxy server.

centos6 centos7 配置开机启动服务

centos 6 :使用chkconfig命令即可. 我们以apache服务为例: #chkconfig --add apache 添加nginx服务 #chkconfig apache on 开机自启nginx服务 #chkconfig apache off 关闭开机自启 #chkconfig --list | grep apache 查看 centos 7 :使用systemctl中的enable.disable 即可.示例: #systemctl enable apache.service