【资料整理】编译安装nginx

简介:

【nginx】编译安装nginx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
nginx编译安装
 
要安装passenger模块,因此,需编译安装。
 
[root@test1 download] # yum install pcre pcre-devel
 
[root@test1 download] # wget http://nginx.org/download/nginx-1.6.2.tar.gz
[root@test1 download] # tar zxvf nginx-1.6.2.tar.gz && cd nginx-1.6.2
 
[root@test1 download] # ./configure --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-mail --with-mail_ssl_module --with-file-aio --with-ipv6 --with-http_spdy_module --with-cc-opt='-O2 -g -pipe -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic' --with-pcre=/tmp/passenger.hfmv10/pcre-8.34 --add-module=/usr/lib/ruby/gems/1.8/gems/passenger-4.0.41/ext/nginx
 
[root@test1 nginx-1.6.2] # make && make install
[root@test1 nginx-1.6.2] # cd /etc/nginx
拷贝原来的nginx配置文件:
[root@test1 nginx] # cp -a /data/svr/nginx/conf/nginx.conf .
[root@test1 nginx] # cp -a /data/svr/nginx/conf/conf.d/ .
 
创建目录:
[root@test1 nginx] # mkdir -p /var/cache/nginx/{client_temp,proxy_temp,fastcgi_temp,uwsgi_temp,scgi_temp}
 
停止原来nginx
[root@test1 nginx] # /data/svr/nginx/sbin/nginx -s stop
取消 /etc/rc . local 下nginx启动命令
 
启用新的nginx
[root@test1 nginx] # service nginx start
 
 
nginx控制脚本:
[root@test1 nginx] # cat /etc/init.d/nginx 
#!/bin/sh
#
# nginx        Startup script for nginx
#
# chkconfig: - 85 15
# processname: nginx
# config: /etc/nginx/nginx.conf
# config: /etc/sysconfig/nginx
# pidfile: /var/run/nginx.pid
# description: nginx is an HTTP and reverse proxy server
#
### BEGIN INIT INFO
# Provides: nginx
# Required-Start: $local_fs $remote_fs $network
# Required-Stop: $local_fs $remote_fs $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: start and stop nginx
### END INIT INFO
 
# Source function library.
/etc/rc .d /init .d /functions
 
if  [ -L $0 ];  then
     initscript=` /bin/readlink  -f $0`
else
     initscript=$0
fi
 
sysconfig=` /bin/basename  $initscript`
 
if  [ -f  /etc/sysconfig/ $sysconfig ];  then
     /etc/sysconfig/ $sysconfig
fi
 
nginx=${NGINX- /usr/sbin/nginx }
prog=` /bin/basename  $nginx`
conffile=${CONFFILE- /etc/nginx/nginx .conf}
lockfile=${LOCKFILE- /var/lock/subsys/nginx }
pidfile=${PIDFILE- /var/run/nginx .pid}
SLEEPMSEC=${SLEEPMSEC-200000}
UPGRADEWAITLOOPS=${UPGRADEWAITLOOPS-5}
RETVAL=0
 
start() {
     echo  -n $ "Starting $prog: "
 
     daemon --pidfile=${pidfile} ${nginx} -c ${conffile}
     RETVAL=$?
     echo
     [ $RETVAL = 0 ] &&  touch  ${lockfile}
     return  $RETVAL
}
 
stop() {
     echo  -n $ "Stopping $prog: "
     killproc -p ${pidfile} ${prog}
     RETVAL=$?
     echo
     [ $RETVAL = 0 ] &&  rm  -f ${lockfile} ${pidfile}
}
 
reload() {
     echo  -n $ "Reloading $prog: "
     killproc -p ${pidfile} ${prog} -HUP
     RETVAL=$?
     echo
}
 
upgrade() {
     oldbinpidfile=${pidfile}.oldbin
 
     configtest -q ||  return
     echo  -n $ "Starting new master $prog: "
     killproc -p ${pidfile} ${prog} -USR2
     echo
 
     for  in  ` /usr/bin/seq  $UPGRADEWAITLOOPS`;  do
         /bin/usleep  $SLEEPMSEC
         if  [ -f ${oldbinpidfile} -a -f ${pidfile} ];  then
             echo  -n $ "Graceful shutdown of old $prog: "
             killproc -p ${oldbinpidfile} ${prog} -QUIT
             RETVAL=$?
             echo
             return
         fi
     done
 
     echo  $ "Upgrade failed!"
     RETVAL=1
}
 
configtest() {
     if  "$#"  - ne  0 ] ;  then
         case  "$1"  in
             -q)
                 FLAG=$1
                 ;;
             *)
                 ;;
         esac
         shift
     fi
     ${nginx} -t -c ${conffile} $FLAG
     RETVAL=$?
     return  $RETVAL
}
 
