search
HomeDatabaseMysql Tutorialmysql备份数据库以及拷贝数据库到另一台服务器上_MySQL

可以用mysqladmin 创建db,不需要进入后再去创建了。

将mysql数据库导入目标机器后,执行mysqladmin flush-privileges,以便服务器重载授权表信息。


D:/MySql 5.1.73/bin/mysqladmin -u root create test2;

D:/Mysql 5.1.73/bin/mysqladmin -u root drop test2; 


warning:

Dropping  the database is potentially a very hard thing to do. 

Any data stored in the database will be destroyed. 

Do you really want to drop the 'test2' database [y/n]


----------------------------------------------------------------------------

(转载)将MySQL数据库拷贝到另一台机器

你可以在支持相同浮点格式的不同架构之间为MyISAM表复制.frm、.MYI和.MYD文件。(MySQL关注所有字节交换问题)。请参见15.1节,“MyISAM存储引擎”。

如果你需要在不同的架构之间转移数据库,可以使用mysqldump创建含有SQL语句的文件。然后你可以将文件转移到其它机器上,并将它输入到MySQL客户端。

使用mysqldump --help来看有哪些选项可用。如果你正将数据移动到更新版本的MySQL,你应当使用mysqldump –opt来利用各种优化性能来产生更小、可以更快处理的转储文件。

在两台机器之间移动数据库的最简单(尽管不是最快)的方法是在数据库所在的机器上运行下面的命令:

shell> <strong>mysqladmin -h '<em>other_hostname</em>' create <em>db_name</em></strong>
shell> <strong>mysqldump --opt <em>db_name</em> | mysql -h '<em>other_hostname</em>' <em>db_name</em></strong>

如果你想要从远程机器通过慢速网络复制数据库,可以使用:

shell> <strong>mysqladmin create <em>db_name</em></strong>
shell> <strong>mysqldump -h '<em>other_hostname</em>' --opt --compress <em>db_name</em> | mysql <em>db_name</em></strong>

还可以将结果保存到文件中,然后将文件转移到目标机器上并将文件装载到数据库中。例如,可以在源机器上使用下面的命令将数据库备份到文件中:

shell> <strong>mysqldump --quick <em>db_name</em> | gzip > <em>db_name.contents</em>.gz</strong>

(该例子中创建的文件是压缩格式)。将含有数据库内容的文件到目标机上并运行命令:

shell> <strong>mysqladmin create <em>db_name</em></strong>
shell> <strong>gunzip db_name.contents.gz | mysql <em>db_name</em></strong>

还可以使用mysqldumpmysqlimport来转移数据库。对于大的表,比只是使用mysqldump要快得多。在下面的命令中,DUMPDIR代表用来保存mysqldump输出的目录全路径名。

首先,创建保存输出文件的目录并备份数据库:

shell> <strong>mkdir DUMPDIR</strong>
shell><strong>mysqldump --tab=DUMPDIR <em>db_name</em></strong>

然后将DUMPDIR目录中的文件转移到目标机上相应的目录中并将文件装载到MySQL:

shell> <strong>mysqladmin create <em>db_name</em>            # create database</strong>
shell> <strong>cat DUMPDIR/*.sql | mysql <em>db_name</em>    # create tables in database</strong>
shell> <strong>mysqlimport <em>db_name</em> DUMPDIR/*.txt    # load data into tables</strong>

不要忘记复制MySQL数据库,因为授权表保存在该数据库中。你可能需要在新机器上用MySQL root用户运行命令,直到产生MySQL数据库。

将mysql数据库导入目标机器后,执行mysqladmin flush-privileges,以便服务器重载授权表信息。

----------------------------------------------------------------------------------------------------------------------------------

按照上面的方法试了个多小时成功了,主要是上面的命令说的不是很完整:

shell> <strong>mysqladmin -h '<em>other_hostname</em>' create <em>db_name</em></strong>
<strong><em>(mysqladmin -h other_hostname -u username -p create db_name)</em></strong>
shell> <strong>mysqldump --opt <em>db_name</em> | mysql -h '<em>other_hostname</em>' <em>db_name</em></strong>
<strong><em>(</em><strong>mysqldump -h local_host -u username -p local_<em>db_name</em> | mysql -h <em>other_hostname -u username -p db_name</em></strong><em>)</em></strong>

Statement
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
How do you alter a table in MySQL using the ALTER TABLE statement?How do you alter a table in MySQL using the ALTER TABLE statement?Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

How do I configure SSL/TLS encryption for MySQL connections?How do I configure SSL/TLS encryption for MySQL connections?Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

How do you handle large datasets in MySQL?How do you handle large datasets in MySQL?Mar 21, 2025 pm 12:15 PM

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

How do you drop a table in MySQL using the DROP TABLE statement?How do you drop a table in MySQL using the DROP TABLE statement?Mar 19, 2025 pm 03:52 PM

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

How do you create indexes on JSON columns?How do you create indexes on JSON columns?Mar 21, 2025 pm 12:13 PM

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?Mar 18, 2025 pm 12:00 PM

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)

How do you represent relationships using foreign keys?How do you represent relationships using foreign keys?Mar 19, 2025 pm 03:48 PM

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.