# 모든 데이터 베이스 백업
$ mysqldump -u root -p --all-databases > backup.sql
# 백업 복구
$ mysql -u root -p < backup.sql
# 권한까지 복구한 경우 flush privileges 를 해줘야한다.
mysql) flush privileges;
'DB > MYSQL' 카테고리의 다른 글
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements (0) | 2021.03.03 |
---|---|
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement. (0) | 2021.03.03 |
mysql 5.7 install (0) | 2021.03.03 |
Foreign key constraint is incorrectly formed 에러 (0) | 2019.11.11 |
CHARACTER COLLATE 변경 (0) | 2019.11.06 |