문제

Is there any replacment for mongo.exe? I test few available GUI environment for Mongo, unfortunately none allow executing command directly.

Is there any better tools for entering mongodb queries, that at least support Unicode characters and have a multi line editing environment? (even as simple as Notepad)

I tried PowerShell ISE, but it halt after invoking mongo.exe.

도움이 되었습니까?

해결책

I found:

  • Robomongo — is a shell-centric cross-platform open source MongoDB management tool (i.e. Admin GUI). Robomongo embeds the same JavaScript engine that powers MongoDB's mongo shell. Everything you can write in mongo shell — you can write in Robomongo!
  • a PhpStorm plugin that provides a good unicode Monogo shell. https://github.com/dboissier/mongo4idea/

다른 팁

If you want to try out a web based tool, take a look at MongoLab. Other than hosting services, they provides a simple GUI interface to manage your DBs.

You can always just start python, import the pymongo driver, and run commands from there. Another benefit is that you could import more complicated python scripts you have already written and saved as .py files.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top