Restoring MySQL database via SSH/Telnet

Andy

Administrator
Creative Team
User ID
1
Joined
7 Jan 2019
Messages
1,121
Reaction score
57
Points
48
In order to restore your database via SSH or Telnet you will require 2 things:

  1. SSH or Telnet access to your site. You will need to check with your hosting company to see if this is available.
  2. An SSH/Telnet Client, such as PuTTY.
Note said:
If your database backup resides on your home computer, you will first have to upload it via FTP to your website
Open your SSH/Telnet client and log into your website. The command line prompt you will see will vary by OS. For most hosting companies, this will bring you into the FTP root folder.

You can either change directoties to wherever the backup is located and type in the following:
Bash:
mysql -u dbusername -p databasename < backupname.sql
Or if you do not want to change directories and you know the path to where the backup is located, type in the following:
Bash:
mysql -u dbusername -p databasename < /path/to/backupname.sql
You will be prompted for the database password. Enter it and the database will backup.

If your hosting company has you on a remote MySQL server, such as mysql.yourhost.com, you will need to add the servername to the command line. The servername will be the same as in your config.php. The command line will be:
Bash:
mysql -h servername -u dbusername -p databasename < backupname.sql
Or:
Bash:
mysql -h servername -u dbusername -p databasename < /path/to/backupname.sql

This tutorial also works with MariaDB.

Related tutorial: Backing up MySQL database via SSH/Telnet
 
 Short URL:
Back
Top