💡 RDS는 AWS에서 제공하는 관계형 데이터베이스 서비스이다. RDB를 쉽게 설치, 운영 및 확장할 수 있도록 한다.
RDS에서 지원하는 RDB 목록은 다음과 같다
이중에서 MySQL 데이터베이스 인스턴스를 생성할 예정이다.
RDS 데이터베이스로 이동한 후 데이터베이스 생성 버튼을 누른다.
데이터베이스 생성 방식과 엔진 옵션을 선택한다.
데이터베이스 생성 방식은 손쉬운 생성으로 하면 간편하지만 여기서는 표준 생성으로 해보겠다.
엔진 유형으로 MySQL을 선택하고 원하는 엔진 버전을 고른다.
💡 DB 생성 후 단일 AZ를 다중 AZ로 변경할 수 있다.
sudo apt install mysql-server -y
# -u는 DB 인스턴스를 생성할 때 정한 마스터 사용자의 이름을, -h는 엔드포인트를 적는다.
mysql -u admin -p -h velog-db.ccgaomuba7mo.ap-northeast-2.rds.amazonaws.com
Enter password:
# 비밀번호를 정상적으로 입력하면 mysql에 접속할 수 있다.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 17
Server version: 8.0.28 Source distribution
Copyright (c) 2000, 2022, Oracle and/or its affiliates.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>