본문 바로가기

728x90

전체 글

티스토리 블로그에 개인 도메인을 연결하기 위한 DNS 설정 티스토리 블로그에 개인 도메인을 연결하기 위한 DNS 설정 DNS 정보 변경 방법 A 레코드 27.0.236.139 CNAME 레코드 host.tistory.io blog.tistory.com dig host.tistory.io $ dig host.tistory.io ; DiG 9.18.12-0ubuntu0.22.04.2-Ubuntu host.tistory.io ;; global options: +cmd ;; Got answer: ;; ->>HEADERHEADER 더보기
원도우 10에서 "지금 모임 시작"을 제거하는 방법 원도우 10에서 "지금 모임 시작"을 제거하는 방법 1. PowerShell을 관리자 권한으로 실행합니다. 2. PowerShell 명령어를 입력하고 실행합니다. Get-AppxPackage -allusers Microsoft.GamingServices | Remove-AppxPackage 더보기
Amazon EC2 t4g.small 인스턴스에서 Nginx와 PHP-FPM을 연동하여 테스트 페이지를 설정하는 방법 Amazon EC2 t4g.small 인스턴스에서 Nginx와 PHP-FPM을 연동하여 테스트 페이지를 설정하는 방법 1. Nginx 및 PHP-FPM 설치 2. PHP-FPM 구성 파일 수정 sudo mkdir /var/log/php-fpm php-fpm.conf 파일 설정 sudo vim /etc/php/8.1/fpm/php-fpm.conf [global] pid = /var/run/php/php-fpm.pid error_log = /var/log/php-fpm/error.log include = /etc/php/8.1/fpm/pool.d/*.conf www.conf 파일 설정 sudo vim /etc/php/8.1/fpm/pool.d/www.conf [www] user = www-data group.. 더보기
Amazon EC2 t4g.small 인스턴스에서 PHP-FPM을 설치하는 방법 Amazon EC2 t4g.small 인스턴스에서 PHP-FPM을 설치하는 방법 테스트 환경 운영 체제 버전 정보 확인 $ lsb_release -d Description:Ubuntu 22.04.3 LTS 운영 체제의 아키텍처 확인(Arm 기반 AWS Graviton 프로세서 사용) $ uname -m aarch64 운영 체제의 비트 수 $ getconf LONG_BIT 64 PHP-FPM 설치 필수 구성 요소 설치 sudo apt-get install -y zlib1g-dev software-properties-common sudo apt-get update PPA(Personal Package Archive) 추가 sudo add-apt-repository -y ppa:ondrej/php ATP 패키.. 더보기
Amazon EC2 t4g.small 인스턴스에서 MySQL를 설치하는 방법 Amazon EC2 t4g.small 인스턴스에서 MySQL를 설치하는 방법 테스트 환경 운영 체제 버전 정보 확인 $ lsb_release -d Description:Ubuntu 22.04.3 LTS 운영 체제의 아키텍처 확인(Arm 기반 AWS Graviton 프로세서 사용) $ uname -m aarch64 운영 체제의 비트 수 $ getconf LONG_BIT 64 MySQL 설치 Shell에서 mysql 계정 및 그룹 생성 sudo groupadd -g 28 mysql sudo useradd -m -c "MySQL Server" -d /usr/local/mysql -s /bin/false -u 28 -g mysql mysql $ egrep mysql /etc/passwd /etc/group /e.. 더보기
Amazon EC2 t4g.small 인스턴스에서 NGINX를 설치하는 방법 Amazon EC2 t4g.small 인스턴스에서 NGINX를 설치하는 방법 테스트 환경 운영 체제 버전 정보 확인 $ lsb_release -d Description:Ubuntu 22.04.3 LTS 운영 체제의 아키텍처 확인(Arm 기반 AWS Graviton 프로세서 사용) $ uname -m aarch64 운영 체제의 비트 수 $ getconf LONG_BIT 64 NGINX 설치 필수 구성 요소 설치 sudo apt install curl gnupg2 ca-certificates lsb-release ubuntu-keyring APT가 패키지의 신뢰성을 확인할 수 있도록 공식 NGINX 서명 키를 가져옵니다. curl -fsSL https://nginx.org/keys/nginx_signing... 더보기
Amazon t3a.medium과 t4g.medium의 비교 Amazon t3a.medium과 t4g.medium의 비교 AWS t3a.medium과 t4g.medium은 모두 2 vCPU와 4 GiB의 메모리를 제공하는 중형 인스턴스 유형입니다. 두 인스턴스 유형 사이에는 몇 가지 주요 차이점 기능 t3a.medium t4g.medium CPU 성능 보통 우수 시간당 가격 비싸 저렴 CPU 사용량이 많은 애플리케이션에 적합 아니오 예 CPU 사용량이 적은 애플리케이션에 적합 예 예 CPU 성능 t4g.medium은 t3a.medium보다 CPU 성능이 우수합니다. t4g.medium은 AWS Graviton2 프로세서를 사용하며, t3a.medium은 AMD EPYC 프로세서를 사용합니다. Graviton2 프로세서는 EPYC 프로세서보다 더 많은 코어와 스레드.. 더보기
우분투에서 pacemaker, corosync, pcs 패키지를 삭제하는 방법 우분투에서 pacemaker, corosync, pcs 패키지를 삭제하는 방법 1. Pacemaker 클러스터 중지 클러스터 서비스를 중지합니다. sudo pcs cluster stop --all $ sudo pcs cluster stop --all 192.168.56.212: Stopping Cluster (pacemaker)... 192.168.56.211: Stopping Cluster (pacemaker)... 192.168.56.212: Stopping Cluster (corosync)... 192.168.56.211: Stopping Cluster (corosync)... 2. Pacemaker 클러스터 비활성화 클러스터를 비활성화하고 부팅 시 자동으로 시작되지 않도록 설정합니다. sudo p.. 더보기

반응형