Mac[M1]安装mongodb5.0.7

本文使用.tgz文件安装&配置,mongodb版本5.0.7。

1. 下载压缩包

mongodb官网下载
下载community版本

2. 解压下载的文件

双击或使用命令

tar -zxvf mongodb-macos-x86_64-5.0.7.tgz

将解压后的文件放到合适的地方

本例存放路径:/Users/konrad/install-soft/mongodb-macos-x86_64-5.0.7

3. 创建软链接

使用命令:sudo ln -s 解压文件路径/bin/*空格/usr/local/bin

sudo ln -s /Users/konrad/install-soft/mongodb-macos-x86_64-5.0.7/bin/* /usr/local/bin

4. 创建文件夹

4.1 创建数据文件夹

在mongodb-macos-x86_64-5.0.7文件夹内创建mongodb

cd /Users/konrad/install-soft/mongodb-macos-x86_64-5.0.7
sudo mkdir -p mongodb

4.2 创建日志文件夹

sudo mkdir -p log

4.3 设置文件夹权限

使用命令:sudo chown 用户名 文件夹路径

sudo chown konrad /Users/konrad/install-soft/mongodb-macos-x86_64-5.0.7/mongodb
sudo chown konrad /Users/konrad/install-soft/mongodb-macos-x86_64-5.0.7/log

获取当前用户名命令whoami

5. 运行MongoDB

5.1 方法1:命令行参数运行

使用命令:mongod --dbpath 数据文件夹路径 --logpath 日志文件夹路径/mongo.log --fork

 mongod --dbpath /Users/konrad/install-soft/mongodb-macos-x86_64-5.0.7/mongodb --logpath /Users/konrad/install-soft/mongodb-macos-x86_64-5.0.7/log/mongo.log 

5.2 方法2:配置文件参数运行

在mongodb-macos-x86_64-5.0.7文件夹内创建config文件夹,在其中创建mongod.conf文件

可以使用vscode等文本编辑器进行编辑&创建

在文件中写入如下配置信息,配置信息为yaml格式

processManagement:
   fork: true
net:
   bindIp: localhost
   port: 27017
storage:
  # 此处为数据文件夹地址
   dbPath: /Users/konrad/install-soft/mongodb-macos-x86_64-5.0.7/mongodb
systemLog:
   destination: file
   # 此处为日志文件夹中mongod.log日志地址
   path: "/Users/konrad/install-soft/mongodb-macos-x86_64-5.0.7/log/mongod.log"
   logAppend: true
storage:
   journal:
      enabled: true

使用命令:mongod --config 配置文件路径

mongod --config /Users/konrad/install-soft/mongodb-macos-x86_64-5.0.7/config/mongod.conf 

6. 验证MongoDB是否运行成功

执行命令

ps aux | grep -v grep | grep mongod

执行完命令之后终端显示mongod的进程信息


关闭数据库服务方法:使用mongo命令进入mongodb命令行,执行如下命令:
use admin
db.shutdownServer()

7. 使用mongodb

执行命令

mongo

显示如下,即安装&配置成功!


你可能感兴趣的:(Mac[M1]安装mongodb5.0.7)