Today :
Yesterday :
Total :
Yesterday :
Total :
Notice
Recent Posts
Recent Comments
목록덤프백업 (1)
JunToday.com
mysql 전체 백업 -- Warning: Skipping the data of table mysql.event. Specify the --events option explicitly.
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-databas..
생활속의 IT 노하우/리눅스
2021. 4. 14. 10:39