热久久国产,天天摸夜夜添狠狠添高潮出水,亚洲精品国偷自产在线99正片,女人高潮叫床污话

mongodb可視化工具(Robomongo) 1.1.1 Robo 3T 官方版

  • 軟件版本:1.1.1 Robo 3T 官方版
  • 軟件授權(quán):免費(fèi)軟件
  • 軟件類(lèi)型:國(guó)產(chǎn)軟件
  • 軟件語(yǔ)言:簡(jiǎn)體中文
  • 應(yīng)用平臺(tái):Win All
  • 更新時(shí)間:2021-12-01
  • 軟件大?。?/span>11.2MB
  • 軟件評(píng)分:
立即下載 11.2MB
軟件介紹
RockMongo是一個(gè)MongoDB管理工具,連接數(shù)據(jù)庫(kù)的時(shí)候,輸入 相應(yīng)的地址用戶(hù)名和密碼就好了。點(diǎn)擊連接。通過(guò) Rockmongo 你可以管理 MongoDB服務(wù),數(shù)據(jù)庫(kù),集合,文檔,索引等等。相似軟件版本說(shuō)明軟件地址PostgreSQL12.3.1 最新版查看輔臣數(shù)據(jù)庫(kù)瀏覽器1.0 綠色免費(fèi)版查看oracle10g3.5 官方版查看SPSS22.0 官方版查看

它提供了非常人性化的操作。類(lèi)似 phpMyAdmin(PHP開(kāi)發(fā)的MySql管理工具)。

安裝需求

一個(gè)能運(yùn)行PHP的Web服務(wù)器,比如Apache Httpd, Nginx ...

PHP - 需要PHP v5.1.6或更高版本,需要支持SESSION

為了能連接MongoDB,你需要安裝php_mongo擴(kuò)展

快速安裝

下載安裝包,快速安裝。

用編輯器打開(kāi)config.php,修改host, port, admins等參數(shù)

在瀏覽器中訪(fǎng)問(wèn)index.php,比如說(shuō):http://localhost/rockmongo/index.php

使用用戶(hù)名和密碼登錄,默認(rèn)為"admin"和"admin"

開(kāi)始玩轉(zhuǎn)MongoDB!

創(chuàng)建數(shù)據(jù)庫(kù)文件的存放位置

在你安裝MongoDB的bin 目錄下打開(kāi)cmd, 輸入:mongod 回車(chē)啟動(dòng)服務(wù)。會(huì)看到: Hotfix KB2731284 or later update is not installed. 以及 C:datadb not found 的字樣。 這就涉及到了兩個(gè)問(wèn)題了。先說(shuō)第2個(gè)。 MongoDB默認(rèn)數(shù)據(jù)庫(kù)文件夾路徑為C:/data/db(注:雖然是默認(rèn),但是需要你自己創(chuàng)建)。但也可以自己設(shè)置默認(rèn)路徑,比如d:/test/data/db。啟動(dòng)mongodb服務(wù)之前必須創(chuàng)建數(shù)據(jù)庫(kù)文件的存放文件夾,否則不能啟動(dòng)成功。使用系統(tǒng)默認(rèn)文件夾路徑時(shí),啟動(dòng)服務(wù)無(wú)需加 --dbpath 參數(shù)說(shuō)明。如果不是默認(rèn)路徑,則啟動(dòng)服務(wù)格式有如下兩種: (1)mongod --dbpath 存放的路徑。如:mongod --dbpath d:testdata 【注:路徑不能包含空格,否則使用第2種】 (2)mongod --dbpath "存放的路徑" 。如 mongod --dbpath "d:my textdata"

Robomongo連接遠(yuǎn)程mongodb服務(wù)

備份還原數(shù)據(jù)庫(kù)

備份

mondump -o ./ #導(dǎo)出到當(dāng)前路徑

恢復(fù)

mongorestore /home/zhangy/mongodb/ #這里的路徑是所有庫(kù)的備份路徑

Robomongo is now Robo 3T, with support for MongoDB 3.4, new data type NumberDecimal (Decimal128) and ECMAScript 2015 (ES6)

