Using SSH to Import and Export your Data and Databases You can export your database by using the "mysqldump" command.
From the SSH command line, enter the command:
mysqldump your_db_name > your_db_name.dmp
This will push all data from the specified database into a dump file for backup.
To import data from a dump file you can simply direct it into the MySQL command.
mysql...
Creating a MySQL Database To create a database:
1. login to your account control panel
2. click "Database Manager" in the Site Management section.
3. You will see a button that says "add db" type your database name in the text box to the left of that button then click add db.
4. Click back
...
Managing databases with phpMyAdmin Your databases can be managed with phpMyAdmin, an open source application designed for managing MySQL. To get to your installation of phpMyAdmin:
• Log into your cPanel through your customer manager at https://my.jumpline.com
• Click on “My Products” and then “Control Panel” across from your hosting package
• Once logged into your cPanel, click on...