일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Elasticsearch
- log
- JSON
- Python
- syslog
- rsyslog
- GNOME
- yum
- Elk
- Shell
- 빅데이터
- audit
- 서울시민카드
- centos 7.5
- GPU
- RHEL
- PostgreSQL
- Chrome
- 크롬
- bash
- CentOS
- Kubernetes
- zabbix
- 디렉토리
- Linux
- 파이썬
- Audit Log
- K8S
- C
- docker
- Today
- Total
목록업무 (176)
Sysops Notepad
zabbix visible name에 Hostname 자동으로 넣기 git clone https://github.com/q1x/zabbix-gnomes.git zabbix-gnomes # Update the visible name of the host web001 to 'primary webserver' vi $HOME/.zbx.conf [Zabbix API]username=johndoepassword=verysecretpasswordapi=https://zabbix.mycompany.com/path/to/zabbix/frontend/no_verify=true ./zhostupdater.py web001 -V 'primary webserver' 참고 : https://github.com/q1x/zabbi..
linux dd명령어를 이용한 disk 복제 및 초기화 방법 디스크 복제 # 목적지 디스크를 umount # dd if=/dev/sda of=/dev/sdb bs=512 디스크 초기화# dd if=/dev/zero of=/dev/sda 디스크 파티션 삭제# dd if=/dev/zero of=/dev/sda count=1 bs=512 진행 상황 체크# iostat -d 2 10
docker 자주 쓰는 명령어 및 옵션를 정해 봤습니다. # 도커 설치 ( linux 기준 )yum install docker # 도커 시작 ( linux 기준 )service docker start # 도커 이미지 검색docker search centos # 도커 이미지 다운docker pull centos:latest # 도커 이미지 리스트 보기docker images # 도커 컨테이너 보기docker ps -a # 도커 컨트롤 하기docker start docker restart docker attach docker stop docker rm docker rmi centos:lastest # docker run 에서 많이 쓰는 옵션 docker run -i -t --name centos /bin/b..
1. pg_num 정보 보기 # ceph pg dump | awk 'BEGIN { IGNORECASE = 1 } /^PG_STAT/ { col=1; while($col!="UP") {col++}; col++ } /^[0-9a-f]+\.[0-9a-f]+/ { match($0,/^[0-9a-f]+/); pool=substr($0, RSTART, RLENGTH); poollist[pool]=0; up=$col; i=0; RSTART=0; RLENGTH=0; delete osds; while(match(up,/[0-9]+/)>0) { osds[++i]=substr(up,RSTART,RLENGTH); up = substr(up, RSTART+RLENGTH) } for(i in osds) {array[osds[i]..
Jenkins thinBackup 플러그인을 이용한 백업/복구 설정하기 ( 인터넷 환경이 아닌 곳에서 플러그인 설치 ) 1. 젠킨스 페이지( https://plugins.jenkins.io/thinBackup)에서 플러그인 다운 받기 https://updates.jenkins.io/download/plugins/thinBackup/1.9/thinBackup.hpi 2. 젠킨스 웹 페이지 로그인 > 젠킨스 관리 > 플러그인 관리 -> 고급 > 플로그인 올리기 3. thinBackup.hpi 파일 업로그 및 젠킨스 재시작 4. 젠킨스 웹 페이지 로그인 > 젠킨스 관리 > ThinBackup 5. Settingsex>- Backup directory : /jenkinsbackup/- Backup directo..
linux bash shell script directory , file check 하는 방법 #!/bin/bash # 디렉토리 존재 유무 확인If [ ! -d 디렉토리명 ] ; then mkdir 디렉토리명fI # 파일 존재 유무 확인If [ ! -e 디렉토리명 ] ; then touch 파일명fI
Redhat , Centos Audit log 설정하기 # yum install auditd # vi /etc/audisp/plugins.d/syslog.conf ....active = no # active = yes 로 변경direction = out... # service rsyslog restart ; service auditd restart
Elasticsearch와 slack 연동해서 로그 모니터링 시스템 구축하기 ELK의 x-pack의 기능 중 알람기능인 Alerting 은 유료 하지만 Yelp사에서 제작한 elastalert은 무료! # Pip install Elastaert 참고 :https://www.elastic.co/guide/kr/x-pack/current/installing-xpack.htmlhttps://github.com/Yelp/elastalert
linux (centos 7 , redhat 7 ) Zabbix Server 4.0 설치 / 구축 / 업데이트 하기 설치 환경 OS : centos 7.4 zabbix ver :3.4.x -> 4.0 1. systemctl stop zabbix-server2. systemctl stop zabbix-proxy3. mkdir /opt/zabbix-backup/4. cp /etc/zabbix/zabbix_server.conf /opt/zabbix-backup/5. cp /etc/httpd/conf.d/zabbix.conf /opt/zabbix-backup/6. cp /etc/httpd/conf.d/ssl.conf /opt/zabbix-backup/7. cp -R /usr/share/zabbix/ /opt/z..
Katello::Resources::Candlepin::OwnerInfo: SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (GET /candlepin/owners/acme/info) cd /etc/foreman cp proxy_ca.pem proxy_ca_bkp.pem cp /root/ssl-build/katello-default-ca.crt ./proxy_ca.pem cp /root/ssl-build/katello-default-ca.crt /etc/pki/ca-trust/source/anchors/cp /root/ssl-build/katello-default-ca.crt pro..