Rumah > Artikel > pembangunan bahagian belakang > TCP版本的nginx编译
项目中利于Nginx做Thrift的四层代理,实现了nginx对相关thrift服务的负载均衡,现对使用流程做以下总结。
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教程有兴趣的朋友有所帮助。