일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- centos pyhon 설치
- influxdb 설치
- 1697
- regex_search
- c3 second
- c3 step graph
- python os
- c3 초
- 백준
- subporcess path
- semanage
- c++ 정규식
- c3 축 가리기
- grafana dashboard
- 정규식 컴파일
- snmp test
- linux시간으로 변경
- 정규식 문자열 출력
- telegraf
- python subprocess
- gcc 업데이트
- InfluxDB
- gcc regex
- selinux port 등록
- c3 축 없애기
- snmp
- python popen
- 정규식 활용
- CentOS7
- g++ 업데이트
- Today
- Total
목록분류 전체보기 (560)
리셋 되지 말자
C++로 문자열 다루는데, 정규식을 사용하기 위해서 코드를 짜고 centos7에서 g++로 컴파일을 하려고 하는데, 위와 같이 컴파일이 되지 않았다. 요약하자면 gcc 컴파일러의 버전이 낮아서 C++11을 지원을 안 한다는 거다. yum list로 확인해보면, 4.8 버전까지 밖에 없다. 정규식 사용을 위해 업데이트를 해보자..ㅠㅠ 1. scl 설치 # yum install -y centos-release-scl 2. devtoolset 버전 확인 # yum list devtoolset-* 3. devtoolset-8 설치 # yum install -y devtoolset-8 4. scl로 devtoolset-8 bash를 enable # scl enable devtoolset-8 bash 5. g++ ..
#include "influxdb.hpp" #include using namespace std; // Visit https://github.com/orca-zhang/influxdb-c for more test cases int main(int argc, char const *argv[]) { influxdb_cpp::server_info si("127.0.0.1", 8086, "demo", "admin", "admin"); // post_http demo with resp[optional] string resp; int ret = influxdb_cpp::builder() .meas("test2") // .tag("k", "v") // .tag("x", "y") .field("x", 10) .field..
https://www.tutorialspoint.com/How-to-execute-a-command-and-get-the-output-of-command-within-Cplusplus-using-POSIX How to execute a command and get the output of command within C++ using POSIX? How to execute a command and get the output of command within C++ using POSIX? You can use the popen and pclose functions to pipe to and from processes. The popen() function opens a process by creating a ..
Linux에서 컴파일 헤더파일의 기본 위치가 어디인지 궁금해서 알아보았다. echo | gcc -v -x c -E - echo | gcc -v -x c++ -E - 위는 gcc, 아래는 g++ 의 경로를 알수 있는 것 같다. 쓴이는 g++만 설치가 되어있어서 아래 명령어만 사용해 봄. 결과는 아래와 같다. [root@kkj include]# echo | gcc -v -x c++ -E - Using built-in specs. COLLECT_GCC=gcc Target: x86_64-redhat-linux Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http:/..
1. 그라파나 rpm 다운로드 https://grafana.com/grafana/download Download Grafana Grafana Feature overview, screenshots, videos, feature tours grafana.com 위의 사이트에서 wget으로 다운 받았다. # wget https://dl.grafana.com/oss/release/grafana-6.5.3-1.x86_64.rpm 2. 그라파나 설치 # yum localinstall -y grafana-6.5.3-1.x86_64.rpm 3. 그라파나 포트 방화벽 허용 그라파나의 포트인 3000번을 방확벽에서 허용시켜 준다. # firewall-cmd --zone=public --add-port=3000/tcp --..
해당하는 것을 개발(?) 하는데 참고한 사이트들 https://www.popit.kr/influxdb_telegraf_grafana_2/ InfluxDB, Telegraf, Grafana 를 활용한 Monitoring System 만들기(2) | Popit 두번째로 Telegraf 를 이용하여 OS 및 MySQL 모니터링 데이터를 수집하여 InfluxDB로 저장하는 부분에 대한 설명입니다. www.popit.kr https://docs.influxdata.com/influxdb/v1.7/guides/writing_data/ InfluxData Documentation | InfluxData Documentation docs.influxdata.com https://docs.influxdata.com/in..
맨 윗줄의 GRUB_TIMEOUT을 0으로 변경한 뒤, 아래의 명령어로 적용시켜준다. 그러면 부팅시 대기화면없이 넘어가서 빨라진다는 좋은 이야기. # grub2-mkconfig -o /boot/grub2/grub.cfg
InfluxDB까지 설치가 끝났고, 이번엔 Telegraf를 설치해보자. 1. Telegraf rmp 다운로드 rpm은 아래에서 받아주시길 바랍니다.(가급적이면 최신버전을 추천드립니다.) https://not-to-be-reset.tistory.com/24 [CentOS 7] InfluxDB, Telegraf 설치 https://www.popit.kr/influxdb_telegraf_grafana_1/ InfluxDB, Telegraf, Grafana 를 활용한 Monitoring System 만들기(1) | Popit InfluxDB(저장), Telegraf(수집), Grafana(대시보드) 조합으로 모니터링 시스템.. not-to-be-reset.tistory.com 쓴이는 wget으로 받았습니다. ..