Home > Database > Mysql Tutorial > body text

MySQL重装系统后还原MySQL数据库总结

WBOY
Release: 2016-06-07 17:52:56
Original
1399 people have browsed it

我们经常会碰到关于MySQL数据库安装与数据库的还原方法总结,方法有很多种下面一一介绍。

方法一

在安装mysql数据库前我们利用phpmyadmin备份数据库,安装好之后直接导入即可。


方法二

1、先在运行中输入services.msc,找到MysQL的服务,将其停止;

2、然后备份新安装的MY.INI和DATA这两个目录,直接将其原来mysql/data下的文件拷到新安装的mysql/data目录下即可;

3、启动MysQL服务。


方法三

用mysql命令模式备份与还原数据

mysqldump -h 主机 -u数据户用户名 -p数据库密码 数据库 > bak.sql

MySql还原恢复数据库命令:

mysql -h 主机 -u数据户用户名 -p数据库密码 数据库

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template