Linux下安装MongoDB
下载安装包
下载地址:https://www.mongodb.com/download-center/community
curl -O https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-4.2.5.tgz
实验步骤
解压MongoDB
tar -zxvf mongodb-linux-x86_64-rhel70-4.2.5.tgz -C /usr/local/
把下面的配置加到环境变量中,进入profile配置文件目录,使用了这条配置下面的启动命令前面是不用加./ 的 如mongodb服务的启动命令 mongod -f mongodb.conf
[root@localhost ~]# vi /etc/profile
把这条复制到profile配置文件中 注意目录要对应安装的目录
export PATH=/usr/local/mongodb-linux-x86_64-rhel70-4.2.5/bin:$PATH
使修改生效
[root@localhost ~]# source /etc/profile
创建MongoDB数据存储位置
mkdir /home/data
创建MongoDB日志存储位置
mkdir /home/log
mongodb 的默认的配置文件在mongodb-linux-x86_64-rhel70-4.2.5目录下
进入mongodb-linux-x86_64-rhel70-4.2.5目录下编辑mongodb的配置文件
[root@localhost bin]# cd /usr/local/mongodb-linux-x86_64-rhel70-4.2.5/
[root@service mongodb-linux-x86_64-rhel70-4.2.5]# vi mongodb.conf
配置文件如下
# mongodb 配置文件port
=27017 #端口bind_ip
=0.0.0.0 #默认是127.0.0.1dbpath
=/home/data #数据库存放logpath
=/home/log/mongodb.log #日志文件fork
=true #设置后台运行#auth
=true #开启认证
注意:查看数据库存放目录和存放日志目录是否存在,不存在启动服务是报错的!
启动mongod数据库服务,以配置文件的方式启动
[root@service mongodb-linux-x86_64-rhel70-4.2.5]# ./mongod -f mongodb.conf
或者 mongod -f mongodb.conf
查进程
[root@localhost bin]# ps -aux|grep mongod
启动成功效果图
查看MongoDB 的日志记录
[root@localhost ~]# mongod --dbpath /home/data
客户端连接MongoDB
[root@localhost ~]# ./mongo 或者mongo
指定ip和端口 或者
[root@service ~]# mongo mongodb://localhost:27017
配置防火墙
# 放行 27017 端口号 使用默认的
firewall-cmd --zone=public --add-port=27017/tcp --permanent
# 查看放行端口号
firewall-cmd --list-ports
# 重启防火墙
firewall-cmd --reload
浏览器输入本机ip地址测试
如有不足的地方请多多指教哈,不清楚地方下方留言哦,歇歇来访问!
以上是 Linux下安装MongoDB 的全部内容, 来源链接: utcz.com/z/533377.html