Briefly describe the installation of influxDB distributed time series database and related operations in Docker

Briefly describe the installation of influxDB distributed time series database and related operations in Docker

Introduction to influxDB

influxDB is a distributed time series database. cAdvisor only displays real-time information, but does not store monitoring data. Therefore, we need to provide a time series database to store the monitoring information provided by the cAdvisor component in order to display time series data in addition to real-time information.

influxDB installation

Pull the image

docker pull tutum/influxdb

Start the container

#18083=>8083 WEB port 8086=>8086 data port docker run --name is_influx_db -p 18083:8083 -p 8086:8086 --expose 8090 --expose 8099 -di c061e5808198

Access Test

http://192.168.44.113:18083/

Create a database

CREATE DATABASE "cadvisor"

View Database

SHOW DATABASES

Create User

CREATE USER "hf" WITH PASSWORD 'hf_123456' WITH ALL PRIVILEGES

View Users

User Authorization

# Grant database read and write permissions grant all privileges on cadvisor to cadvisor 
grant WRITE on cadvisor to cadvisor 
grant READ on cadvisor to cadvisor

View data information

SHOW MEASUREMENTS

Summarize

The above is a brief introduction to the installation of influxDB distributed time series database and related operations by Docker. I hope it will be helpful to everyone. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Practical way to build selenium grid distributed environment with docker
  • How to use selenium+testng to realize web automation in docker
  • Methods and steps for Etcd distributed deployment based on Docker
  • Example of using Docker Swarm to build a distributed crawler cluster
  • Tutorial on how to use Docker to implement distributed application functions
  • Detailed explanation of how to deploy surging distributed microservice engine based on Docker
  • Detailed explanation of using docker to build a Hadoop distributed cluster
  • Building a selenium distributed environment based on docker

<<:  Detailed analysis of the usage and application scenarios of slots in Vue

>>:  Summary of the Differences between SQL and NoSQL

Recommend

How to use the jquery editor plugin tinyMCE

Modify the simplified file size and download the ...

MySQL triggers: creating multiple triggers operation example analysis

This article uses an example to describe the crea...

A brief understanding of the difference between MySQL union all and union

Union is a union operation on the data, excluding...

How is MySQL transaction isolation achieved?

Table of contents Concurrent scenarios Write-Writ...

Detailed steps to install the NERDTree plugin in Vim on Ubuntu

NERDTree is a file system browser for Vim. With t...

Using better-scroll component in Vue to realize horizontal scrolling function

About Recently, in the process of learning Vue, I...

Use elasticsearch to delete index data regularly

1. Sometimes we use ES Due to limited resources o...

Detailed explanation of as, question mark and exclamation mark in Typescript

1. The as keyword indicates an assertion In Types...

How to use JS code compiler Monaco

Preface My needs are syntax highlighting, functio...

Vue implements verification whether the username is available

This article example shares the specific code of ...