1. Prerequisites 1. The project has been deployed 2. Docker is already installed 2. Install influxdb in docker 1. Download the influxdb image: docker pull tutum/influxdb 1) Timeout error: 2) Solution: vim /etc/docker/daemon.json (There should be only one key.json file but no daemon.json file. If there is no daemon.json file, just create a new one.) Add Alibaba's mirror source: { "exec-opts": ["native.cgroupdriver=systemd"], "log-driver": "json-file", "log-opts": { "max-size": "100m" },"insecure-registries":[ "192.168.180.105:1180" ], "registry-mirrors":["https://6kx4zyno.mirror.aliyuncs.com"] } 2. Check whether influxdb is downloaded successfully: docker images 3. Open ports 8083 and 8086: firewall-cmd --zone=public --add-port=8083-8086/tcp --permanent 4. Start the influxdb container: 1) Start: docker run -d -p 8083:8083 -p 8086:8086 --name my_influxdb influxdb (--name means naming the influxdb container "my_influxdb") 2) After starting the container, this key will be generated. Remember it as it will be needed later. 570c48b4a919fb01d86025641c98bc6f33abe3180440dda8b58d40637e40f0cf 3) Check what is started in docker: docker ps 5. Enter the influxdb container 1) Enter the command: docker exec -it my_influxdb bash 6. Enter the /usr/bin directory to view the influxdb tools 7. Enter the influxdb client command line 8. Create a library named "jmeter" 1) Execute SQL-like statements: create database jmeter; 9. Use the "jmeter" library (I named it "jmeter" because I use jmeter for performance and I will need this name in the "backend listener" of jmeter later) 10. Query (the result is empty because no data has been generated at this time) 3. jmeter connects to influxdb in docker 1. Add a "backend listener" to the thread group 2. Set up the backend listener 1) Select to monitor influxdb 2) Configure the listener 3. Run the jmx script to see if the data can be transferred to the jmeter library of influxdb. 4. Query the jmeter library in the influxdb client command to see if data is generated select * from jmeter; InfluxDB deployment is complete! ! ! Next, deploy grafana This is the end of this article about the detailed tutorial (performance test) on installing influxdb in docker. For more relevant content about installing influxdb in docker, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed example of using the distinct method in MySQL
>>: Detailed explanation of the process of setting up nvidia-docker environment on Linux server
1. Basic Introduction of Linux Group In Linux, ev...
Here is a common one-click performance test scrip...
Table of contents What is JSI What is different a...
location matching order 1. "=" prefix i...
Table of contents Preface Lua Script nignx.conf c...
<br />In text design, we usually focus on th...
Preface This article records how I use docker-com...
Table of contents 01-Event Bubbling 1.1- Introduc...
There are two ways to delete data in MySQL, one i...
Vim is a powerful full-screen text editor and the...
I was watching Tik Tok some time ago and thought ...
The progress bar is not smooth I believe that mos...
1. List The list ul container is loaded with a fo...
One demand Generally speaking, a company has mult...
There was a shaking barrage on TikTok a while ago...