Common commands for deploying influxdb and mongo using docker

Common commands for deploying influxdb and mongo using docker

Deploy database based on docker

sudo docker pull influxdb
sudo docker pull mongo
sudo docker run -p 27017:27017 -v xxx:/xxx --name xxxx -d mongo:latest
sudo docker run -d -p8086:8086 --name xxx influxdb:latest

Initialize the mongodb database

Enter the mongo image to configure the user password

mongo 127.0.0.1
use admin;
db.createUser({user: "xxx", pwd: "xxx", roles: [{ role: "root", db: "admin" }]});
db.getUser("xxx")

Importing Data

Enter the mongo container:

mongoimport -d aaa -c xxx.json

Check the import results:

mongo 127.0.0.1
show databases;
use aaa;
db.xxx.find();

Create the bbb database

use bbb
db
db.keynes_record.insert({"name":"test"})
show databases;

Initialize InfluxDB

Enter the docker container:

influx
CREATE DATABASE keynes
SHOW DATABASES

Summarize

The above are the common commands for deploying influxdb and mongo using docker introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time!

You may also be interested in:
  • Detailed explanation of using Elasticsearch visualization Kibana under Docker
  • Detailed explanation of the construction of Docker container visual monitoring center
  • Detailed tutorial on building a JMeter+Grafana+Influxdb monitoring platform with Docker
  • Detailed tutorial on distributed operation of jmeter in docker environment
  • Use Grafana to display monitoring charts of Docker containers and set email alert rules (illustration)
  • How to monitor Docker using Grafana on Ubuntu
  • Detailed tutorial for installing influxdb in docker (performance test)
  • Tutorial on building a JMeter+Grafana+influxdb visual performance monitoring platform in docker environment

<<:  MySQL Index Detailed Explanation

>>:  Let's talk about destructuring in JS ES6

Recommend

960 Grid System Basic Principles and Usage

Of course, there are many people who hold the oppo...

Detailed steps to install Docker 1.8 on CentOS 7

Docker supports running on the following CentOS v...

MySQL Tutorial: Subquery Example Detailed Explanation

Table of contents 1. What is a subquery? 2. Where...

Summary of the differences between Html, sHtml and XHtml

For example: <u> This has no ending characte...

Linux nohup command principle and example analysis

nohup Command When using Unix/Linux, we usually w...

Vue song progress bar sample code

Note that this is not a project created by vue-cl...

Analysis of the principle and usage of MySQL custom functions

This article uses examples to illustrate the prin...

The problem of form elements and prompt text not being aligned

Recent projects involve the creation of a lot of ...

How to use localStorage in JavaScript

If you are a developer looking to get into the wo...

Detailed explanation of how to use the vue verification code component

This article example shares the specific implemen...

Native JavaScript message board

This article shares the specific code of JavaScri...

CSS position fixed left and right double positioning implementation code

CSS Position The position attribute specifies the...

General Guide to Linux/CentOS Server Security Configuration

Linux is an open system. Many ready-made programs...