gpt4 book ai didi

mongodb - 如何在 Nginx 反向代理后面设置 MongoDB

转载 作者:IT老高 更新时间:2023-10-28 13:08:57 24 4
gpt4 key购买 nike

我正在尝试将 Nginx 设置为访问 MongoDB 数据库的反向代理。默认情况下,Mongo 监听 27017 端口。我想要做的是通过 nginx 重定向主机名,例如 mongodb.mysite.com 并将其传递给 mongodb 服务器。这样,从外部网络我将关闭我已知的 27017 端口,并像我给出的示例一样从隐藏的 url 访问我的数据库。

所以我正在尝试使用此配置设置 Nginx:

server {
listen 80;
server_name mongo.mysite.com;
gzip off;

location / {
proxy_pass http://127.0.0.1:27017;
proxy_redirect off;
proxy_buffering off;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
}
}

因此,在完成此操作后,我尝试使用命令 mongo mongo.mysite.com:80 从我的 cmd 连接 mongo shell,我得到以下错误:

2015-08-06T13:44:32.670+0300 I NETWORK  recv(): message len 1347703880 is invalid. Min 16 Max: 48000000
2015-08-06T13:44:32.670+0300 I NETWORK DBClientCursor::init call() failed
2015-08-06T13:44:32.674+0300 E QUERY Error: DBClientBase::findN: transport error: mongo.therminate.com:80 ns: admin.$cmd query: { whatsmyuri: 1 }
at connect (src/mongo/shell/mongo.js:181:14)
at (connect):1:6 at src/mongo/shell/mongo.js:181
exception: connect failed

在 Nginx 访问日志中我也得到了这个:

94.66.184.128 - - [06/Aug/2015:10:44:32 +0000] "<\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xD4\x07\x00\x00\x00\x00\x00\x00admin.$cmd\x00\x00\x00\x00\x00\x01\x00\x00\x00\x15\x00\x00\x00\x10whatsmyuri\x00\x01\x00\x00\x00\x00" 400 172 "-" "-"

有没有人知道,这里出了什么问题?谢谢!

最佳答案

你是对的,你需要通过在你的 .conf 文件中添加一个流部分来使用 NGINX 的流模块:

stream {
server {
listen <your incoming Mongo TCP port>;
proxy_connect_timeout 1s;
proxy_timeout 3s;
proxy_pass stream_mongo_backend;
}

upstream stream_mongo_backend {
server <localhost:your local Mongo TCP port>;
}
}

关于mongodb - 如何在 Nginx 反向代理后面设置 MongoDB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31853755/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com