Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

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!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hello, @admin1c235b282fa044969fa081215
MariaDB uses internal log files for InnoDB (like ib_logfile0 and ib_logfile1). If one is missing or corrupted, MariaDB cannot start because it relies on those to recover data and ensure consistency.
If you have backup of your data you can try restore from the backup file. If backup file is not present let me know and I can give you instructions on how to recover.
Regards
Hey there 👋
Before anything else, make sure you have a backup of your Droplet:
https://docs.digitalocean.com/products/backups/how-to/create-and-restore/
That way, if anything goes wrong, you can try to recover from the backup.
Now, looking at the logs, MariaDB is complaining that ib_logfile0 is missing. That file is part of the InnoDB storage engine, and without it, MariaDB can’t start.
⚠️ If you’re certain the data isn’t needed (like on a new setup), you can remove the log files and let MariaDB regenerate them, first stop the MariaDB service and then:
sudo rm -f /var/lib/mysql/ib_logfile*
sudo systemctl start mariadb
If you’re still having issues or want to dig deeper, share the output of:
journalctl -xeu mariadb
- Bobby
Failed to start mariadb.service - MariaDB 10.11.11 database server.