在 windows7 cmd mysql server 5.7 上创建 mysql dumpfle
create mysql dumpfle on windows7 cmd mysql server 5.7
我在下面的网站上有一张图片,它显示了我所做的所有尝试都是徒劳的。
创建此转储文件的正确方法是什么?我想创建它并在以后使用它。
似乎是身份验证问题。你给它正确的密码吗?如果是,请检查是否允许使用此密码的用户从本地主机登录。信息应该在用户table。
根据this,
- --password[=password], -p[password]
The password to use when connecting to the server. If you use the
short option form (-p), you cannot have a space between the option and
the password. If you omit the password value following the --password
or -p option on the command line, mysqldump prompts for one.
如果您的用户名是 root
,密码是 root
,请更改
mysqldump -u root -p root
到
mysqldump -u root -proot
我认为系统中的用户登录器没有指定位置的写入权限。
尝试在 c:\users\YOUR_LOGIN_NAME
中的个人资料文件夹中写入转储
例如:
mysqldump -uroot -proot derek > c:\users\matt\dump.sql
我在下面的网站上有一张图片,它显示了我所做的所有尝试都是徒劳的。
创建此转储文件的正确方法是什么?我想创建它并在以后使用它。
似乎是身份验证问题。你给它正确的密码吗?如果是,请检查是否允许使用此密码的用户从本地主机登录。信息应该在用户table。
根据this,
- --password[=password], -p[password]
The password to use when connecting to the server. If you use the short option form (-p), you cannot have a space between the option and the password. If you omit the password value following the --password or -p option on the command line, mysqldump prompts for one.
如果您的用户名是 root
,密码是 root
,请更改
mysqldump -u root -p root
到
mysqldump -u root -proot
我认为系统中的用户登录器没有指定位置的写入权限。
尝试在 c:\users\YOUR_LOGIN_NAME
中的个人资料文件夹中写入转储例如:
mysqldump -uroot -proot derek > c:\users\matt\dump.sql