1818IP-服务器技术教程,云服务器评测推荐,服务器系统排错处理,环境搭建,攻击防护等

当前位置:首页 - Linux系统 - centos - 正文

君子好学,自强不息!

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

centos离线安装mongodb-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

centos离线安装mongodb-database-tools方法详解

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

centos离线安装mongodb-database-tools方法详解

本文来源:1818IP

本文地址:https://www.1818ip.com/post/32972.html

免责声明:本文由用户上传,如有侵权请联系删除!

发表评论

必填

选填

选填

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。