Cara Import dan Export MySQL Ukuran Besar via SSH (putty)
Nyari tutorial kesana kemari akhirnya ketemu juga nih. Solusi buat Import database yang kebesaran untuk di upload melalui phpmyadmin. Tapi ini bisa digunakan untuk VPS yah atau yang lainnya yang memiliki akses SSH. Awalnya file tersebut di upload dulu menggunakan software filemanager, saya disini menggunakan WinSCP. Karena lebih powerfull untuk VPS. Setelah di upload baru jalankan puttynya.
Berikut saya repost dari siniĀ https://my.bluehost.com/cgi/help/112
1.Ā 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.
- 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 DatabaseĀ
The 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.
- 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.
Comments