可视化管理MongoDB文档和集合 [英] Visually managing MongoDB documents and collections

查看:114
本文介绍了可视化管理MongoDB文档和集合的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在报告系统中使用MongoDB,必须删除一大堆测试文档.尽管我使用基于JSON的命令行工具并没有太多麻烦,但必须不断搜索文档,复制粘贴OID等(尤其是 命令提示符窗口(是否曾经尝试过标记"包裹多行的文本?)

I'm using MongoDB in a reporting system and have to delete a whole bunch of test documents. While I don't have too much trouble using the JSON-based command-line tools, it gets extremely tedious to have to keep searching for documents, copy-and-pasting OIDs, etc., especially from a command prompt window (ever tried to "mark" text that wraps multiple lines?)

如何在合适的窗口(不是命令提示符)中直观地检查数据库和集合,执行一些简单的CRUD任务并管理多个脚本?

How can I visually inspect the databases and collections, perform some simple CRUD tasks and manage multiple scripts in a proper window (not a command prompt)?

推荐答案

以下是一些流行的MongoDB GUI管理工具:

Here are some popular MongoDB GUI administration tools:

  • dbKoda -具有自动完成功能,语法突出显示和代码的跨平台,选项卡式编辑器格式设置(加上自动保存功能,Studio 3T不支持此功能),可视化工具(解释计划,实时性能仪表板,查询和聚合管道生成器),性能分析管理器,存储分析器,索引顾问,将MongoDB命令转换为Node. js语法等.缺少就地文档编辑和切换主题的功能.

  • dbKoda - cross-platform, tabbed editor with auto-complete, syntax highlighting and code formatting (plus auto-save, something Studio 3T doesn't support), visual tools (explain plan, real-time performance dashboard, query and aggregation pipeline builder), profiling manager, storage analyzer, index advisor, convert MongoDB commands to Node.js syntax etc. Lacks in-place document editing and the ability to switch themes.

Nosqlclient -多个shell输出选项卡,自动完成,模式分析器,索引管理,用户/角色管理,实时监控和其他功能.基于Electron/Meteor.js,在GitHub上积极开发 .

Nosqlclient - multiple shell output tabs, autocomplete, schema analyzer, index management, user/role management, live monitoring, and other features. Electron/Meteor.js-based, actively developed on GitHub.

adminMongo -基于Web的应用程序或Electron应用程序.支持服务器监视和文档编辑.

adminMongo - web-based or Electron app. Supports server monitoring and document editing.

  • NoSQLBooster 功能齐全的以外壳为中心的跨平台GUI工具,用于MongoDB v2.2-4.免费,个人和商业版本(功能比较矩阵).
  • MongoDB指南针 –提供了图形用户界面,可让您直观地查看架构并执行针对数据库的临时find查询-全部对MongoDB的查询语言了解为零.由MongoDB,Inc.开发.没有update查询或无法访问外壳. /li>
  • Studio 3T(以前为MongoChef) –适用于MongoDB的多平台就地数据浏览器和编辑器桌面GUI(核心版本对于个人和非商业用途是免费的). 最后一次提交:2017年7月24日
  • 机器人3T –由Studio 3T收购.以外壳为中心的跨平台开源MongoDB管理工具.仅与Shell相关的功能,例如多个shell和结果,自动完成.没有提及导出/导入或其他功能. 最后一次提交:2017年7月4日

  • NoSQLBooster – full-featured shell-centric cross-platform GUI tool for MongoDB v2.2-4. Free, Personal, and Commercial editions (feature comparison matrix).
  • MongoDB Compass – provides a graphical user interface that allows you to visualize your schema and perform ad-hoc find queries against the database – all with zero knowledge of MongoDB's query language. Developed by MongoDB, Inc. No update queries or access to the shell.
  • Studio 3T, formerly MongoChef – a multi-platform in-place data browser and editor desktop GUI for MongoDB (Core version is free for personal and non-commercial use). Last commit: 2017-Jul-24
  • Robo 3T – acquired by Studio 3T. A shell-centric cross-platform open source MongoDB management tool. Shell-related features only, e.g. multiple shells and results, autocomplete. No export/ import or other features are mentioned. Last commit: 2017-Jul-04

HumongouS.io –具有CRUD功能,图表构建器和某些功能的基于Web的界面协作能力.试用期为14天.

HumongouS.io – web-based interface with CRUD features, a chart builder and some collaboration capabilities. 14-day trial.

  • RockMongo –一个用PHP5编写的MongoDB管理工具.据说是PHP世界中最好的.类似于PHPMyAdmin. 最后版本:2015年9月19日
  • Fang of Mongo –使用Django和jQuery构建的基于Web的UI. 最后一次提交:2012年1月26日,在一个分叉的项目中.
  • Opricot –一个用PHP编写的基于浏览器的MongoDB shell. 最新版本:2010年9月21日
  • Futon4Mongo MongoVUE – Windows的优雅GUI桌面应用程序. 免费和非免费版本. 最新版本:2014年-1月20日
  • UMongo –适用于Linux,Windows,Mac的功能全面的开源MongoDB服务器管理工​​具;用Java编写. 最后一次提交2014年6月
  • Mongo3 –用于集群管理的基于Ruby/Sinatra的界面. 最后一次提交:2013年4月16日
  • RockMongo – a MongoDB administration tool, written in PHP5. Allegedly the best in the PHP world. Similar to PHPMyAdmin. Last version: 2015-Sept-19
  • Fang of Mongo – a web-based UI built with Django and jQuery. Last commit: 2012-Jan-26, in a forked project.
  • Opricot – a browser-based MongoDB shell written in PHP. Latest version: 2010-Sep-21
  • Futon4Mongo – a clone of the CouchDB Futon web interface for MongoDB. Last commit: 2010-Oct-09
  • MongoVUE – an elegant GUI desktop application for Windows. Free and non-free versions. Latest version: 2014-Jan-20
  • UMongo – a full-featured open-source MongoDB server administration tool for Linux, Windows, Mac; written in Java. Last commit 2014-June
  • Mongo3 – a Ruby/Sinatra-based interface for cluster management. Last commit: Apr 16, 2013

这篇关于可视化管理MongoDB文档和集合的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