MySQL 转储没有正确转储
MySQL dump does not properly dump
我先运行以下命令:
mysqldump -u root -p password --all-databases > dump.sql
然后当我 运行 nano dump.sql
我得到以下内容。
Usage: mysqldump [OPTIONS] database [tables]
OR mysqldump [OPTIONS] --databases [OPTIONS] DB1 [DB2 DB3...]
OR mysqldump [OPTIONS] --all-databases [OPTIONS]
For more options, use mysqldump --help
我不确定这是否正确,或者我是否运行命令错误或其他原因。
来自 mysqldump 文档
If you use the short option form (-p), you cannot have a space between
the option and the password
我先运行以下命令:
mysqldump -u root -p password --all-databases > dump.sql
然后当我 运行 nano dump.sql
我得到以下内容。
Usage: mysqldump [OPTIONS] database [tables]
OR mysqldump [OPTIONS] --databases [OPTIONS] DB1 [DB2 DB3...]
OR mysqldump [OPTIONS] --all-databases [OPTIONS]
For more options, use mysqldump --help
我不确定这是否正确,或者我是否运行命令错误或其他原因。
来自 mysqldump 文档
If you use the short option form (-p), you cannot have a space between the option and the password