1. Download Rockmongo
: Http://rockmongo.com/downloads
Unzip the downloaded compressed package rockmongo-1.1.5.zip to the Web publishing directory (I use Apache here, the Publish directory can refer to the DocumentRoot item in httpd.conf)
2. Download MongoDB extension
: Https://github.com/mongodb/mongo-php-driver/downloads
Here is the version I downloaded:
Unzip the downloaded zip file, copy the Php_mongo.dll file under the following directory to the ext file in the PHP installation directory, I am C:\php5\ext here.
3. Modify the php.ini file
Add Extension=php_mongo.dll in the php.ini file
4. Restart Apache
5. Modify the files in the Rockmongo config.php
$MONGO ["Servers"] [$i] ["mongo_name"] = "192.168.112.128";//mongo server name
$MONGO ["Servers"] [$i] ["mongo_host"] = "192.168.112.128";//mongo host
Modify the Mongo_name and mongo_host as above to the host name and IP address of the current database
6. Login to MongoDB using Rockmongo
Run index.php prompt for the following interface
The user name and password here are the default admin
7. After login, the interface is as follows
--The End--
How to install Rockmongo (GUI for MongoDB)