共计 453 个字符,预计需要花费 2 分钟才能阅读完成。
1、应用 tar 包装文件夹备份。数据库能够间接保留 data 文件夹,然而占用空间大,能够用 tar 包装压缩保留。
[root@localhost ~]# systemctl stop mysqld
[root@localhost ~]# tar Jcvf /opt/mysql-$(date +%F).tar.xz /usr/local/mysql/data/
[root@localhost ~]# ls /opt/
mysql-2021-10-25.tar.xz
[root@localhost ~]# systemctl start mysqld
2、应用 mysqldump 工具备份,更灵便地管制备份内容,例如,能够独自备份几个表或库。
[root@localhost ~]# mysqldump -u root -p123456 --databases info > /opt/info.sql #对 info 库进行备份
[root@localhost ~]# ls /opt/
info.sql
以上就是 mysql 常见的备份办法,心愿对大家有所帮忙。更多 mysql 学习指路:Mysql
正文完