Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

mysqldump. Location of the file?

I did an update on my db, but can't find the file so I can download it. Where is the file located at? Thanks in advance

   root@xxxx:~# mysqldump -u root -p cherio > myBackup.sql
    Enter password: 
    root@xxxx:~# find myBackup.sql
    myBackup.sql

EDIT:

I tried this:

  root@xxxx:~# find / -name "myBackup.sql"
  /root/myBackup.sql

Ok, I had to refresh my FTP for the file to show up.

like image 489
BlackMouse Avatar asked May 30 '12 08:05

BlackMouse


1 Answers

On the same directory you made the dump. It's ./myBackup.sql and not myBackup.sql Do an ls -all.

like image 195
Panagiotis Avatar answered Oct 09 '22 18:10

Panagiotis