首頁 > 軟體

centos離線安裝mongodb-database-tools方法詳解

2022-11-13 14:00:18

mongodb-database-tools是MongoDB資料庫工具的命令列的工具,用於工作與MongoDB部署。可以使用mongodumpmongoimport很方便的匯入匯出備份資料。

該資料庫工具包括以下的二進位制檔案:

Binary Import / Export

 

    mongodump

Creates a binary export of the contents of a mongod database.

    mongorestore

Restores data from a mongodump database dump into a mongod or mongos

    bsondump

Converts BSON dump files into JSON.

Data Import / Export

 

    mongoimport

Imports content from an Extended JSON, CSV, or TSV export file.

    mongoexport

Produces a JSON or CSV export of data stored in a mongod instance.

Diagnostic Tools

 

    mongostat

Provides a quick overview of the status of a currently running mongod or mongos instance.

    mongotop

Provides an overview of the time a mongod instance spends reading and writing data.

GridFS Tools

 

    mongofiles

Supports manipulating files stored in your MongoDB instance in GridFS objects.

下載地址:https://www.mongodb.com/try/download/database-tools

解壓

tar zxvf mongodb-database-tools-rhel70-x86_64-100.6.1.tgz

移動到目錄,這裡可以和mongo放到一個目錄,方便管理查詢

mv mongodb-database-tools-rhel70-x86_64-100.6.1 /usr/local/mongodb/tools

設定環境變數:vi /etc/profile在末尾新增

export MONGODB_TOOLS=/usr/local/mongodb/tools
PATH=$PATH:$MONGODB_TOOLS/bin

因為我已經給mongo新增了變數,所以,這裡我直接指定PATH

使其立即生效:source /etc/profile

設定完成。

附:https://www.mongodb.com/docs/database-tools/

到此這篇關於centos離線安裝mongodb-database-tools方法詳解的文章就介紹到這了,更多相關centos離線安裝mongodb-database-tools內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com