일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- K8S
- 파이썬
- 빅데이터
- GNOME
- Python
- PostgreSQL
- C
- Kubernetes
- Audit Log
- Shell
- log
- Chrome
- zabbix
- 디렉토리
- yum
- JSON
- Linux
- 서울시민카드
- CentOS
- syslog
- 크롬
- Elasticsearch
- centos 7.5
- Elk
- rsyslog
- docker
- audit
- RHEL
- bash
- GPU
- Today
- Total
목록업무/sys (63)
Sysops Notepad
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
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]..
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
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..
Centos 7.5 기준 grafana server install 빅데이터 가시화를 위한 그라파나 서버 구축하기1. vi /etc/yum.repos.d/grafana.repo // 아래 내용 붙여 넣기[grafana]name=grafanabaseurl=https://packagecloud.io/grafana/stable/el/7/$basearchrepo_gpgcheck=1enabled=1gpgcheck=1gpgkey=https://packagecloud.io/gpg.key https://grafanarel.s3.amazonaws.com/RPM-GPG-KEY-grafanasslverify=1sslcacert=/etc/pki/tls/certs/ca-bundle.crt 2. yum install grafana..
아래 명령어로 설치가능한 GUI 확인# yum grouplist GUI 확인후 설치# yum groupinstall "KDE Plasma Workspaces"or # yum groupinstall "GNOME Desktop" 런레별 변경 및 리부팅# vi /etc/inittab...id:3:initdefault 3을 5로 변경 # reboot 끝
처음 postgresql 구성간 아래와 같은 에러 메세지가 나올 경우....psycopg2.OperationalError: FATAL: Ident authentication failed for user "test".... psql: FATAL: Peer authentication failed for user "test" [root] # vi /var/lib/pgsql/10/data/pg_hba.conf 위 경로 들어가 상황에 맞게 METHOD 부분의 ident를 MD5 or trust로 변경해 준다. # IPv4 local connections:host all all 127.0.0.1/32 md5 [root] # systemctl restart postgresql-10 접속 성공~
1. 레포 추가rpm -Uvh https://yum.postgresql.org/10/redhat/rhel-7-x86_64/pgdg-centos10-10-2.noarch.rpm 2. 설치yum install -y postgresql10-server postgresql10 3. DB 초기화/usr/pgsql-10/bin/postgresql-10-setup initdb Initializing database ... OK 4. systemctl start postgresql-10 5. systemctl enable postgresql-10 6. su - postgres 7. psql 8. DB 생성 및 계정 생성postgres=# CREATE DATABASE mydb; CREATE DATABASE postgre..