본문 바로가기

ubuntu10

ubuntu 에서 rc.local 사용하기 * ubuntu 18.04 를 기준으로 작성되었습니다. ubuntu 에서 rc.local 를 사용할 수 있는 방법입니다. (기본적으로 비활성되어 있습니다.) root 권한 획득 $ sudo su - /etc/rc.local 파일 생성 printf '%s\n' \ '#!/bin/bash' \ '#' \ '# rc.local' \ '#'\ '# This script is executed at the end of each multiuser runlevel.' \ '# Make sure that the script will "exit 0" on success or any other' \ '# value on error.' \ '#' \ '# In order to enable or disable this scri.. 2019. 11. 21.
[Zabbix] redis 모니터링 방법 # zabbix_agent.conf 에 아래 내용 추가 AllowRoot=1 추가 # cat /etc/zabbix/zabbix_agentd.d/userparameter_redis_lld_plus.conf # zabbix server version >= 3.4 # Need command: telnet,ss UserParameter=redis.port.discovery,ss -4lpn|grep redis-server|awk -F: '{print $2}'|awk '{print $1}'| awk NF | sed -e s/^/'{"{#REDIS_PORT}": "'/g -e s/'$'/'"},'/g | tr -d \\n | sed -e s/^/'{"data":['/g -e s/',$'/]}/g UserParamet.. 2019. 9. 10.
[Zabbix] 디스크 모니터링 하는 방법 Zabbix Agent 설치 후 아래의 명령을 실행한다. # diskstats user parameters config sudo mkdir -p /etc/zabbix/zabbix_agentd.d/ sudo wget https://raw.githubusercontent.com/grundic/zabbix-disk-performance/master/userparameter_diskstats.conf -O /etc/zabbix/zabbix_agentd.d/userparameter_diskstats.conf # low level discovery script sudo wget https://raw.githubusercontent.com/grundic/zabbix-disk-performance/master/lld-.. 2019. 9. 10.
mongod log file 관리 간혹 log 파일 사이즈가 계속 늘어나서 디스크가 꽉차는 문제가 일어나서 log 파일에 logrotate 를 적용시켰다.  ## /etc/mongod.conf ##systemLog: destination: file logAppend: true path: /var/log/mongodb/mongod.log logRotate: reopen # logrotate 적용을 위해서 추가  ## mongod 서비스 재시작 ### systemctl restart mongod.service  ## logrotate 설정 추가 - /etc/logrotate.d/mongod ##/var/log/mongodb/mongod.log { daily size 100M rotate 10 missingok compress.. 2019. 7. 19.
Zabbix 4 Agent 설치 - Ubuntu 14.04 아래의 명령으로 zabbix 4 agent 를 설치할 수 있다. # wget https://repo.zabbix.com/zabbix/4.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_4.0-2+trusty_all.deb # dpkg -i zabbix-release_4.0-2+trusty_all.deb # apt update # apt install zabbix-agent 2019. 7. 12.
Zabbix 4 Agent 설치 - Ubuntu 16.04 아래의 명령으로 zabbix 4 agent설치가 가능하다. # wget https://repo.zabbix.com/zabbix/4.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_4.0-2+xenial_all.deb # dpkg -i zabbix-release_4.0-2+xenial_all.deb # apt update # apt install zabbix-agent -y 2019. 7. 12.