A Help Desk For Web Developper
Friday, October 12, 2012
Something to remember: ERROR 2003 (HY000): Can't connect to MySQL server ...
Something to remember: ERROR 2003 (HY000): Can't connect to MySQL server ...: If you came across this error, because it is in the 2000's error codes then it is a MySQL client error, this means that the connection that ...
Tuesday, May 22, 2012
MySQL Tutorial - Import or Export A Database
This tutorial outlines the steps for importing and exporting MySQL databases via command line (SSH). Click Here for information about getting SSH access.
1. Export A MySQL DatabaseThis example shows you how to export a database. It is a good idea to export your data often as a backup.
- Using SSH, execute the following command:
mysqldump -u username -p database_name > dbname.sql
- 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.
File dbname.sql now holds a backup of your database and is ready for download to your computer.
2. Import A MySQL DatabaseThe file must be in .sql format. It can not be compressed in a .zip or .tar.gz file.
- Start by uploading the .sql file onto the Bluehost server
- If you haven't already done so, create the MySQL database via the cpanel. Click Here for further instructions
- Using SSH, navigate to the directory where your .sql file is.
- Next run this command:
mysql -p -u username database_name < file.sql
Note: The -p will prompt for your account's password.
Note: username is the user with rights to the database. If you are unsure what the username is you can use the same username and password used to sign into SSH.
Note: Make sure your database name has your Bluehost username prefix with the _ (underscore) after it and the database name.
Saturday, May 19, 2012
Tuesday, May 1, 2012
Drupal Tutorial - Tips and Tricks: How to Set Up a Multisite Drupal Installation?
Drupal Tutorial - Tips and Tricks: How to Set Up a Multisite Drupal Installation?: Multisite 10 minute Install: Server: LAMP SSH (telnet) Client: ssh (PuTTY if you are using Windows to access your LAMP host) Must have...
Drupal Tutorial - Tips and Tricks: How to set up Drupal 7 Website
Drupal Tutorial - Tips and Tricks: How to set up Drupal 7 Website: Hello Drupalers, It has been about two weeks and drupal 7 has been launched to rock the web world. However, as we know from its architecture...
Subscribe to:
Comments (Atom)