본문 바로가기

728x90

전체 글

C276x260 Let's Encrypt에서 DNS 모드로 SSL 인증서를 발급받는 방법 Let's Encrypt에서 DNS 모드로 SSL 인증서를 발급받는 방법 DNS 모드는 도메인 소유권 검증을 DNS 레코드를 통해 처리하는 방식입니다. EPEL 패키지 설치 yum install -y epel-release 1. Certbot 설치 Certbot을 설치합니다. CentOS 7의 경우 다음과 같이 수행할 수 있습니다. sudo yum install certbot python2-certbot-nginx 설치된 패키지는 시스템에 따라 다를 수 있습니다. 2. DNS API 키 준비 DNS 모드로 SSL 인증서를 발급받기 위해서는 해당 DNS 제공업체의 API 키가 필요합니다. Certbot이 DNS 레코드를 자동으로 추가하고 수정하도록 하기 위함입니다. DNS 제공업체별로 다양한 설정이 필요하.. 더보기
C276x260 [리눅스] How to install JMeter on Linux How to install JMeter on Linux Installation platform $ cat /etc/os-release NAME="Amazon Linux" VERSION="2" ID="amzn" ID_LIKE="centos rhel fedora" VERSION_ID="2" PRETTY_NAME="Amazon Linux 2" ANSI_COLOR="0;33" CPE_NAME="cpe:2.3:o:amazon:amazon_linux:2" HOME_URL="https://amazonlinux.com/" Installing JAVA $ amazon-linux-extras install java-openjdk11 $ java -version openjdk version "11.0.7" 2020-04-1.. 더보기
C276x260 [git] github 개인 액세스 토큰 사용 방법 github 개인 액세스 토큰 사용 방법 비밀번호로 접근 시 에러 Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information. $ git push -u origin main Username for 'https://github.com': admin@sangchul.kr Password for 'https://admin@sangchul.kr@github.com':.. 더보기
C276x260 [기타] 크롬 확장 프로그램 추천 크롬 확장 프로그램 추천 Auto Refresh Plus | Page Monitor 강력한 페이지 모니터 기능으로 자동으로 페이지를 새로고침합니다 Chrome Web Store를 통해 설치할 수 있습니다. Auto Refresh Plus 설치 후 설정 화면(시간 간격 설정) https://autorefresh.io 더보기
C276x260 CentOS 8 Stream 설치(CentOS 8 스트림 설치) CentOS 8 Stream 설치(CentOS 8 스트림 설치) iso 다운로드 download URL : https://www.centos.org/download ISO Download URL http://mirror.kakao.com/centos/8-stream/isos/x86_64/CentOS-Stream-8-x86_64-20210120-dvd1.iso Oracle VirtualBox에 VM 생성 download URL : https://www.virtualbox.org CentOS Stream 설치 - Keyboard : 한국어 - 언어 지원 : 한국어, English - 시간 및 날짜 : 아시아/서울 - 소프트웨어 선택 : 최소 설치(표준, 레거시 UNIX 호환성, 개발용 툴) - 설치 대상 :.. 더보기
C276x260 [리눅스] iperf3 사용법 iperf3 사용법 iperf3 : TCP/UDP 대역폭 성능 측정 도구 테스트 환경 $ cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core) iperf3 패키지 설치 - 서버, 클라이언트 패키지 설치 yum install -y iperf3 iperf3 --version $ iperf3 --version iperf 3.1.7 Linux master 3.10.0-1160.36.2.el7.x86_64 #1 SMP Wed Jul 21 11:57:15 UTC 2021 x86_64 Optional features available: CPU affinity setting, IPv6 flow label, TCP congestion algorithm setting.. 더보기
C276x260 리눅스에서 HTTP Proxy Server 설정하기 리눅스에서 HTTP Proxy Server 설정하기 1. 로그인 세션 동안만 유지되는 방법 export http_proxy=[proxy서버]:[proxy포트] export https_proxy=[proxy서버]:[proxy포트] unset http_proxy unset https_proxy 2. 로그인 세션이 종료된 후에도 프록시를 유지시키는 방법 *** .bashrc, .bash_profile, /etc/profile vim ~/.bashrc export http_proxy=[proxy서버]:[proxy포트] export https_proxy=[proxy서버]:[proxy포트] source ~/.bashrc 3. Proxy 설정 적용 확인 env | grep -i proxy http_proxy 및 ht.. 더보기
C276x260 [리눅스] route 테이블 추가/삭제 route 테이블 추가/삭제 net 로 라우팅 테이블 추가/삭제 route add -net 192.168.0.0 netmask 255.255.255.0 gw 192.168.0.1 route del -net 192.168.0.0 netmask 255.255.255.0 host 로 라우팅 테이블 추가/삭제 route add -host 192.168.0.12 gw 192.168.0.1 route del -host 192.168.0.12 gw 192.168.0.1 더보기

728x90