標籤:style blog http color os 使用 strong 檔案 ar
Centos 下安裝MongoDB
一、安裝方法
方法(一)
1 配置包管理系統
建立/etc/yum.repos.d/mongodb.repo 檔案,當然我們使用的是64位系統,32位的情況不再考慮。檔案內容為:
[mongodb]name=MongoDB Repositorybaseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64/gpgcheck=0enabled=1
2 安裝MongoDB包及關聯工具。
sudo yum install mongodb-org
方法(二)
1 如果安裝指定版本的mongodb,或者安裝到指定目錄下,可以自己手工下載mongodb程式,比如最新版本的mongodb程式為mongodb-linux-x86_64-2.6.4.tgz。
我這裡是先將安裝程式檔案下載到本機,再上傳到伺服器的。命令如下
scp mongodb-linux-x86_64-2.6.4.tar [email protected]:/home/tools
2 解壓程式
tar zxf mongodb-linux-x86_64-2.6.4.tar /home/mongodb/
3 mongodb預設資料庫檔案存放在/data/db下,如果使用預設,必須提前建立此檔案夾,並且擁有寫入的許可權;如果改變資料庫檔案的位置,可使用–dbpath選項指定位置,命令如下 :
mongod --dbpath /home/databases/sdkstat
二、啟動
1 啟動mongodb
sudo service mongod start
2 停止mongodb
sudo service mongod stop
3 重啟mongodb
sudo service mongod restart
官方安裝文檔:Install MongoDB on Red Hat Enterprise, CentOS, Fedora, or Amazon Linux
http://docs.mongodb.org/manual/tutorial/install-mongodb-on-red-hat-centos-or-fedora-linux/
Centos 下安裝MongoDB