프로필사진 글목록 방명록 이웃추가
Today:     Yesterday:     Total:

JunToday.com

mysql 전체 백업 -- Warning: Skipping the data of table mysql.event. Specify the --events option explicitly. 본문

생활속의 IT 노하우/리눅스

mysql 전체 백업 -- Warning: Skipping the data of table mysql.event. Specify the --events option explicitly.

JunToday 2021. 4. 14. 10:39
728x90

mysql에서 mysqldump로 전체 백업을 받을 때 아래와 같이 Warning 경고 메세지가 나온다.

# mysqldump -u root -p --all-databases > all_db-backup.dump
Enter password:
-- Warning: Skipping the data of table mysql.event. Specify the --events option explicitly.

이 경고는 mysql 5.1 버전에서 mysql.event 테이블이 추가되었기 때문에 --all-databases 옵션 만으로는 이벤트 테이블 백업이 되지 않기 때문에 나온다.

해결방법은 경고의 내용대로 --events 옵션을 추가하면 됨.

# mysqldump -u root -p --all-databases --events > all_db-backup.dump
Enter password:

 

728x90
Comments