红联Linux门户
Linux帮助

Ubuntu14.04 LTS下安装mongodb

发布时间:2015-09-06 09:59:58来源:半亩方塘作者:君莫_笑_

添加mongodb签名到APT
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10


创建mongodb-org-3.0.list文件
echo "deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.0.list


更新软件源列表
sudo apt-get update


安装mongodb(默认是安装最新版)
sudo apt-get install -y mongodb-org


安装特定版本的mongodb:
sudo apt-get install -y mongodb-org=3.0.6 mongodb-org-server=3.0.6 mongodb-org-shell=3.0.6 mongodb-org-mongos=3.0.6 mongodb-org-tools=3.0.6


启动mongodb:
sudo service mongod start


停止mongodb:
sudo service mongod stop


重启mongodb
sudo service mongod restart


MongoDB的基本操作:http://www.linuxdiyf.com/linux/13326.html

Ubuntu安装MongoDB:http://www.linuxdiyf.com/linux/1977.html

MongoDB在Linux下常用优化设置:http://www.linuxdiyf.com/linux/12952.html

Linux环境下MongoDB数据库安装指导文档:http://www.linuxdiyf.com/linux/9408.html

Node.js远程连接另一个主机上的MongoDB数据库服务器:http://www.linuxdiyf.com/linux/12492.html