trunk trasnfer

Mentalist

New member
Messages
2
Points
0
Hi, how can i trasnfer my trunk to another host? Can anyone tell me step by step the route? or at least give me some explanation?XD

 
copy  and paste


WinSCP to Desktop to WinSCP New host

 
Last edited by a moderator:
well that was enough clear , i meant about the sql.. will i have problem with my sql database if i transfer my trunk host?

 
From Putty:

Login to putty(assuming that you using linux)

type following command

mysqldump -u root -pPASSWORDHERE database > filename.sql 
it will create filename.sql in the folder you are in, download that filename.sql to your pc, connect to your new vps, transfer filename.sql to there.

then open putty and type following command

mysql -u root -pPASSWORDHERE database < filename.sql


OR

If using PhpMyAdmin:

select a database, and export the database by button located at top, choose appropriate options, and export it,(file will be downloaded.)

On New Host:

Login to phpmyadmin,create database, select that database, Press Import button located at top(besides Export Button), Choose your sql file and submit, and your database will be transferred.

 
Hello,

or better to ask for help, on your new HOST
default_smile.png


 
Back
Top