rh_status() {
     status -p ${pidfile} ${nginx}
}
 
# See how we were called.
case  "$1"  in
     start)
         rh_status > /dev/null  2>&1 &&  exit  0
         start
         ;;
     stop)
         stop
         ;;
     status)
         rh_status
         RETVAL=$?
         ;;
     restart)
         configtest -q ||  exit  $RETVAL
         stop
         start
         ;;
     upgrade)
         rh_status > /dev/null  2>&1 ||  exit  0
         upgrade
         ;;
     condrestart|try-restart)
         if  rh_status > /dev/null  2>&1;  then
             stop
             start
         fi
         ;;
     force-reload|reload)
         reload
         ;;
     configtest)
         configtest
         ;;
     *)
         echo  $ "Usage: $prog {start|stop|restart|condrestart|try-restart|force-reload|upgrade|reload|status|help|configtest}"
         RETVAL=2
esac
 
exit  $RETVAL



本文转自 pcnk 51CTO博客,原文链接:http://blog.51cto.com/nosmoking/1595620,如需转载请自行联系原作者
相关文章
|
2月前
|
应用服务中间件 网络安全 nginx
轻松上手Nginx Proxy Manager:安装、配置与实战
Nginx Proxy Manager (NPM) 是一款基于 Nginx 的反向代理管理工具,提供直观的 Web 界面,方便用户配置和管理反向代理、SSL 证书等。本文档介绍了 NPM 的安装步骤,包括 Docker 和 Docker Compose 的安装、Docker Compose 文件的创建与配置、启动服务、访问 Web 管理界面、基本使用方法以及如何申请和配置 SSL 证书,帮助用户快速上手 NPM。
403 1
|
3月前
|
负载均衡 应用服务中间件 Linux
nginx学习,看这一篇就够了:下载、安装。使用:正向代理、反向代理、负载均衡。常用命令和配置文件,很全
这篇博客文章详细介绍了Nginx的下载、安装、配置以及使用,包括正向代理、反向代理、负载均衡、动静分离等高级功能,并通过具体实例讲解了如何进行配置。
199 4
nginx学习,看这一篇就够了:下载、安装。使用:正向代理、反向代理、负载均衡。常用命令和配置文件,很全
|
3月前
|
tengine 关系型数据库 MySQL
Tengine、Nginx安装MySQL数据库命令教程
本指南详细介绍了在Linux系统上安装与配置MySQL数据库的步骤。首先通过下载并安装MySQL社区版本,接着启动MySQL服务,使用`systemctl start mysqld.service`命令。若启动失败,可尝试使用`sudo /etc/init.d/mysqld start`。利用`systemctl status mysqld.service`检查MySQL的服务状态,确保其处于运行中。通过日志文件获取初始密码,使用该密码登录数据库,并按要求更改初始密码以增强安全性。随后创建一个名为`tengine`的数据库,最后验证数据库创建是否成功以及完成整个设置流程。
|
3月前
|
tengine 应用服务中间件 Linux
Tengine、Nginx安装PHP命令教程
要在阿里云Linux上安装PHP,请先更新YUM源并启用PHP 8.0仓库,然后安装PHP及相关扩展。通过`php -v`命令验证安装成功后,需修改Nginx配置文件以支持PHP,并重启服务。最后,创建`phpinfo.php`文件测试安装是否成功。对于CentOS系统,还需安装EPEL源和Remi仓库,其余步骤类似。完成上述操作后,可通过浏览器访问`http://IP地址/phpinfo.php`测试安装结果。
|
3月前
|
应用服务中间件 Linux nginx
Mac os 安装 nginx 教程(success)
这篇文章是关于如何在Mac OS系统上使用Homebrew安装nginx及其依赖,并解决安装过程中可能出现的权限问题。
281 0
Mac os 安装 nginx 教程(success)
|
4月前
|
应用服务中间件 nginx Docker
Docker镜像-基于DockerFile制作编译版nginx镜像
这篇文章介绍了如何基于Dockerfile制作一个编译版的nginx镜像,并提供了详细的步骤和命令。
636 17
Docker镜像-基于DockerFile制作编译版nginx镜像
|
3月前
|
Ubuntu 搜索推荐 应用服务中间件
Nginx安装与使用
Nginx安装与使用
|
3月前
|
负载均衡 算法 应用服务中间件
Nginx安装及配置详解
Nginx安装及配置详解
|
3月前
|
应用服务中间件 程序员 开发工具
mac下安装nginx
mac下安装nginx
|
3月前
|
应用服务中间件 Linux nginx
CentOS7安装Nginx
CentOS7安装Nginx