mongoDB测试错误

发布于 2024-11-27 01:06:37 字数 453 浏览 0 评论 0原文

我开始了解 mongoDB 并寻找测试。所以我安装了它,然后进行测试当我在终端上使用命令 mongo 时,它显示了这样的错误

MongoDB shell version: 1.8.2
connecting to: test
Sun Jul 31 01:06:07 Error: couldn't connect to server 127.0.0.1 shell/mongo.js:79
exception: connect failed

所以有人可以告诉我问题是什么。我正在使用 ubuntu 11.04。For我使用过的安装说明 这个 网站。我是这个 mongoDB 的新手,所以请帮助我。任何帮助都将非常感激。

I came to know about mongoDB and looked for test.So I made it install and then for test when I used command mongo on terminal it showed an error like this

MongoDB shell version: 1.8.2
connecting to: test
Sun Jul 31 01:06:07 Error: couldn't connect to server 127.0.0.1 shell/mongo.js:79
exception: connect failed

So can someone tell me what is the problem.I am using ubuntu 11.04.For installation instruction I had used this site.I am newbie to this mongoDB so please helpe me.Any help will be highly appreciable.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

吃→可爱长大的 2024-12-04 01:06:37

您所需要做的就是打开 2 个终端选项卡。其中之一是运行,

mongod

启动 MongoDB 服务器。

在另一个中,运行

mongo

连接到 MongoDB 服务器的 shell。

All you need to do is open 2 terminal tabs. In one, run

mongod

which starts the MongoDB server.

In the other, run

mongo

which is the shell that connects to your MongoDB server.

只怪假的太真实 2024-12-04 01:06:37

MongoDB 似乎没有运行。您可以在浏览器中连接到网络界面吗?

http://localhost:28017

另外,您是否看到该进程在您的计算机上运行?运行时您应该会看到 mongod 条目...

$ top

或者

$ ps aux

It looks like MongoDB isn't running. Can you connect to the web interface in your browser?

http://localhost:28017

Also, do you see the process running on your machine? You should see an entry for mongod when running ...

$ top

or

$ ps aux
浪荡不羁 2024-12-04 01:06:37

为什么不从 10gen 自己的 debian 存储库安装 mongodb?更容易,更有可能工作

http://www.mongodb.org/显示/DOCS/Ubuntu+and+Debian+packages

要查看 mongodb 是否正在运行,这也有帮助:

sudo service mongodb status

如果它正在运行,并且您仍然遇到相同的错误,那么它一定是 mongodb 的奇怪的 localhost bug 。由于某种原因,它假设 localhost 是 127.0.1.1。尝试

mongo 127.0.1.1

why not install mongodb from 10gen's own debian repository? much easier and more likely to work

http://www.mongodb.org/display/DOCS/Ubuntu+and+Debian+packages

To see if mongodb is running, this also helps:

sudo service mongodb status

if it is running, and you still get the same error, then it must be the weird localhost bug that mongodb has. it assumes localhost is 127.0.1.1 for some reason. try

mongo 127.0.1.1
温柔一刀 2024-12-04 01:06:37

我也有同样的问题。只需尝试创建文件夹 c:\data 和下一个 c:\data\db

I had the same problem. Just try to create folder c:\data and next c:\data\db

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文