千家信息网

mongodb自带web性能监控

发表于:2025-01-20 作者:千家信息网编辑
千家信息网最后更新 2025年01月20日,mongodb自带一个web界面监控。配置比较简单,只需要在启动时候加参数:--httpinterface 或者将httpinterface=true写到配置文件中 重启。在浏览器中输入:ip:mon
千家信息网最后更新 2025年01月20日mongodb自带web性能监控

mongodb自带一个web界面监控。
配置比较简单,只需要在启动时候加参数:--httpinterface 或者将httpinterface=true写到配置文件中 重启。在浏览器中输入:ip:mongodb端口号+1000 比如说数据库端口为20011 则监控页面为:ip:21011
/export/mongodb/bin/mongod -f /export/mongodb/conf/mongod.conf --httpinterface

还可以加一个--rest参数。能够看到更多参数
/export/mongodb/bin/mongod -f /export/mongodb/conf/mongod.conf --httpinterface --rest

0