Mongodb安装
1. 下载
官网下载地址刷不出来: https://www.mongodb.com/download-center
打开网页源码能找到下载地址:https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.5.13.tgz
2. 解压安装
tar zxvf mongodb-linux-x86_64-3.5.13.tgz
3. 设置环境变量
mv mongodb-linux-x86_64-3.5.13 /xxx/soft/mongodb vim /etc/profile export PATH=/xxx/soft/mongodb/bin:$PATH source /etc/profile
4. 启动
mkdir -p /xxx/data/mongodb mongod --dbpath /xxx/data/mongodb
/usr/bin/nohup mongod --dbpath /abc/data/mongodb > /abc/logs/mongodb/stdout.log 2>&1 &
5. 进入命令行
mongo