文章目錄
-
-
- 1、檢視原nginx編譯參數
- 2、添加stream子產品進行重新編譯
- 3、進行make操作
- 4、配置nginx的tcp代理
- 5、 測試連接配接目标端口
-
1、檢視原nginx編譯參數
# 進入安裝的sbin目錄
[[email protected] sbin]# nginx -V |grep with-stream
nginx version: nginx/1.13.4
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-16) (GCC)
built with OpenSSL 1.0.2k-fips 26 Jan 2017
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx --user=www --group=www --with-http_ssl_module --with-pcre=/usr/local/src/pcre-8.41
2、添加stream子產品進行重新編譯
# 此處nginx源碼目錄為:/usr/local/src/nginx-1.13.4,即為編譯指令執行目錄。
./configure --prefix=/usr/local/nginx --user=www --group=www --with-http_ssl_module --with-http_gzip_static_module --with-pcre=/usr/local/src/pcre-8.41 --with-stream
3、進行make操作
- make:原有nginx進行操作
#備份原有nginx二進制檔案。
cp /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx-no-strem
#複制新編譯好的nginx二進制檔案。從此處nginx源碼目錄為:/usr/local/nginx-1.13.4。即為編譯指令執行目錄。
cp ./objs/nginx /usr/local/nginx/sbin/nginx
# 重新開機
./nginx -s reload
nginx -V |grep with-stream
# 字尾出現--with-stream
- make && make install:新搭建nginx操作,執行make install指令會将原有nginx目錄進行覆寫
#備份原有nginx二進制檔案。
cp /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx-no-strem
#複制新編譯好的nginx二進制檔案。從此處nginx源碼目錄為:/usr/local/nginx-1.13.4。即為編譯指令執行目錄。
cp /usr/jun/nginx/sbin/nginx /usr/local/nginx/sbin/nginx
# 重新開機
./nginx -s reload
nginx -V |grep with-stream
# 字尾出現--with-stream
4、配置nginx的tcp代理
# 配置檔案 nginx.conf
http{...
}
stream {
upstream dubbo_server {
server 127.0.0.1:20880 weight=5;
}
server {
listen 2181;
proxy_responses 1;
proxy_timeout 20s;
proxy_pass dubbo_server ;
}
}
# 重新開機
./nginx -s reload
5、 測試連接配接目标端口
[[email protected] ~]# telnet x.x.x.x 2181
Trying x.x.x.x...
Connected to x.x.x.x.
Escape character is '^]'.
Nginx進行TCP/UDP端口轉發
編譯nginx平滑添加stream子產品