Zabbix 설치

[참고 사이트]https://www.zabbix.com/documentation/current/en/manual/installation/containershttps://boying-blog.tistory.com/40https://astromsshin.github.io/blog/Zabbix_in_docker_container.html 아래 설치는 Zabbix 6.4 버전을 대상으로 함. Zabbix 서버설치 네트워크 생성 docker network create zabbix-net 2. MYSQL 인스턴스 생성DB User/Password는 임의로 설정하면 된다 docker run --name mysql-server -t…

Continue ReadingZabbix 설치

Jar/War 구동 쉘 스크립트

  • Post author:
  • Post category:Linux

SpringBoot Jar/War 파일을 리눅스에서 백그라운드로 구동시 필요한 쉘스크립트를 작성하였습니다.SERVICE_NAME : 서비스 이름을 설정합니다.SERVICE_PATH : 서비스 경로를 설정합니다.JAR_NAME : 구동하려는 Jar/War 파일명을 설정합니다.구동은 run.sh {start | stop | restart | status…

Continue ReadingJar/War 구동 쉘 스크립트

Odroid C1+ GPIO사용

  • Post author:
  • Post category:LinuxSBC

Odroid C1+에서 GPIO를 사용하기 위해서는 WiringPi를 사용하면된다.https://wiki.odroid.com/odroid-xu4/application_note/gpio/wiringpi 설치 sudo apt install software-properties-common sudo add-apt-repository ppa:hardkernel/ppa sudo apt update sudo apt install odroid-wiringpi GPIO 확인 root@odroid:/sw/down/wiringPi# gpio readall +-----+-----+---------+------+---+--- C1 ---+---+------+---------+-----+-----+…

Continue ReadingOdroid C1+ GPIO사용

Redis 테스트를 위한 자동 설치

redis 서버를 버전별로 설치해서 테스트해야할 경우가 있다.실행을 위한 정리를 해봤다.레디스 파일은 https://download.redis.io/releases/ 에서 다운로드 할 수 있다.아래에서 REDISVER에 버전 변경후 전체복사해서 쉘에 붙여넣기하면 redis 구동까지 된다.기본 폴더는 /sw 이다.REDISVER 변수에…

Continue ReadingRedis 테스트를 위한 자동 설치