일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Kibana
- 로그인불가
- 보안양파
- freebsd
- elastic stack
- endpoint security
- GitLab
- x-pack
- Kibana server is not ready yet
- ELASTIC
- centos 8
- macos
- G-suite
- hardening
- application security
- XCP-ng
- Windows
- proxycfg
- pfsense
- bash
- miniconda
- 한글가이드
- xe guest utilities
- PlayBook
- Proxy
- ansible
- ssh key 배포
- docker
- Today
- Total
목록IT (650)
선 밖에 선 자유인
vSphere에서 SNMP 설정 시 개체 '"serviceSystem"에 대한 "HostServiceSystem.Start"을(를) 호출하지 못했습니다.' 와 같은 오류 발생시ssh 에서 아래와 같이 작업 # esxcli system snmp set --enable true# esxcli system snmp set --communities # esxcli system snmp set --enable true# /etc/init.d/snmpd restart
Vsphere CLI 관련 자료 https://serenity-networks.com/how-to-enable-snmp-on-esxi-5-5-5-6-for-remote-monitoring/
variable char 값 100개 이상으로 변경시 mysql> alter table modify varchar(100);
Stefan Esser 의 iOS 10 Kernel Heap Attack 관련 자료
whatismyip 등과 같이 현재 자신의 Public IP를 리눅스 command로 확인하는 방법 $ wget -qO- http://ipecho.net/plain ; echo $ curl ip.ojj.kr
Ubunt에서 github등 이용시 인증서 에러 발생하는 경우 $ sudo cp x2.crt /usr/share/ca-certificates/ - 마지막 줄에 x2.crt 추가$ sudo vi /etc/ca-certificates.conf....mozilla/thawte_Primary_Root_CA.crtmozilla/thawte_Primary_Root_CA_-_G2.crtmozilla/thawte_Primary_Root_CA_-_G3.crtx2.crt $ sudo update-ca-certificates 각 OS별 설치는 아래 참고http://manuals.gfi.com/en/kerio/connect/content/server-configuration/ssl-certificates/adding-trus..
date 이용하여 6개월 이내의 데이터만 추출하는 Query mysql> select * from table_name where date(date_column_name) > date(subdate(now(), interval 6 month));