时间:2021-07-01 10:21:17 帮助过:2人阅读
dbpath=/usr/local/mongodb/db
logpath=/usr/local/mongodb/logs/mongodb.log
port=27017
fork=
true
nohttpinterface=
true
重新绑定mongodb的配置文件地址和访问IP/usr/local/mongodb/bin/mongod --bind_ip localhost -f /usr/local/mongodb/bin/mongodb.conf
不设置 --bind_ip 的话默认任何机器都可以访问。
开机自动启动mongodbvi /etc/rc.d/rc.local/usr/local/mongodb/bin/mongod --config /usr/local/mongodb/bin/mongodb.conf重启一下系统测试下能不能自启
#进入mongodb的shell模式 /usr/local/mongodb/bin/mongo
#查看数据库列表 show dbs
#当前db版本 db.version();
新版安装方法见:
Install MongoDB Community Edition on Red Hat Enterprise or CentOS Linux
https://docs.mongodb.com/master/tutorial/install-mongodb-on-red-hat/
[转]centos7 下安装MongoDB
标签: