windows下监控mongoDB数据库
我这边的 mongoDB是安装在Linux下的,但是linux的root密码忘记啦,是N个月前离职的一个小伙安装的linux,但是可以通过客户端MongoVU来操作里面的数据(增删改查),mongoDB默认的监控命令和一些第三方工具也不能使用(登录不到主机)。为了性能测试的方便,今天特意花了一些时间来搜索mongoDB监控方面的资料,功夫不负有心人,终于被我找到了一个在线监控的web工具,10gen发布的MongoDB监控系统MMS(http://www.10gen.com/),需要注册后登录进来,要使用IE7以上的版本来打开URL;还要安装python环境。
下面就说说这个配置:
1、注册一个用户和添加一个group:通过这个网址:https://mms.10gen.com/user/register?c=CORPBLOG
2、安装一个python,在我的另一个博客中有介绍: http://www.cnblogs.com/zhuque/archive/2013/03/28/2986471.html
3、安装python的3个程序包: easy_install simplejson==2.1.0 hmac hashlib,还要安装pymongo:easy_install pymongo
Installation
Install Python (2.4+) and pymongo (1.9+)在windows下安装hmac和hashlib可能还有错误:
error: Python was built with Visual Studio 2003;extensions must be built with a compiler than can generate compatible binaries.
Visual Studio 2003 was not found on this system. If you have Cygwin installed,
you can try compiling with MingW32, by passing "-c mingw32" to setup.py.
4、 安装MMS-agent,下载地址:https://mms.10gen.com/settings/mmsAgent/e627473921b8a15f8f6e248b21b2bf44/10gen-mms-agent-groupnet.zip
这个地址好像也是,没有试过:https://mms.10gen.com/settings/10gen-mms-agent.zip
下载后直接解压后:D:\My Documents\Downloads\10gen-mms-agent-groupnet\mms-agent
然后执行:
标签:安装,windows,mongoDB,数据库,agent,监控,com,gen From: https://www.cnblogs.com/zhuque/p/2986736.html