일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- rsync
- 재귀쿼리
- xcache
- quota
- node 이미지 저장
- 날짜계산
- 이미지주소추출
- no key alg
- 태권v
- 태권브이
- strtotime
- 앞으로 가기
- simplexml_load_filesimplexml
- 리플리케이션 오류
- 뒤로 가기
- ssmtp
- 특정 패키지 업데이트 중지 / 해제
- mongodb
- openfire
- set foreign_key
- 중독 게임
- 쁘띠프랑스
- 훼인
- 외래키
- php-fpm
- MySQL
- 워드프레스한글팩
- php
- node.js
- security.limit_extensions
- Today
- Total
목록프로그래밍/리눅스 (10)
일상 기록 창고

1. debezium mariadb 플러그인 가져오기 - https://debezium.io/releases/3.1/ Debezium Release Series 3.1Debezium is an open source distributed platform for change data capture. Start it up, point it at your databases, and your apps can start responding to all of the inserts, updates, and deletes that other apps commit to your databases. Debezium is durable adebezium.io - 해당 사이트로 접속 후 MariaDB connector P..
https://kafka.apache.org/quickstart Apache KafkaApache Kafka: A Distributed Streaming Platform.kafka.apache.org 1. /usr/local 압축 해제$ tar xvzf kafak_2.13-4.0.0.taz -C /usr/local/$ cd /usr/local$ ln -s /usr/local/kafka_2.13.4.0.0 ./kafka $ cd /usr/local/kafka/## Generate a Cluster UUID $ KAFKA_CLUSTER_ID="$(bin/kafka-storage.sh random-uuid)" 2. zookeeper 설정 ( /usr/local/kafka/config/zoookeeper.pr..
- 패키지 리스트 조회dpkg --get-selections - 업그레이드 중지(hold)echo "libapache2-mod-php8.3 hold" | sudo dpkg --set-selections - 업그레이드 중지 해제(install)echo "libapache2-mod-php8.3 install" | sudo dpkg --set-selections - 업그레이드 중지(hold) 모두 초기화dpkg --clear-selections
.mysql_history export MYSQL_HISTFILE=/dev/null .bash_historyrm .bash_historyln -s /dev/null .bash_history파일 삭제 후 , 그냥 심볼릭 링크 생성 해주자.
보호되어 있는 글입니다.
openssh 보안 강화로 발생하는 문제라고 한다. OpenSSH가 7.0이상 시 키 교환 알고리즘이 기본으로 켜져 있지 않아 발생하는 문제 접속 하려는 우분 서버에 설정을 다음과 같이 하자. vi /etc/ssh/sshd_config # SSH 호스트 키 알고리즘 설정 HostKeyAlgorithms +ssh-rsa # 공개키 인증 설정 PubkeyAuthentication yes PubkeyAcceptedKeyTypes ssh-rsa PubkeyAcceptedAlgorithms +ssh-rsa systemctl restart sshd
1. css 나 폰트 호출하는 공격 ( 리퍼러 체크해서 직접 호출 제한 ) ex ) GET 도메인/css/style.css location ~* \.( css|js|폰트 )$ { if ($http_referer = "") { return 403; } } 2. 1 번 사항 연장 ex) GET 도메인/css/style.css?_=12345667 의 경우 나 ?v=13234 뭐 상황에 맞게 대처 location ~* \.( css|js|폰트 )$ { if ( $args ~ "_=" ) { return 403; } if ($http_referer = "") { return 403; } } 3. 파일 다운로드의 경우도 리퍼러 체크시에만 작동하도록 처리 4. 모바일 페이지가 아닌데 모바일 에이전트로 확인이 되는 경..
https://xinet.kr/data/geoip/GeoIP.dat https://xinet.kr/data/geoip/GeoIPASNum.dat https://xinet.kr/data/geoip/GeoIPCity.dat
와일드 카드 인증서를 발급 받은 후 확인 한 파일 Wildcard.domain.co.kr.key Wildcard.domain.co.kr.pem password.txt 위 3가지를 받은 후 nginx(1.16.1)에 설정 후 # sudo service nginx configtest * Testing nginx configuration Enter PEM pass phrase: 패스워드 입력 후 OK # sudo service nginx restart 후 다음과 같은 오류 발생 nginx: [emerg] can..
보호되어 있는 글입니다.