MongoDB GUI Tool: Rock Mongo
Since we have been working lately with mongo I started looking for tools for administration and management of mongo additional to the CLI client. Looking around I've found this nice GUI tool for managing MongoDB called RockMongo . If you don't have php installed you may need to install it and add the mongo plugin for php: #Install PHP yum install php php-devel php-pear #Install the CPP compiler yum install gcc #Install the mongo extension on PHP pecl install mongo Then you need to enable php on your apache server. Edit the httpd.conf file Below the following lines: AddType application/x-compress .Z AddType application/x-gzip .gz .tgz Add: AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps Then enable the mongo extension. Edit the php.ini file On section Dynamic Extensions add the following line: extension=mongo.so Now enable the Apache server to user network connections to the database: setsebool h...