Migrating from hostmonster to fastdomain

Almost 1 year with hostmonster, overall experience I feel great. Full satisfaction with everything but as time for renewal come I decide to move to fastdomain for a reason that I can’t tell :-)

Here’s my note on moving from hostmonster to fastdomain ( I have ssh account enable in both) :

1. Login to hostmonster via shell ::

# cat wp-config.php

# mysqldump -uonezero5_101 -p onezero5_101 > wp-content/101.sql

# tar cvzf 101.tar.gz wp-content

# scp 101.tar.gz winhowsn@winhows.net:/home/winhowsn/www
winhowsn@winhows.net’s password:
101.tar.gz                                                                                                                  100%   26MB  26.2MB/s   00:01

Those steps will dumping database and put it in wp-content folder, pack it to tar.gz file and send it fastdomain via scp.

2. Login to fastdomain via shell ::

# cd www

Check if file already arrive in fastdomain.

# ls | grep 101
101.tar.gz

Download latest wordpress

# wget wordpress.org/latest.tar.gz
–09:48:55–  http://wordpress.org/latest.tar.gz
=> `latest.tar.gz’
Resolving wordpress.org… 72.233.56.138, 72.233.56.139
Connecting to wordpress.org|72.233.56.138|:80… connected.
HTTP request sent, awaiting response… 200 OK
Length: unspecified [application/x-gzip]

[     <=>                             ] 1,624,416      1.68M/s

09:48:56 (1.67 MB/s) – `latest.tar.gz’ saved [1624416]

Unpack

# tar xvzf latest.tar.gz

Rename folder, delete wp-content folder and replace it with file from hostmonster.

# mv wordpress 101

# rm -rf 101/wp-content/

# tar xvzf 101.tar.gz –directory=101

3. Create new database, add user to database and assign that user to database from mysql menu on cpanel.

4. Import sql file into dababase created in step 3.

# mysql -uwinhowsn_101 -p winhowsn_101 < wp-content/101.sql

5. Edit wp-config.php to reflect new information of database

6. Add domain using addon domain menu on cpanel, point it to folder 101.
Finish :-)

~468x60521 Migrating from hostmonster to fastdomain~

Related posts:

  1. Moving hostingformula.info : from ssh enabled host to cpanel enabled host My friend challenge me to move hostingformula.info to another...
  2. Change php behaviour with php.ini at FastDomain Hosting I’ve add new addon domain in my FastDomain Account...
  3. Use SimpleScripts at FastDomain for Install Wordpress I just knew if my account at FastDomain got...
  4. Install Wordpress at Home Hello everybody, at previous posts I’ve talk everything around...
  5. Step by step move drupal from localhost to drupal hosting : AddOn Domain Setting At previous post I have covered steps for domain...

Related posts brought to you by Yet Another Related Posts Plugin.

Step By Step

If you enjoyed this post, please consider to leave a comment or subscribe to the feed and get future articles delivered to your feed reader.

Comments are closed.