注意mongodb的版本,装了很长时间由于版本不对导致一直安装不上。
安装版本:mongodb-linux-x86_64-rhel70-4.2.23.tgz
下载地址:MongoDB Community Download | MongoDB参考下图:
参考安装介绍:
1:(此方法安装未成功)
Yapi+mongodb+nodejs
2:(目前根据这个方式安装)
CentOS7安装MongoDB(3) - 走看看
中间出现的问题:
解决办法:
Failed to unlink socket file /tmp/mongodb-27017.sock Operation not permitted
Failed to unlink socket file /tmp/mongodb-27017.sock Operation not permitted_chongke5244的博客-CSDN博客
MongoDB 安装时账号密码登录设置和配置mongod.cfg参考以下:
使用配置文件配置MongoDB服务器问题_Rowrey的博客-CSDN博客
MongoDB权限验证开启与mongoose数据库配置_@魏大大的博客-CSDN博客_mongodb 验证数据库
注意,此文件需要手动添加
mongod db 指定端口重启:
[root@iZuf633cjxhy2fnwm68wprZ bin]# ./mongo --port 2888
[root@iZuf633cjxhy2fnwm68wprZ bin]# netstat -tunlp | grep mongo
[root@iZuf633cjxhy2fnwm68wprZ bin]# kill -9 16081
[root@iZuf633cjxhy2fnwm68wprZ bin]# netstat -tunlp | grep mongo
[root@iZuf633cjxhy2fnwm68wprZ bin]# ./mongo --port 2888
[root@iZuf633cjxhy2fnwm68wprZ bin]# ./mongod --dbpath /usr/local/mongodb-4.2/data --port 2888
2022-10-21T13:43:04.765+0800 I CONTROL [main] Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'
2022-10-21T13:43:04.768+0800 W ASIO [main] No TransportLayer configured during NetworkInterface startup
2022-10-21T13:43:04.769+0800 I CONTROL [initandlisten] MongoDB starting : pid=22556 port=2888 dbpath=/usr/local/mongodb-4.2/data 64-bit host=iZuf633cjxhy2fnwm68wprZ
2022-10-21T13:43:04.769+0800 I CONTROL [initandlisten] db version v4.2.23
经过几次安装测试,根据以下方法很凑效:
根据以上说明,注意改变端口后的命令操作,以下打开数据库需要加上端口号:
./mongo ##打开数据库
./mongo --port 27027(要加上端口号)
输入全部命令:
[root@iZuf633cjxhy2fnwm68wprZ bin]# ./mongod --dbpath /usr/local/mongodb/db --port 27027
navicate连上后的情况:
navicat连接Mongodb失败:Cannot connect to MongoDB No suitable servers found:…………
停止启动mongo带上配置文件,启动的时候加载了配置文件信息
停止mongo:./mongod --shutdown --dbpath /usr/local/mongodb/db/
启动mongo: ./mongod -f /usr/local/mongodb/mongodb.conf