MongoDB tutoria...login
MongoDB tutorial
author:php.cn  update time:2022-04-21 17:49:03

MongoDB management tools


RockMongo is a MongoDB management tool written in PHP5.

With Rockmongo you can manage MongoDB services, databases, collections, documents, indexes and more.

It provides very user-friendly operation. Similar to phpMyAdmin (MySql management tool developed by PHP).

Rockmongo Download address: http://rockmongo.com/downloadsRockmongo 管理工具


Introduction

Main features:

  • Use the loose New BSD License agreement

  • Fast speed and simple installation

  • Supports multiple languages ​​(currently available in Chinese, English, and Japanese , Brazilian Portuguese, French, German, Russian, Italian)

  • System

    • Can configure multiple hosts, each The host can have multiple administrators

    • An administrator password is required to log in to ensure the security of the database

  • Server

    • Server information (WEB server, PHP, PHP.ini related commands...)

    • Status

    • Database information

  • Database

    • ##Query, create and delete

    • Execute commands and Javascript code

    • Statistical information

    ##Collection (equivalent to table)
    • Powerful query tool
    • Read data, write data, change data, copy data, delete data
    • Query, create and delete indexes
    • Clear data
    • Delete and change data in batches
    • Statistics
    • ##GridFS
  • ##View chunks
    • Download File

    • Installation
Requirements

A web server that can run PHP, such as Apache Httpd , Nginx...

  • PHP - Requires PHP v5.1.6 or higher, needs to support SESSION

  • in order to connect MongoDB, you need to install the php_mongo extension
    • Quick installation

Download the installation package

  • Extract to your website directory

  • Open config.php with an editor, modify host, port, admins and other parameters

  • Browse Access index.php in the server, for example: http://localhost/rockmongo/index.php

  • Log in with user name and password, the default is "admin" and "admin"

  • Start playing with MongoDB!

Reference article: http://rockmongo.com/wiki/introduction?lang=zh_cn

php.cn