wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.6.5.tgz
gunzip mongodb-linux-x86_64-3.6.5.tgz
tar -xvf mongodb-linux-x86_64-3.6.5.tar
mv mongodb-linux-x86_64-3.6.5 /usr/local/mongodb
vim mongodb.conf
# idae - MongoDB config start
# 设置数据文件的存放目录(根据实际的db文件夹的路径填写)
dbpath = /usr/local/mongodb/db
# 设置日志文件的存放目录及其日志文件名(根据实际的logs文件夹的路径填写)
logpath = /usr/local/mongodb/logs/mongodb.log
# 设置端口号(默认的端口号是 27017)
port = 27017
# 设置为以守护进程的方式运行,即在后台运行
fork = true
nohttpinterface = true
# idae - MongoDB config end
cd /
mkdir data
cd data
mkdir db
sudo chown -R $USER /data/db
vim .bash_profile
# 配置环境变量
# 末尾添加 export PATH=
export PATH=/usr/local/mongodb/mongodb-linux-x86_64-3.6.5/bin:$PATH
source .bash_profile
./mongod
mongod --bind_ip 私有IP --quiet &
mongo --host 公网IP --port 27017