目录
一、安装mongoDB安装包
二、配置
三、启动服务端
四、启动客户端
五、关闭服务端
六、关闭客户端
1. cd /usr/local
2. mkdir mongodb
3. cd mongodb
4.上传MongoDB
5. tar -zxvf mongodb-linux-x86_64-4.0.7.tgz
6. cd mongodb-linux-x86_64-4.0.7
7. mkdir -p logs datas
8. chmod 777 /usr/local/mongodb/mongodb-linux-x86_64-4.0.7
二、配置
1. cd bin
2. vim mongodb.conf
## 数据目录
dbpath = /usr/local//mongodb/mongodb-linux-x86_64-4.0.7/datas
## 日志文件
logpath =/usr/local//mongodb/mongodb-linux-x86_64-4.0.7/logs/mongodb.log
## 端口号:默认27017
port = 27017
## 后台启动
fork = true
## 可外网访问
bind_ip=0.0.0.0
三、启动服务端
1. ./mongod --config mongodb.conf
2. ./mongod -f mongodb.conf
运行 ./mongod --config mongodb.conf
提示错误Error reading config file: No such file or directory
找不到文件。
原因:bin下没有这个文件
解决方案: 在bin目录下创建一个mongodb.conf
四、启动客户端
1. ./mongo
五、关闭服务端
1. ps -ef | grep mongodb
2. kill 进程号
六、关闭客户端
1. exit
防火墙开启
1、开启端口27017
firewall-cmd --zone=public --add-port=27017/tcp --permanent
2、重启防火墙
firewall-cmd --reload
查看已经开放的端口:
firewall-cmd --list-ports