nginx-stream端口转发

Posted dingwen_blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx-stream端口转发相关的知识,希望对你有一定的参考价值。

stream端口转发

1.问题描述

[!DANGER]

在完成端口转发配置时,出现了nginx unknown directive "stream"错误,配置如下:

stream {   
    upstream redis {
        server 127.0.0.1:6379 max_fails=3 fail_timeout=30s;
    }
    server {
        listen 16379;
        proxy_connect_timeout 1s;
        proxy_timeout 3s;
        proxy_pass redis;
    }

2.原因及解决

[!TIP]

nginx默认安装的时候没有加载stream模块,需要重新对源文件进行编译、安装,通过添加--with-stream参数指定安装stream模块1.编译检查./configure --with-stream2.编译安装make & make install,nginx -t检查配置文件是否正确,nginx -c指定启动的配置文件。

以上是关于nginx-stream端口转发的主要内容,如果未能解决你的问题,请参考以下文章

nginx-stream端口转发

LCX端口转发源码分析

用于端口转发的 libssh2 示例代码

ssh动态端口转发

GO语言实现TCP端口转发代码

GO语言实现TCP端口转发代码