Today :
Yesterday :
Total :
Yesterday :
Total :
Notice
Recent Posts
Recent Comments
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:39728x90
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
'생활속의 IT 노하우 > 리눅스' 카테고리의 다른 글
CentOS6 mysql 데이터경로(datadir) 변경 (0) | 2022.02.28 |
---|---|
리눅스 net-snmp에서 snmp v3 설정 (0) | 2022.02.09 |
CentOS 6 yum Error: Cannot find a valid baseurl for repo: base (0) | 2021.03.18 |
CentOS 8 지원 종료, CentOS Stream으로 전환? 대체제는? (0) | 2021.02.18 |
CentOS7.6 설치 + b120i raid controller driver 설치 (0) | 2020.11.19 |
Comments