开发者

Can't dump mysql backup file [closed]

开发者 https://www.devze.com 2023-04-03 16:15 出处:网络
Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflo开发者_开发技巧w.
Closed. This question is off-topic. It is not currently accepting answers.

Want to improve this question? Update the question so it's on-topic for Stack Overflo开发者_开发技巧w.

Closed 11 years ago.

Improve this question

I have created a backup of my database and now I want to dump it in to my local machine. My machine is linux machine and I have th eroot password for machine. I tried to dump the in to my local backup database using root password on ssh, but i keep getting an errror . "ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)". Please suggest me what to do

This is the command I am using " mysql < backup.dump.gz"


Try:

gunzip < backup.dump.gz | mysql -u root -p

And enter your password when prompted.

0

精彩评论

暂无评论...
验证码 换一张
取 消