Just Host Web Hosting Help

Managing Databases via Command Line (SSH)

Using SSH can be a superior way to manage the files and databases on your account. Using a simple command you can import or export a MySQL database into an existing database on your account. Click Here for information about getting SSH access.If you are looking for instructions for importing or exporting databases using phpMyAdmin, please see Import Databases with phpMyAdmin



Please note that in the examples below the -p will prompt for your account's password. And that your database name needs to include your Just Host username, e.g. examplec_database.

Exporting MySQL Data

This example shows you how to export a database. It is a good idea to export your data often as a backup.
  1. Using SSH, execute the following command:
            
            mysqldump -p -u username database_name > dbname.sql
            
  2. You will be prompted for a password, type in the password for the username and press Enter. Replace username, password and database_name with your MySQL username, password and database name.

The file dbname.sql now holds a backup of your database and is ready for download to your computer.

To export a single table from your database you would use the following command:

mysqldump -p --user=username database_name tableName > tableName.sql
Again you would need to replace the username, database and tableName with the correct information.

Once done the table specified would then be saved to your account as tableName.sql

Import A MySQL Database

The file must be in .sql format. It can not be compressed in a .zip or .tar.gz file.
  1. Start by uploading the .sql file onto the Just Host server
  2. If you haven't already done so, create the MySQL database via the cpanel. Click Here for further instructions
  3. Using SSH, navigate to the directory where your .sql file is.
  4. Next run this command:
     mysql -p -u username database_name < file.sql 

To import a single table into an existing database you would use the following command:

mysql -u username -p -D database_name < tableName.sql
Knowledgebase Article 357,164 views bookmark tags: database mysql ssh (updated 351 days ago)


Was this resource helpful?

Did this resolve your issue?


Please add any other comments or suggestions about this content:





Recommended Help Content

How do I import a database using command line? (SSH) (updated 762 days ago)
Knowledgebase Article 302,580 views tags: command database import line mysql phpmyadmin ssh

I need to Export or Import a MySQL database (updated 351 days ago)
Knowledgebase Article 171,800 views tags: mysql phpmyadmin ssh

This article will explain MySQL database and user creation and deletion, and explain how to assign a user to a database. (updated 567 days ago)
Knowledgebase Article 362,984 views tags: creation database mysql

Related Help Content

This article will go over different application available for remote connection to your databases. (updated 577 days ago)
Knowledgebase Article 30,592 views tags: database mysql

How to export your database in phpMyAdmin.. (updated 581 days ago)
Knowledgebase Article 55,430 views tags: database export myphpadmin

This article will explain how to connect your scripts to your MySQL databases. (updated 573 days ago)
Knowledgebase Article 15,426 views tags: database mysql scripts

Users having problems connecting to mysql database using SSH and/or putty/other client. (updated 1476 days ago)
Knowledgebase Article 55,445 views tags: connection ip mysql putty ssh whitelist

How do I create a MySQL backup? (updated 112 days ago)
Knowledgebase Article 119,337 views tags: backup database mysql

How do I make my MySQL database compatible with the version you provide? (updated 1777 days ago)
Knowledgebase Article 58,939 views tags: database mysql

This article will explain how to change the password for a database in the event that the original password is lost. (updated 573 days ago)
Knowledgebase Article 16,551 views tags: database mysql password

A repository of information on how you can manage your database by using the phpMyAdmin interface. (updated 581 days ago)
Knowledgebase Article 122,340 views tags: commands database mysql phpmyadmin