nfury007 Active Member 488 2010 44 0 Jul 10, 2011 #1 Hellow I have my database backup on my leech. I want to add this back up to my new vps. I am using kloxo panel Can anyone help me please???? Thx in advance<3
Hellow I have my database backup on my leech. I want to add this back up to my new vps. I am using kloxo panel Can anyone help me please???? Thx in advance<3
M madaboutlinux Active Member 57 2011 3 0 Jul 12, 2011 #2 Where you able to migrate the database on your new server?
Jason_weds_Freddy Banned Banned 280 2010 3 0 Jul 13, 2011 #3 login to you ssh.. and then for backup use: mysqldump --opt -u user -p dbname > {path}/backup.sql and for restore use mysql -u user -p dbname < {path}/backup.sql Replace user with the username of ur account (cpanel/kloxo) and {path} with the path.. for example mysqldump --opt -u nfury007 -p nfurydatabase > /home/nfury007/public_html/backup.sql Last edited: Jul 14, 2011
login to you ssh.. and then for backup use: mysqldump --opt -u user -p dbname > {path}/backup.sql and for restore use mysql -u user -p dbname < {path}/backup.sql Replace user with the username of ur account (cpanel/kloxo) and {path} with the path.. for example mysqldump --opt -u nfury007 -p nfurydatabase > /home/nfury007/public_html/backup.sql