0. 环境
操作系统: Ubuntu 22.04.1 LTS (GNU/Linux 5.19.0-41-generic x86_64)
不同版本系统差异不同,其他版本系统未测试。
1.1 下载安装包
下载地址:https://www.mongodb.com/try/download/community
根据你自己的系统选择要下载的安装包
1.2 上传到服务器
1.3 解压
sudo tar -zxvf mongodb-linux-x86_64-ubuntu2204-6.0.6.tgz -C /opt/module
解压目录自己定
1.4 改个名方便后续操作
sudo mv mongodb-linux-x86_64-ubuntu2204-6.0.6 mongodb
1.5 配置环境变量
路径别忘了改成你自己的
echo 'export PATH=/opt/module/mongodb/bin:$PATH' | sudo tee -a /etc/profile.d/mongodb.sh
使环境变量生效
source /etc/profile.d/mongodb.sh
1.6 创建数据目录
sudo mkdir -p /opt/module/mongodb_data
赋予 mongod 用户所有者权限
sudo chown `id -u mongodb` /opt/module/mongodb_data
启动
0.0.0.0 表示所有pi均可连接
mongod --bind_ip 0.0.0.0 --dbpath /opt/module/mongodb_data