mongo 可视化管理界面

mongo web可视化管理界面
https://blog.csdn.net/u012318074/article/details/77651767
https://www.cnblogs.com/xiaohuochai/archive/2018/04/11/8794687.html
https://www.jianshu.com/p/437626dafad2

启动linux mongo,访问 http://服务器ip:27017/
https://www.cnblogs.com/pfnie/articles/6759105.html

启动问题
https://www.cnblogs.com/timelesszhuang/p/4324461.html

常用命令:
查看端口占用情况:netstat -tunlp |grep 端口号
lsof -i:8081
防火墙相关:systemctl status firewalld.service
systemctl stop firewalld.service
查看端口号开放情况:/sbin/iptables -L -n
关联启动mongo服务:/mongod --config /usr/local/mongodb/mongodbserver/etc/mongodb.conf
建立软链接,方便直接调用:ln -s /usr/local/mongoDB/mongodbserver/bin/mongo  /usr/bin/mongo

ps:config.js需要作出相应修改,另外,linux中开启mongodb,本地访问时要对应服务器地址,mongo-express同理

猜你喜欢

转载自blog.csdn.net/wxd772113786/article/details/103107658