In this release, we have some fundamental changes such as MongoDB 3.4 support, new data type NumberDecimal support and ECMAScript 2015 (ES6) support. Fix for popular shell timeout problem (and shell timeout is configurable on UI now). Stability improvement: Fix to prevent an on-launch crash on macOS Sierra. Security improvement: OpenSSL upgraded to version openssl-1.0.1u (22-Sep-2016). Tool chain upgrades: Modern C++14 features are enabled and usable by developers.

robomongo 怎么導(dǎo)出數(shù)據(jù)

數(shù)據(jù)導(dǎo)出:先舉個(gè)例子作為切入口:

需求:

將test數(shù)據(jù)庫(kù)下的things集合中的所有文檔導(dǎo)出到D:mongo_data路徑下

D:mongobin>mongoexport -d test -c things -o d:mongo_datathings.txt

cmd控制臺(tái)返回導(dǎo)出的相關(guān)信息,如下所示

connected to: 127.0.0.1

exported 15 records

檢驗(yàn)一下:

去D:mongo_data找一下是否存在things.txt文件

打開(kāi)D:mongo_datathings.txt顯示如下:

{ "_id" : 3 }

{ "_id" : { "$oid" : "528ec3042e2ec9f2c3cd55de" }, "x" : 6, "y" : 0 }

{ "_id" : { "$oid" : "528ec3042e2ec9f2c3cd55df" }, "x" : 6, "y" : 1 }

{ "_id" : { "$oid" : "528ec3042e2ec9f2c3cd55e0" }, "x" : 6, "y" : 2 }

{ "_id" : { "$oid" : "528ec3042e2ec9f2c3cd55e1" }, "x" : 6, "y" : 3 }

{

"_id" : { "$oid" : "528ec3042e2ec9f2c3cd55e2" }, "add" : [ { "age" :

21, "name" : "jimvin" }, { "age" : 22, "name" : "jimvin" }, { "age" :

23, "name" : "jimvin" }, { "age" : 23, "name" : "jimvin" } ], "x" : 6,

"y" : 4 }

{ &qu緝伐光和叱古癸汰含咯ot;_id" : { "$oid" : "528ec3042e2ec9f2c3cd55e3" }, "num" : 55, "x" : 6, "y" : 5 }

{ "_id" : { "$oid" : "528ec3042e2ec9f2c3cd55e4" }, "age" : null, "num" : null, "......余下全文>>

;x" : 6, "y" : 6 }

{ "_id" : { "$oid" : "528ec3042e2ec9f2c3cd55e5" }, "add" : [ "jimvin", "abc", "aaa" ], "num" : "abc", "x" : 6, "y" : 7 }

{ "_id" : { "$oid" : "528ec3042e2ec9f2c3cd55e6" }, "age" : [ 7, 9 ], "name" : "jimvin", "num" : 20, "x" : 6, "y" : 8 }

{ "_id" : { "$oid" : "528ec3042e2ec9f2c3cd55e7" }, "age" : [ 7, 8, 9 ], "name" : "tom", "x" : 10, "y" : 9 }

{ "_id" : { "$oid" : "5296e6d68378a9afba69af46" }, "add" : { "age" : 20, "name" : "jimvin" }, "name" : "jim", "num" : 10 }

{ "_id" : { "$oid" : "529eab9552bf5eb74acdb35b" }, "name" : "person1", "addr" : { "city" : "a", "state" : "d" } }

{ "_id" : { "$oid" : "529eaba252bf5eb74acdb35c" }, "name" : "person1", "addr" : { "city" : "b", "state" : "c" } }

{ "_id" : { "$oid" : "529eabc352bf5eb74acdb35d" }, "name" : "person1", "addr" : { "city" : "a", "state" : "e" } }

從例子我們基本都能猜出 mongoexport的命令用法,下面我們?cè)僭敿?xì)分析一下:

* mongoexport --db

簡(jiǎn)寫(xiě) mongoexport -d

指定要導(dǎo)出集合所在的數(shù)據(jù)庫(kù)

eg:

D:mongobin>mongoexport --db test

或 D:mongobin>mongoexport -d test

或 D:mongobin>mongoexport -db test

注意: