[轉]centos7 下安裝MongoDB

查看MongoDB的最新版官方下載地址:linux

https://www.mongodb.com/download-center#communitymongodb

使用wget命令下載安裝包shell

wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-3.2.6.tgz數據庫

 

 

 
tar zxvf mongodb-linux-x86_64-3.2.6.tgzmv mongodb-linux-x86_64-3.2.6.tgz mongodb
cd mongodb
mkdir db
mkdir logs
cd bin
vi mongodb.conf
 
添加配置文件
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 Linuxspa

https://docs.mongodb.com/master/tutorial/install-mongodb-on-red-hat/code

相關文章
相關標籤/搜索