centos 6.5 安裝mongodb2.6,centosmongodb2.6

來源:互聯網
上載者:User

centos 6.5 安裝mongodb2.6,centosmongodb2.6

前言:

系統版本:Centos-6.5-x86_64

  *** Centos編譯安裝mongodb 2.6 系統最好是64位的,才能更好發揮mongodb的效能


1.準備,下載源檔案(二進位編譯版)

[root@centos ~]# wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.6.1.tgz

[root@centos ~]# tar -zvxf mongodb-linux-x86_64-2.6.1.tgz

[root@centos ~]# mv mongodb-linux-x86_64-2.6.1 usr/local/mongo/mongodb

下面配置path環境變數,確保mongodb的bin目錄包含在path環境變數中。

2  配置PATH

[root@centos ~]# vim /etc/profile

  添加下面的內容:

  #set for mongodb
  export MONGODB_HOME=/usr/local/mongo/mongodb
  export PATH=$MONGODB_HOME/bin:$PATH

  儲存退出

驗證環境變數是否生效

  [root@centos ~]# mongod -version

3 .建立儲存資料及日誌的目錄

  3.1建立目錄

  [root@centos ~]# mkdir -p /data/mongodb/journal

  [root@centos ~]# mkdir -p /data/mongodb/log

  3.2建立記錄檔

  [root@centos ~]# touch /data/mongodb/log/mongodb.log

  3.3建立設定檔

  [root@centos ~]# vim /etc/mongodb.conf

  輸入以下內容,儲存並退
dbpath=/data/mongodb
logpath=/data/mongodb/log/mongodb.log
logappend=true
port=27017
fork=true
noauth=true
nojournal = true
smallfiles = true
noprealloc = true

4.重啟後,運行mongod服務

  [root@centos ~]# mongod -f /etc/mongodb.conf

 

5.測試服務是否正常

  5.1開啟另一個終端,並以管理員身份進入管理後台

  [root@centos ~]#mongo admin

  >show dbs;

#切換/建立資料庫(當建立一個集合(table)的時候會自動建立當前資料庫)
use admin;
#增加使用者 
db.addUser("zhoulf ","123456",true)
#更改密碼(為已經存在的使用者更改密碼) 
db.addUser("zhoulf "," zhoulf "); 
#顯示當前db狀態 
db.stats();
#當前db版本 
db.version();
#刪除當前使用資料庫 
db.dropDatabase();
#查看當前db的連結機器地址 
db.getMongo();
#簡單插入資料 
db.user.insert({"fname":"zhoulf", "company":"navinfo"})
#迴圈插入資料 
for (var i = 1; i <= 10; i++) db.user.save({ "fname" : "zhoulf"+i, "company" : "navinfo"+i });
#查詢資料 
db.user.find()


著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.