일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ansible
- XCP-ng
- endpoint security
- 보안양파
- G-suite
- 한글가이드
- GitLab
- 로그인불가
- application security
- docker
- bash
- Kibana server is not ready yet
- elastic stack
- xe guest utilities
- centos 8
- PlayBook
- Proxy
- Windows
- pfsense
- macos
- x-pack
- ssh key 배포
- miniconda
- ELASTIC
- hardening
- Kibana
- proxycfg
- Elasticsearch
- freebsd
- Today
- Total
목록IT/System & Network (299)
선 밖에 선 자유인
Mac OS 터미널에서 $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
특정 확장자 일괄 변환ex) html, htm, csv -> txt #!/bin/sh for filename in *do case "$filename" in *.htm | *.html | *.csv ) headname=${filename%.*} echo $headname #mv "$filename" "${headname}.txt" ;; esac done
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/System_Administrators_Guide/ch-Viewing_and_Managing_Log_Files.html
참고: http://steadypost.net/post/knowhow/id/8/ 과거 date -d 'yesterday' 어제 date -d '2 day ago' 2일전 date -d '1 week ago' 1주일전 date -d '2 month ago' 1달전 date -d '3 year ago' 3년전 date -d '10 second ago' 10초전 date -d '20 minute ago' 20분전 date -d '30 hour ago' 30시간전 date -d '1 year 1 month ago' 1년 1개월전 미래 date -d 'tomorrow' 내일 date -d '1 day' 1일후 date -d '1 week' 1주일후 date -d '2 month' 1달후 date -d '3 yea..
https://commania.co.kr/87
일단 MySQL 5.6 이상이나 MariaDB 10.1 이상에서만 설치 됨MariaDB 업그레이드는 아래 참고http://www.tecmint.com/upgrade-mariadb-5-5-to-10-centos-rhel-debian-ubuntu/ 1. my.cnf 설정에 아래의 내용 추가 후 mysqld restart[mysqld]character-set-server=utf8collation_server=utf8_general_ci max_heap_table_size=512Mmax_allowed_packet=16777216tmp_table_size=64Mjoin_buffer_size=64Minnodb_file_per_table=ONinnodb_buffer_pool_size=2048Minnodb_double..
cmd> DISM /online /enable-feature /featurename:Server-GUI-Mgmt /all http://tshooter.tistory.com/27