MySQLDump to local machine from remote server connected via SSH -
mysqldump -h xxx.xxx.xxx.xxx -u username -ppassword databasename > c:\path\to\store\file
it seemed work paused while file downloading, no file appears once completes.
do have wrong in command line?
use this:
mysqldump -p3306 -h192.168.20.151 -u root -p database > c:/my.sql
hope you:)
edition linux
mysqldump -u root -p databasename > ~/downlaods/filename.sql
Comments
Post a Comment