Using mysqldump without MySQL server installed

devlogbook

Bryan

Posted on September 27, 2022

Using mysqldump without MySQL server installed

If you have a server such as a Web Server built using Laravel Forge, it only installs PHP and NGINX.

You plan on using a managed database from Digital Ocean and use the server to run mysqldump for database backup, you will not be able to.

In order to use mysqldump mysql-client must be installed on the server.

Log into SSH and run

sudo apt update
sudo apt install mysql-client
Enter fullscreen mode Exit fullscreen mode

Found info at https://mysqldump.guru/how-to-install-and-run-mysqldump.html

💖 💪 🙅 🚩
devlogbook
Bryan

Posted on September 27, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related