Program Tip

라이브 MongoDB 데이터를 검색하거나 쿼리하려면 어떻게해야합니까?

programtip 2020. 10. 12. 08:07
반응형

라이브 MongoDB 데이터를 검색하거나 쿼리하려면 어떻게해야합니까?


주변을 검색했지만 작동하는 MongoDB 뷰어 또는 데이터 브라우저를 찾을 수 없습니다.

이상적인 (내 필요에 맞는) 도구는 죽은 간단한 기능 (검색 및 쿼리 수행)을 갖춘 웹 기반 뷰어입니다.


당신은 :


참조 : http://nosql.mypopescu.com/post/334469038/a-couple-of-nice-gui-tools-for-mongodb 새로운 도구를 사용할 수있을 때 자주 업데이트되기를 바랍니다!


편집하다:

더 나은 개요 : http://www.mongodb.org/display/DOCS/Admin+UIs

방금 MongoVUE를 시도했는데 매력처럼 작동합니다! 확인 : http://www.mongovue.com/


MongoHub가 기본 mac 버전으로 이동되었습니다 . http://github.com/bububa/MongoHub-Mac을 확인하세요 .


징 기스 앱 은 당신이 원하는 것입니다.

깨끗하고 가볍고 직관적이며 키보드 단축키를 제공하며 훌륭하게 작동하는 웹 기반 GUI입니다. 또한 GridFS.

무엇보다도 단일 스크립트입니다!


검색

json 편집기


그것을 설치하려면

$ gem install genghisapp bson_ext

( bson_ext선택 사항이지만 GUI의 성능을 크게 향상시킬 것입니다)


실행하려면 (자동으로 웹 브라우저가 열리고 앱으로 이동합니다)

genghisapp

그것을 중지하려면

genghisapp --kill

https://github.com/Imaginea/mViewer

나는 이것을 시도했고 뷰어로서 그것은 트리 및 문서보기로 굉장합니다.


방금 Rock_Mongo를 테스트 하고 있습니다.

PHP로 작성된 멋진 도구입니다.


MogoVue 는 지금까지 찾은 최고의 옵션이며 다른 뷰어에서는 볼 수 없었던 훌륭한 기능을 제공하며 json, 테이블 및 계층과 같은 데이터를 볼 수있는 옵션이 거의 없어 매우 유용합니다.

MongoExplorer를 피하십시오. 큰 문제가있어 큰 골칫거리가 될 수 있습니다. 이 도구를 사용하여 레코드를 볼 때 MongoId의 필드를 플레인 문자열로 변경할 수 있으며 이에 대한 표시를 제공하지 않으며 id 필드에 초점을 맞출 때만 수행합니다.이 버그를 찾는 데 많은 시간과 노력이 들었습니다. "내 코드에서 내가이 어리석은 일을하고있는 것"...



MongoDB 의 내장 된 Http 인터페이스 가 정확히 요구하는 것은 아니지만 간단한 쿼리를 수행 할 수있는 REST 인터페이스를 사용할 수 있으며 지원합니다. 이것은 포트 28017의 기본값으로 mongo 인스턴스 에 내장되어 있습니다.


As well as those mentioned by shingara, there's also:


Just pushed mongoclikker to GitHub. It's a dead simple MongoDB viewer written in Node.


There a lot of UIs on official mongo site http://www.mongodb.org/display/DOCS/Admin+UIs


To add to the list :)

I just made a simple Mongo browser based on a hierarchical JQueryTreeview and implemented in Sinatra and Ruby.

The reason for another viewer was that I wanted something that was fast and easy (both to use and the code base), that would let me peek at what was going on my MongoDB. Also, I wanted some nice Ajax effects. and could be the base of a more complete browser.

https://github.com/tomjoro/mongo_browser


I just released a simple web-based data viewer called Mongs. It isn't a server admin GUI, it's focused on data browsing, which sounds like what you're interested in. Mongs is implemented in Python using the Aspen web framework.


JMongo is nice db viewer using on fedora linux


I started work on small project: https://github.com/lucassus/mongo_browser It's a mongodb browser based on ruby's sinatra framework.


here is the better tool for sql as well as No-Sql viewer and also you can query in gui mode with this tool.


"RoboMongo" is easy to use and cross platform, using on centos 6.2 but no option for data import/export which can be found in "umongo" but not easy to use as RoboMongo.


  • For web: genghis is simple and have much more fashion interface. 징 기스

  • For desktop: robomongo: Shell-centric cross-platform MongoDB management tool 로보 몬고


버전 0.8.3에서 Robomongo를 사용하여 다중 삽입 문서를 구현했습니다 . 자세한 내용은 https://github.com/paralect/robomongo/issues/173을 참조 하십시오 . Robomongo에는 mongodb-shell이 ​​내장되어있어 유용하게 사용할 수 있습니다.


나는 MongoDB Compass. 유효한 정보를 입력하여 커뮤니티 에디션을 다운로드 할 수 있습니다.

참고 URL : https://stackoverflow.com/questions/2411087/how-can-i-browse-or-query-live-mongodb-data

반응형