linux(ubuntu)中安装mongodb傻瓜教程

linux(ubuntu)中安装mongodb傻瓜教程

参考官网

https://docs.mongodb.com/manual/administration/install-enterprise/

步骤1. 导入公钥

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6

步骤2.为Mongodb创建list文件

echo "deb [ arch=amd64 ] http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.4.list

步骤3. 加载本地数据包

sudo apt-get update

步骤4.安装

sudo apt-get install -y mongodb-org

步骤5. 启动mongodb服务

sudo service mongod start

步骤6.打开shell

mongo

你可能感兴趣的:(linux(ubuntu)中安装mongodb傻瓜教程)