TCP版本的nginx编译
1.搭建nginx编译环境:
yum -y install gcc gcc-c++ autoconf automake
yum -y install zlib zlib-devel openssl openssl-devel pcre-devel
2.下载nginx源文件,需要下载1.9.0以上的版本,官方稳定版本为
稳定版本 | nginx-1.10.1 |
参照官方说明,编译参数中添加--with-steam即可
进入到nginx源文件目录下
编译脚本如下:
prefix=/opt/nginx \
--sbin-path=/opt/nginx/sbin/nginx \
--conf-path=/opt/nginx/conf/nginx.conf \
--with-http_stub_status_module \
--with-stream
然后再执行 make && make install即可
4.nginx.conf参数配置如下
stream {
upstream backend {
hash $remote_addr consistent;
#server backend1.example.com:12345 weight=5;
server 192.168.2.121:2565 max_fails=3 fail_timeout=30s;
#server unix:/tmp/backend3;
}
server {
listen 2565;
proxy_connect_timeout 1s;
proxy_timeout 3s;
proxy_pass backend;
}
}
5.检查nginx.conf
./nginx -t
6.启动nginx
./nginx
7.重启nginx
./nginx -s reload
8.终止nginx
kill -9 nginx进程号(有三个)
备注:编译好的版本可从本人上传资源中下载,链接地址:http://download.csdn.net/detail/u012006909/9580156
以上就介绍了 TCP版本的nginx编译,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
上一篇: Python类的用法实例浅析
下一篇: jquery双向列表选择器DIV模拟版
推荐阅读
-
在Mac OS上编译安装Nginx+PHP+MariaDB开发环境的教程
-
CentOS 7.x编译安装Nginx1.10.3+MySQL5.7.16+PHP5.2 5.3 5.4 5.5 5.6 7.0 7.1多版本全能环境
-
nginx基于tcp做负载均衡的方法
-
nginx 0.8.54/1.0.0 在cygwin环境下的编译(包括 nginx_mod_h264_streaming-2.2.7)
-
Linux下查看nginx apache mysql php的编译参数
-
Linux 6下安装编译安装Nginx的步骤
-
nginx 0.8.54/1.0.0 在cygwin环境下的编译(包括 nginx_mod_h264_streaming-2.2.7)
-
在lnmp环境中的nginx编译安装
-
在Nginx服务器中配置针对TCP的负载均衡的方法
-
CentOS下编译安装nginx及配置缩略图插件的方法教程