Client

طبقه بندی موضوعی
پیوندهای روزانه
پیوندها

MySQL Import and Export (.sql file) via SSH

چهارشنبه, ۶ دی ۱۳۹۱، ۰۷:۱۲ ب.ظ

Export A MySQL Database

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.

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 Bluehost 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 

    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.

نظرات  (۰)

هیچ نظری هنوز ثبت نشده است

ارسال نظر

ارسال نظر آزاد است، اما اگر قبلا در بیان ثبت نام کرده اید می توانید ابتدا وارد شوید.
شما میتوانید از این تگهای html استفاده کنید:
<b> یا <strong>، <em> یا <i>، <u>، <strike> یا <s>، <sup>، <sub>، <blockquote>، <code>، <pre>، <hr>، <br>، <p>، <a href="" title="">، <span style="">، <div align="">
تجدید کد امنیتی