把Nginx加入系统服务 service nginx (start | stop | restart | reload)
vim /etc/init.d/nginx
1 #!/bin/bash
2 # nginx Startup script for the Nginx HTTP Server
3 # it is v.0.0.2 version.
4 # chkconfig: 2345 30 30
5 # description: Nginx is a high-performance web and proxy server.
6 # It has a lot of features, but it's not for everyone.
7 # processname: nginx
8 # pidfile: /usr/local/nginx/logs/nginx.pid
9 # config: /usr/local/nginx/conf/nginx.conf
10
11 #nginx程序路径
12 nginxd=/usr/local/nginx/sbin/nginx
13
14 #nginx配置文件路径
15 nginx_config=/usr/local/nginx/conf/nginx.conf
16
17 #nginx pid文件的路径,可以在nginx的配置文件中找到
18 nginx_pid=/usr/local/nginx/logs/nginx.pid
19 RETVAL=0
20 prog="nginx"
21 # Source function library.
22 . /etc/rc.d/init.d/functions
23 # Source networking configuration.
24 . /etc/sysconfig/network
25 # Check that networking is up.
26 [ ${NETWORKING} = "no" ] && exit 0
27 [ -x $nginxd ] || exit 0
28 # Start nginx daemons functions.
29 start() {
30 if [ -e $nginx_pid ];then
31 echo "nginx already running...."
32 exit 1
33 fi
34 echo -n $"Starting $prog: "
35 daemon $nginxd -c ${nginx_config}
36 RETVAL=$?
37 echo
38 [ $RETVAL = 0 ] && touch /var/lock/subsys/nginx
39 return $RETVAL
40 }
41 # Stop nginx daemons functions.
42 stop() {
43 echo -n $"Stopping $prog: "
44 killproc $nginxd
45 RETVAL=$?
46 echo
47 [ $RETVAL = 0 ] && rm -f /var/lock/subsys/nginx /usr/local/nginx/logs/nginx.pid
48 }
49 # reload nginx service functions.
50 reload() {
51 echo -n $"Reloading $prog: "
52 #kill -HUP `cat ${nginx_pid}`
53 killproc $nginxd -HUP
54 RETVAL=$?
55 echo
56 }
57 # See how we were called.
58 case "$1" in
59 start)
60 start
61 ;;
62 stop)
63 stop
64 ;;
65 reload)
66 reload
67 ;;
68 restart)
69 stop
70 start
71 ;;
72 status)
73 status $prog
74 RETVAL=$?
75 ;;
76 *)
77 echo $"Usage: $prog {start|stop|restart|reload|status|help}"
78 exit 1
79 esac
80 exit $RETVAL
chkconfig --add nginx
chkconfig nginx on
把Nginx加入系统服务 service nginx (start | stop | restart | reload)的更多相关文章
- 添加nginx为系统服务(service nginx start/stop/restart)
1.在/etc/init.d/目录下编写脚本,名为nginx #!/bin/sh # # nginx - this script starts and stops the nginx daemon # ...
- nginx使用“sudo service nginx start”启动报错解决方案
下载nginx的启动脚本: # wget -O init-deb.sh http://library.linode.com/assets/660-init-deb.sh 将脚本添加到init.d目录和 ...
- 把Nginx加为系统服务(service nginx start/stop/restart)
1.编写脚本,名为nginx #!/bin/sh # # nginx - this script starts and stops the nginx daemon # # chkconfig: - ...
- ubuntu设置nginx为系统服务
ubuntu设置nginx为系统服务,如果没有设置为系统服务,无法执行 sudo service nginx startsudo service nginx stop 设置为系统服务命令 sudo u ...
- RHEL/CentOS 7中Nginx的systemd service
源码安装的nginx ,没有systemd service 管理 nginx 下面教程,告诉你如何设置nginx 的systemd service nginx systemd的服务文件是/usr/li ...
- Linux(CentOS6.5)下Nginx注册系统服务(启动、停止、重启、重载等)&设置开机自启
本文地址http://comexchan.cnblogs.com/ ,作者Comex Chan,尊重知识产权,转载请注明出处,谢谢! 完成了Nginx的编译安装后,仅仅是能支持Nginx最基本的功能, ...
- windows系统下将nginx作为系统服务启动
1. 准备工作 下载安装nginx,并记住安装目录 官网下载 下载winsw,下载地址 2. winsw设置 将winsw可执行程序复制到nginx安装目录下,并重命名为nginx-service 新 ...
- 添加Nginx为系统服务(设置开机启动)
在本节中,我们将创建一个脚本,将Nginx守护进程转换为实际的系统服务. 这有两个作用:守护程序可以使用标准命令控制,更重要的是,它可以在系统启动时自动启动,并在系统关闭时停止. System V s ...
- 添加nginx服务到service的过程
Linux命令service - 系统服务管理(转) 用途说明 service命令用于对系统服务进行管理,比如启动(start).停止(stop).重启(restart).查看状态(status)等. ...
随机推荐
- HP SimpleXML
PHP SimpleXML PHP SimpleXML 处理最普通的 XML 任务,其余的任务则交由其它扩展处理. 什么是 PHP SimpleXML? SimpleXML 是 PHP 5 中的新特性 ...
- VS2013打包与部署
近期做一个配置工具,完事了想打包一下:由于用的是VS2013:与之前的略有不同,简单的做了一下,在这里分享一下,直接看吧: 首先 是自己新建一个项目 ,我的WPF应用程序 第二步:右键解决方案添加新 ...
- 武汉科技大学ACM :1008: 华科版C语言程序设计教程(第二版)习题6.14
Problem Description 输入一个八进制的字符串,将它转换成等价的十进制字符串,用pringf的%s格式输出. Input 首先输入一个正整数t,表示有t组测试数据(1<= t & ...
- c++模板类被继承时他的成员不能被子类看到
c++模板类被继承时他的成员不能被子类看到,必须用限定的符号 this->foo 或者 baseclass::foo,或者using bassclass::foo. msvc不提示错误,gcc ...
- 利用js得到某个范围内的整数随机数
Math.random()方法可以返回(0,1)之间的随机数,不包括0和1. 套用公式:Math.floor(Math.random()*可能的值的总数+第一个可能的值) 如得到(3,9]之间的随机数 ...
- scss组件定制的一些学习
应组织上的要求,简化前端开发,提高工作效率,开始着手研究scss框架及组件化. 把一些长的像的弄在一起,就有了组件化. 但组件只用一部分需要的,就有了定制. 下面是参考一个button组件写出的一些简 ...
- 【HDOJ】1104 Remainder
bfs. #include <cstdio> #include <cstring> #include <cstdlib> #include <queue> ...
- 牛逼的 弹出层 layer !!!
功能强大,实用,操作方便,文档齐全. http://layer.layui.com/api.html 常用功能代码: <!doctype html> <html> <he ...
- BZOJ3400: [Usaco2009 Mar]Cow Frisbee Team 奶牛沙盘队
3400: [Usaco2009 Mar]Cow Frisbee Team 奶牛沙盘队 Time Limit: 3 Sec Memory Limit: 128 MBSubmit: 89 Solve ...
- Effective C++笔记(一)——条款26-29
条款26:尽可能延后变量定义式的出现时间 为何要尽量延后? 当程序中途跳出而导致变量未被使用,但是必须进行构造和析构. 最佳初始化变量 直接在构造时指定初值比构造之后再赋值效率高(条款4) ... s ...