由于使用代理,手动安装 mongodb 时出现混乱

由于使用代理,手动安装 mongodb 时出现混乱

我被迫mongodb在 Ubuntu 服务器上手动安装,因为机器位于代理后面,无法临时打开端口 11371 进行密钥交换。我正在关注这个官方mongoDB 教程

所以我下载了 tgz 并将其解压/usr/local/bin/mongodb。我感到困惑的是何时将 的所有权分配/data/db给用户mongo

  • 那么谁创建了用户mongo
  • 如何开始control-scripts工作?

答案1

我建议安装官方软件包,它更容易上手。

确保您在终端会话中正确设置了您的http_proxyhttps_proxy再次执行教程中提到的所有操作。

我也位于防火墙后面(需要代理才能访问互联网),一切运行正常。

例子:

export http_proxy="http://username:[email protected]:port/" export https_proxy="http://username:[email protected]:port/"

你也可以使用 apt-get install 来安装 MongoDB

http://docs.mongodb.org/manual/tutorial/install-mongodb-on-ubuntu/

相关内容