EC2에서 RDS dump

yo·2020년 10월 22일
0
post-custom-banner

sudo mysqldump -u {master_username} -p -h {db_endpoint} {db_name} > {원하는 파일name}.sql

이 명령어 쳤는데 아래 같은 에러 메세지를 만났다.

Warning: A partial dump from a server that has GTIDs will by default include the GTIDs of all transactions, even those that changed suppressed parts of the database. If you don't want to restore GTIDs, pass --set-gtid-purged=OFF. To make a complete dump, pass --all-databases --triggers --routines --events.

해결방법: --set-gtid-purged=OFF 요걸 추가해주면 된다.

sudo mysqldump --set-gtid-purged=OFF -u {master_username} -p -h {db_endpoint} {db_name} > {원하는 파일name}.sql

profile
Never stop asking why
post-custom-banner

0개의 댓글