EC2에서 RDS(MySQL)에 연결하기
미리 RDS의 DB 인스턴스를 작성하고 있다고 전제가 되므로 양해 바랍니다.
준비
Amazon RDS의 DB 인스턴스 보안 그룹에서 MySQL 포트를 열어 봅시다.
mariaDB 삭제
$ sudo yum remove mariadb-libs
$ sudo rm -rf /var/lib/mysql
mysql이 설치되어 있는지 확인
$ yum list installed | grep mysql
mysql 설치
$ sudo yum install mysql
Amazon RDS에 연결
$ mysql -h {ENDPOINT} -P 3306 -u {Username} –p {Name}
password: hogehoge
// こんなのが表示されれば成功
Server version: 5.6.39 MySQL Community Server (GPL)
Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
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.
번외편:제거 방법
yum에서 제거 프로세스 수행
$ yum remove mysql
데이터가 들어 있는 디렉토리 삭제
$ rm -rf /var/lib/mysql
Reference
이 문제에 관하여(EC2에서 RDS(MySQL)에 연결하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/mcz9mm/items/731fd4ddaa8723aa736e텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)