久久久色AV,亚洲好吊色,91一二三区,3D大奶大鸡吧,九九热在线观看,欧美99一区二区,人妻丝袜一区,三级字幕成人网,日韩国产尤物喷水

找軟件用軟件,就到華軍軟件園!

您好,如有軟件收錄需求,請(qǐng)將軟件打包,并附上軟件名稱、軟件介紹、軟件相關(guān)截圖、軟件icon、軟著、營業(yè)執(zhí)照(個(gè)人沒有營業(yè)執(zhí)照請(qǐng)?zhí)峁?duì)應(yīng)的開發(fā)者身份證正反面以及手持身份證本人照片),發(fā)送至郵箱

https://user.onlinedown.net/login

掃碼添加企業(yè)微信

如有產(chǎn)品建議或問題反饋,歡迎告訴我們,您的意見是我們進(jìn)步的動(dòng)力!

掃碼添加官方公眾號(hào)

mongodb可視化工具(Robomongo)

mongodb可視化工具(Robomongo)

1.1.1 Robo 3T 官方版 華軍軟件園
二維碼
軟件大?。?/span>11.2MB
軟件語言:簡(jiǎn)體中文
下載次數(shù):0次
更新時(shí)間:2024-12-30
軟件版本:1.1.1 Robo 3T 官方版
軟件分類:數(shù)據(jù)庫類
軟件類型:國產(chǎn)軟件
運(yùn)行環(huán)境:Win All
軟件授權(quán):免費(fèi)軟件
殺毒檢測(cè):
無插件 360通過 金山通過
軟件評(píng)分:

軟件介紹 相關(guān)專題 常見問題 下載地址

為您推薦:- mongodb

基本簡(jiǎn)介
mongodb可視化工具(Robomongo)段首LOGO
RockMongo是一個(gè)MongoDB管理工具,連接數(shù)據(jù)庫的時(shí)候,輸入 相應(yīng)的地址用戶名和密碼就好了。點(diǎn)擊連接。通過 Rockmongo 你可以管理 MongoDB服務(wù),數(shù)據(jù)庫,集合,文檔,索引等等。

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

安裝需求

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

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

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

快速安裝

下載安裝包,快速安裝。

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

在瀏覽器中訪問index.php,比如說:http://localhost/rockmongo/index.php

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

開始玩轉(zhuǎn)MongoDB!

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

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

mongodb可視化工具(Robomongo)截圖

mongodb可視化工具(Robomongo)截圖

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

備份

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

恢復(fù)

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

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ù)庫下的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文件

打開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)寫 mongoexport -d

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

 eg:

 D:mongobin>mongoexport --db test

 或 D:mongobin>mongoexport -d test

 或 D:mongobin>mongoexport -db test

 注意:

常見問題

mongodb可視化工具(Robomongo)

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

關(guān)閉
南昌县| 彭泽县| 荣成市| 大方县| 芦溪县| 安达市| 赣州市| 平阳县| 徐水县| 保亭| 五家渠市| 兰溪市| 临海市| 岳普湖县| 海宁市| 鹤峰县| 广饶县| 锡林浩特市| 苗栗市| 平舆县| 治多县| 太谷县| 富顺县| 临汾市| 和平县| 石柱| 宿松县| 鲁甸县| 松原市| 津市市| 察雅县| 东光县| 界首市| 滦平县| 望都县| 温泉县| 南阳市| 甘南县| 泌阳县| 大庆市| 胶南市|