MongoDB 安裝及使用

來源:互聯網
上載者:User

標籤:http   os   io   使用   java   ar   for   檔案   資料   

一.MongoDB 服務端安裝,命令列語句

1.去官網下載最新mongodb安裝包,解壓--剪貼移動--重新命名
cd /tmp
curl -O http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.6.4.tgz
tar zxf mongodb-linux-x86_64-2.6.4.tgz
mv mongodb-linux-x86_64-2.6.4 /usr/local/mongoDB

2.安裝--建立資料檔案夾---記錄檔和檔案夾
cd /usr/local/mongoDB

mkdir data

mkdir logs

cd logs
touch db.log

cd ../bin

./mongod --dbpath=/usr/local/mongoDB/data --logpath=/usr/local/mongoDB/logs/db.log --fork


3.編輯設定檔,加入開機啟動
vim /etc/rc.local

/usr/local/mongoDB/bin/mongod --dbpath=/usr/local/mongoDB/data --logpath=/usr/local/mongoDB/logs/db.log --fork

4.開啟mongodb 終端
/usr/local/mongoDB/bin/mongo

查看資料庫 show dbs

選擇或建立資料庫 use test

建立一個user表 db.user

插入資料 db.user.save({"a":1,"b":2});

尋找所用資料 db.user.find();

查看錶 show tables | show collections

刪除資料庫 db.dropDatabase();(*先進入資料庫,要有分號‘;’)

刪除表 db.cccc.drop(); (同上!)


二.MongoDB PHP 擴充安裝

1.選擇適當版本的mongoDB --http://pecl.php.net/package/mongo

cd /tmp
curl -O http://pecl.php.net/get/mongo-1.4.1.tgz
tar zxf mongo-1.4.1.tgz
cd mongo-1.4.1/

2.編譯 --需要知道phpize 和php-config 路勁
whereis phpize
whereis php-config

/usr/bin/phpize

ls

./configure --with-php-config=/usr/bin/php-config

make && make install

cd /usr/lib64/php/modules

ls

vim /etc/php.ini

extension = mongo.so

重啟httpd

三.PHP 操作 MongoDB

$conn=new Mongo();//最簡單的串連
$db = $conn->test;//選擇或者建立test資料庫
$collection = $db->user;//選擇表

//新增
//$obj = array( "title" => "java".rand(1,1111), "author" => "Bill Watterson","age"=>mt_rand(1,100));
//$collection->insert($obj);
//echo $obj[‘_id‘].‘<br>‘;

 

//刪除集合
//$collection->remove();

//修改
//$where = array(‘author‘=>‘Bill Watterson‘);
//$newdata = array(‘$set‘ =>array(‘title‘=>‘ngix1111‘));
//$upsert = array(‘upsert‘=>false); //不存在修改的資料時,預設false是否插入這條資料
//$multi = array(‘multiple‘=>true); //是否修改所有匹配的記錄,預設false只修改一條
//$collection->update($where,$newdata,$multi);

//查詢
//$collection->count();//總數

//注:$gt為大於、$gte為大於等於、$lt為小於、$lte為小於等於、$ne為不等於、$exists不存在
//$where = array(‘age‘=>array(‘$gt‘=>10,‘$lte‘=>40));
//echo $collection->count($where);

$query = array(‘age‘=>array(‘$gt‘=>60)); //查詢條件
$fields = array(‘_id‘=>false,‘author‘=>false);//顯示欄位
//$cursor = $collection->find();//獲得所有記錄
$cursor = $collection->find($query,$fields);

//排序
//$cursor->sort(array(‘age‘=>-1));//(-1倒序,1正序)
//只顯示部分記錄
//$cursor->limit(4);//只顯示100行

//foreach遍曆
foreach ($cursor as $key=>$value) {
echo "<pre>";
print_r($value);
echo "</pre>";
}

//while遍曆
/*
while($cursor->hasNext()){
$r = $cursor->getNext();
echo "<pre>";
print_r($r);
echo "</pre>";
}
*/

//$array= iterator_to_array($cursor);//數組鍵名是$id
$conn->close();

 

MongoDB 安裝及使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.