병아리는 삐약
최근 관심사
- AWS ALB 대상 그룹 Unhealthy 오류 「 timeout settings 」 에러의 경우 서버에 아파치를 설치했는지 확인하기80포트도 열려 있는지 확인해줬다 「Health checks failed with these codes: [403]」 에러날 경우아래 명령어로 index.html을 넣어주면 해결된다sudo cp /usr/share/httpd/noindex/index.html /var/www/html/index.html 성공
- 아마존 리눅스 mysql 설치 오류 아무리 계속해도 이런 오류만 나오고 아마존 리눅스에 mysql 설치가 안된 상황에서 해결한 방법The GPG keys listed for the "MySQL 8.0 Community Server" repository are already installed but they are not correct for this package. Check that the correct key URLs are configured for this repository 아래 명령어로 다시 깔아주고sudo yum install mysql-community-server 다시 확인해봤더니 성공이다sudo systemctl start mysqld 이분께 무한 감사를....https://stackoverflow.com/qu..
- aws codedeploy-agent 수동 설치 업그레이드 먼저 해준다sudo yum update 설치하기sudo yum install rubysudo yum install wget 홈 디렉토리로 이동한다cd /home/ec2-user 이후 CodeDeploy 에이전트 설치 프로그램 다운로드한다wget https://bucket-name.s3.region-identifier.amazonaws.com/latest/install install 파일에 대한 실행 권한을 설정chmod +x ./install 최신 버전의 에이전트를 설치한다sudo ./install auto 에이전트 시작하는 명령어systemctl start codedeploy-agent 에이전트가 잘 설치되었는지 확인systemctl status codedeploy-..
- [EC2] ubuntu에 mysql, aws cli 설치 ec2 ubuntu 환경을 만들고 해당 환경을 IDC라고 가정서버에 MySQL을 설치하고 덤프 파일 생성 후 파일을 AWS S3으로 보낸다음 S3에 저장된 자료를 Aurora에 넣는 작업을 진행할 예정 서버에 AWS CLI 설치해서 옮긴다 서버 한대를 만들고 update랑 upgrade 해준다sudo apt-get updatesudo apt-get upgrade 해당 명령어를 이용해서 mysql을 설치한다sudo apt-get install mysql-server 설치가 완료되면 mysql로 접속할 수 있다sudo mysql -u root -p mysql로 들어가서 demo라는 이름의 데이터베이스를 만들었다create database demo; 명령어를 통해..
Google Cloud
AWS
반응형