首页 > 数据库技术 > 详细

Install MongoDB on Linux Systems 速记

时间:2014-08-19 12:45:34      阅读:385      评论:0      收藏:0      [点我收藏+]

Download the Latest Release

>> curl -O http://downloads.mongodb.org/linux/mongodb-linux-x86_64-2.4.8.tgz

Extract MongoDB From Archive

>> tar -zxvf mongodb-linux-x86_64-2.4.8.tgz

Optional. Copy MongoDB to Target Directory

>> mkdir -p mongodb
>> cp -R -n mongodb-linux-x86_64-2.4.8/ mongodb

  Optional. Configure Search Path To ensure that the downloaded binaries are in your PATH, you can modify your PATH and/or create symbolic links to the MongoDB binaries in your /usr/local/bin directory (/usr/local/bin is already in your PATH). You can find the MongoDB binaries in the bin/ directory within the archive.   Create mongodb user >> groupadd mongodb >> useradd -g mongodb mongodb   Create dbpath

>> mkdir -p /data/db

>> chown mongodb /data/db Starting mongod without any arguments starts a MongoDB instance that writes data to the /data/db directory. To specify an alternate data directory, start mongod with the--dbpath option: >> mongod --dbpath /data/db   Stop MongoDB   To stop the mongod instance, press Control+C in the terminal where the mongod instance is running   MongoDb web 用户界面 在比MongoDB服务的端口多1000的端口上,你可以访问到MondoDB的web用户界面。 如:如果你的MongoDB运行端口使用默认的27017,你可以在端口号为28017访问web用户界面。   附Mongodb学习教程: http://www.w3cschool.cc/mongodb/mongodb-tutorial.html

 

Install MongoDB on Linux Systems 速记,布布扣,bubuko.com

Install MongoDB on Linux Systems 速记

原文:http://www.cnblogs.com/yjken/p/3921693.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!