Bluehost Web Hosting Help
How Import Databases Using Command Line SSH
Importing 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 a MySQL database into an existing database on your account. If are looking for instructions to export a database, please go to the Exporting Databases via Command Line (SSH) article. If you are looking for instructions for importing and exporting databases using phpMyAdmin, please go to the Export Databases with phpMyAdmin articles.
Using Command Line (SSH) to import your MySQL database
The file must be in .sql format. It can not be compressed in a .zip or .tar.gz file.
- Upload the SQL file to the server via the file manager or an FTP client.
- If the database does not exist, please create a database, a user, and give the user full privileges to the database. Note the username and password.
- If you are unsure how to make a database, please refer to the MySQL Database Creation article.
- Log into the server through SSH
- Navigate to the directory where your .sql file is.
- Type in this command:
mysql -p -u user_name database_name < file.sql (replace 'user_name', 'database_name', and 'file.sql' with the actual name.) - You will be prompted for your database user password, and then your database will be imported.
Make sure your database name and username has your Bluehost username prefix (e.g. 'username_databasename'; 'username_databaseusername').
Recommended Help Content
How To Manage Databases With Command Line SSH
This article will instruct you how to export a database from the command line (SSH).
MySQL Import and Export
I need to Export or Import a MySQL database
How to Create and Delete MySQL Databases and Users
This article will explain MySQL database and user creation and deletion, and explain how to assign a user to a database.
Related Help Content
Import a MySQL Database using phpMyAdmin
How do I import a backup of my database (.sql file) using phpMyAdmin?
Connecting Scripts to MySQL Databases
This article will explain how to connect your scripts to your MySQL databases.
SSH Access
Is SSH/Shell access enabled by default?
MySQL Database Restore
How to Restore your MySQL Database?
MySQL Database Compatibility
How do I make my MySQL database compatible with the version you provide?
How to Backup a MySQL Database
How do I create a MySQL backup?
How To Reset MySQL Database User & Password
This article will explain how to change the password for a database in the event that the original password is lost.
Managing Databases with Applications
This article will go over different application available for remote connection to your databases.