整理篇之《Centos7下MongoDB的安装步骤,启动及关闭》

环境:本机windows,虚拟机Centos7,mongodb版本3.4.10

1. 官网下载安装介质:https://www.mongodb.com/download-center,选择适当的版本,这里以linux版本为例; 

2. 解压到系统某路径, tar -xvzf mongodb-linux-x86_64-rhel70-3.4.10.tgz,并在安装目录创建data目录,以及logs目录和logs/mongodb.log文件 
3. 使用vim在mongodb的bin目录创建mongodb的配置文件:vim bin/mongodb.conf
4. 编写shell脚本,命名为start-mongodb.sh,脚本: nohup ./mongod -f mongodb.conf & 
5. 给文件start-mongodb.sh赋权限:chmod 777 start-mongodb.sh
6. 使用start-mongodb.sh启动mongodb实例,如:./start-mongodb 
7. 连接mongodb数据库:./mongo localhost:27022
8. 使用mongoClient进行测试,通过restAPI地址测试(端口加1000) http://IP:28022/
9. 查看mongodb的进程:ps -aux | grep mongo

10. 关闭mongodb:db.shutdownServer({force : true})

配置文件(mongodb.conf)

storage:
   dbPath: "/usr/local/apache/mongoDB/mongodb-linux-x86_64-rhel70-3.4.10/data"
systemLog:
   destination: file
   path: "/usr/local/apache/mongoDB/mongodb-linux-x86_64-rhel70-3.4.10/logs/mongodb.log"
net:
   port: 27022
   http:
      RESTInterfaceEnabled: true
processManagement:
   fork: false
参数解释:
-dbPath:数据存储路径 
systemLog path日志文件存储路径 
net port mongodb端口 
http RESTInterfaceEnabled:true开启RESTAPI接口(正常情况下不用开启,需要占用一定的性能)

备注:
如果本机连不上虚拟机mongodb,有可能是虚拟机防火墙没有关闭,关闭防火墙命令如下:systemctl stop firewalld

你可能感兴趣的:(资源整理)