I booted from Recovery ISO, opened recovery console and ran command
mysqldump -u username -p database_name > data-dump.sql
Output
bash: mysqldump: command not found
I tried to find out but mysql was not installed, then I proceeded to install it.
sudo apt update
sudo apt install mysql-server
But the results returned
No space left on device
so i can’t install mysql on recovery environment, so i can’t create database backup via mysqldump command. What should I do, when droplet is down
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Heya, @3a956ebeda09409f879334ecda13c0
What you can try is to copy the /var/lib/mysql data to your local machine instead of trying to install ‘mysql’ during recovery.
lsblk
You should see something like:
vda 250G ├─vda1 250G /
vda1
, mount it:mkdir /mnt/recovery mount /dev/vda1 /mnt/recovery
ls /mnt/recovery/var/lib/mysql
You should see folders corresponding to your databases.
mkdir -p /mnt/recovery/root/mysql-backup
cp -r /mnt/recovery/var/lib/mysql /mnt/recovery/root/mysql-backup/
Now, you need to download the database backup before reinstalling the Droplet.
passwd root
service ssh start
ip a
scp -r root@<RECOVERY_IP>:/mnt/recovery/root/mysql-backup/ .
Once you have backed up your MySQL data, rebuild your Droplet and restore the database.
Hope that this helps!
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.