系统信息
[server@MiWiFi-RM1800-srv ~]$ cat /proc/version
Linux version 4.18.0-193.el8.x86_64 (mockbuild@kbuilder.bsys.centos.org) (gcc version 8.3.1 20191121 (Red Hat 8.3.1-5) (GCC)) #1 SMP Fri May 8 10:59:10 UTC 2020
[server@MiWiFi-RM1800-srv ~]$ uname -a
Linux MiWiFi-RM1800-srv 4.18.0-193.el8.x86_64 #1 SMP Fri May 8 10:59:10 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
[server@MiWiFi-RM1800-srv ~]$ cat /etc/centos-release
CentOS Linux release 8.2.2004 (Core)
CentOS8.2,是装在群晖中的一个虚拟机,性能较弱,不过对安装没什么影响
安装MongoDB
这里参照了菜鸟教程的教程
安装Linux平台的依赖包
sudo yum install libcurl openssl
其他发行版参照菜鸟教程给出的指令
下载安装MongoDB
进入官网按照下图找到合适的版本,点击复制链接(此处复制的链接为https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel80-4.4.4.tgz)
进入CentOS终端
wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel80-4.4.4.tgz
tar -zxvf mongodb-linux-x86_64-rhel80-4.4.4.tgz
mv mongodb-linux-x86_64-rhel80-4.4.4 /usr/local/mongodb4
解压的文件名和移动的文件夹名根据实际情况输入
第三条指令的移动目的地(安装路径)可以自定
将安装的MongoDB可执行文件加入PATH路径中
# export PATH=<mongodb-install-directory>/bin:$PATH
export PATH=/usr/local/mongodb4/bin:$PATH
注释中的<mongodb-install-directory>替换为前面的安装路径,如第二行所示
创建数据库目录
默认情况下 MongoDB 启动后会初始化以下两个目录:
- 数据存储目录:/var/lib/mongodb
- 日志文件目录:/var/log/mongodb
这两个目录也可以自定义位置,在后面的启动配置中相应的修改即可
在启动前可以先创建这两个目录并设置当前用户有读写权限:
sudo mkdir -p /var/lib/mongo
sudo mkdir -p /var/log/mongodb
sudo chown `whoami` /var/lib/mongo # 设置权限
sudo chown `whoami` /var/log/mongodb # 设置权限
MongoDB服务的启停
启动MongoDB服务:
mongod --dbpath /var/lib/mongo --logpath /var/log/mongodb/mongod.log --fork
终端中再输入mongo产生如下输出:
[server@MiWiFi-RM1800-srv etc]$ mongod --dbpath /var/lib/mongo --logpath /var/log/mongodb/mongod.log --fork
about to fork child process, waiting until server is ready for connections.
forked process: 40935
child process started successfully, parent exiting
[server@MiWiFi-RM1800-srv etc]$ mongo
MongoDB shell version v4.4.4
connecting to: mongodb://127.0.0.1:27017/?compressors=disabled&gssapiServiceName=mongodb
Implicit session: session { "id" : UUID("38920a68-db56-4f10-a033-c095bca61eae") }
MongoDB server version: 4.4.4
---
The server generated these startup warnings when booting:
2021-02-28T06:10:11.728-05:00: Access control is not enabled for the database. Read and write access to data and configuration is unrestricted
2021-02-28T06:10:11.728-05:00: This server is bound to localhost. Remote systems will be unable to connect to this server. Start the server with --bind_ip <address> to specify which IP addresses it should serve responses from, or with --bind_ip_all to bind to all interfaces. If this behavior is desired, start the server with --bind_ip 127.0.0.1 to disable this warning
2021-02-28T06:10:11.729-05:00: /sys/kernel/mm/transparent_hugepage/enabled is 'always'. We suggest setting it to 'never'
2021-02-28T06:10:11.729-05:00: Soft rlimits too low
2021-02-28T06:10:11.729-05:00: currentValue: 1024
2021-02-28T06:10:11.729-05:00: recommendedMinimum: 64000
---
---
Enable MongoDB's free cloud-based monitoring service, which will then receive and display
metrics about your deployment (disk utilization, CPU, operation statistics, etc).
The monitoring data will be available on a MongoDB website with a unique URL accessible to you
and anyone you share the URL with. MongoDB may use this information to make product
improvements and to suggest MongoDB products and deployment options to you.
To enable free monitoring, run the following command: db.enableFreeMonitoring()
To permanently disable this reminder, run the following command: db.disableFreeMonitoring()
---
>
此时MongoDB已经启动,在浏览器中输入http://localhost:27017产生如下显示:
关闭MongoDB服务:
pkill mongod
上述启动方法需要输入较多的参数,也可以通过配置文件来启动MongoDB服务。进入到刚才安装MongoDB的目录下的bin目录,新建mongodb.conf文件
[server@MiWiFi-RM1800-srv etc]$ pkill mongod
[server@MiWiFi-RM1800-srv etc]$ cd /usr/local/mongodb4
[server@MiWiFi-RM1800-srv mongodb4]$ cd bin
[server@MiWiFi-RM1800-srv bin]$ ls
install_compass mongo mongod mongos
[server@MiWiFi-RM1800-srv bin]$ sudo vim mongodb.conf
在mongodb.conf文件中写入以下内容:
#数据文件存放目录
dbpath = /home/soft/mongodb/mongodb-3.6.7/data/db
#日志文件存放目录
logpath = /home/soft/mongodb/mongodb-3.6.7/logs/mongodb.log
#端口
port = 27017
#以守护进程的方式启用,即后台运行;默认false
fork = true
# 关闭web管理访问,默认关闭27018端口访问,这个是在prot端口上加1000
#httpinterface = true
#是否开启权限验证
auth = true
#绑定ip,让其能够通过外网访问, 0.0.0.0代表所有
bind_ip = 0.0.0.0
保存后,在该目录下输入以下指令即可启动MongoDB服务:
./mongod -f mongodb.conf
# 或者 mongod -f mongodb.conf
由于前面已经将MongoDB可执行文件加入了PATH,所以mongodb.conf可以建立在其他目录下,然后在mongodb.conf所在的目录下输入mongod -f mongodb.conf即可启动MongoDB服务
也可以更进一步的进行编写启动和停止脚本,参考这位博主的教程Mongodb安装和配置
设置外网访问
在上一步编写mongodb.conf配置文件中的 bind_ip 一行已经允许外网进行访问了,只需在路由器中进行相应配置即可,若不配置则只能本机进行访问。如果想限制能够访问的ip以保证安全的话,可以对bing_ip进行进一步配置,参考这位博主的文章MongoDB限制内网访问的方法
也可以在启动mongod的时候加参数mongod --bind_ip_all:
mongod --dbpath ... --logpath ... --bind_ip_all
防火墙设置
但是在完成上述配置后,我在局域网的其他机器仍然无法连接到MongoDB数据库,通过浏览器或者DataGrip均无法连接
经过反复排查,最后找出了问题,原来是CentOS防火墙的锅儿。(感谢CentOS 7防火墙快速开放端口配置方法这位老哥的帮助) 防火墙的一些操作如下:
开启某端口(以80为例)
firewall-cmd --zone=public --add-port=80/tcp --permanent
查询某端口号是否开启(以80为例)
firewall-cmd --query-port=80/tcp
重启防火墙:
firewall-cmd --reload
查询有哪些端口是开启的:
firewall-cmd --list-port
命令含义:
--zone #作用域
--add-port=80/tcp #添加端口,格式为:端口/通讯协议
--permanent #永久生效,没有此参数重启后失效
关闭firewall:
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
按照上述指令进行操作:
[server@MiWiFi-RM1800-srv bin]$ firewall-cmd --query-port=27017/tcp
no
[server@MiWiFi-RM1800-srv bin]$ firewall-cmd --zone=public --add-port=27017/tcp --permanent
success
[server@MiWiFi-RM1800-srv bin]$ firewall-cmd --query-port=27017/tcp
no
[server@MiWiFi-RM1800-srv bin]$ firewall-cmd --list-port
[server@MiWiFi-RM1800-srv bin]$ firewall-cmd --reload
success
[server@MiWiFi-RM1800-srv bin]$ firewall-cmd --query-port=27017/tcp
yes
# 看起来设置完成后需重启防火墙生效
设置好防火墙后局域网其他机器也可以访问了
如果拥有公网IP想进一步能够公网进行访问,那么进入路由器等进行相应的设置即可。