라즈베리팡팡

[Ubuntu] InfluxDB 설치 (2.x) 본문

전자공작/Etc

[Ubuntu] InfluxDB 설치 (2.x)

절망로정말적 2022. 4. 11. 13:33

설치

아래의 공식 HP에서 설치하고자 하는 버전과 플랫폼을 선택하고 터미널에서 다운로드 실시.

 

 

Downloads

Telegraf open source data collector Telegraf is a plugin-driven server agent for collecting and sending metrics and events from databases, systems, and IoT sensors. Telegraf is written in Go and compiles into a single binary with no external dependencies,

portal.influxdata.com

 

influxdb 2.2, ubuntu 64bit로 설치

 

아래의 순서대로 설치 및 실행 (v2.2 + unbuntu 64bit 버전의 파일)

wget -qO- https://repos.influxdata.com/influxdb.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdb.gpg > /dev/null
export DISTRIB_ID=$(lsb_release -si); export DISTRIB_CODENAME=$(lsb_release -sc)
echo "deb [signed-by=/etc/apt/trusted.gpg.d/influxdb.gpg] https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list > /dev/null

sudo apt-get update && sudo apt-get install influxdb2

sudo systemctl start influxdb

 

 

접속

주소창에 "IP:8086"을 입력해서 웹상에서 접속 가능. 처음 로그인 시 id, pw, 조직, 버킷명 등록이 필요하다.

 

로그인 화면

 

'전자공작 > Etc' 카테고리의 다른 글

동일 네트워크에서 공유폴더 만들기  (0) 2022.09.19
[AWS] EC2 인스턴스, VPN 삭제  (0) 2022.05.24
[Ubuntu] Grafana 설치  (0) 2022.04.11
[Ubuntu] Node-RED 설치  (0) 2022.04.11
[AWS] VPC + EC2 생성하기  (0) 2022.04.11