Move Tiki using SSH | |
WARNING: INCOMPLETE/INACCURATE - this is a new page not yet complete or even correct. Initial content adapted from Domain Migration to a Unix Server by Dirk Brockhausen To switch Web hosts or install tiki on a new server entails the migration of all your tiki files, image uploads, attachments and databases. This page will focus on how to transfer the files and database from your previous server to the new one. |
Migration often isn't as Simple as it Looks | |
At first glance, this task may seem straightforward enough: in some cases you can use FTP to move tiki to a new server, but sometimes there are problems. However, this approach has several serious drawbacks:
If you proceed in this manner, you'll be in for a lot of adjustment work to make everything run as it did before. This applies especially to CGI scripts where directory and file permissions are critical to ensure functionality. Migration Made Easy Here's a method that will simplify your migration and slash unnecessary work in the process. |
Log in to your old server | |
You can do this by Telnet or PuTTY as user which here we call domainowner. |
Find your site directory | |
Navigate to your old domain directory using a command like this. :cd /usr/www/htdocs/yourdomain).(substitute your info for italicized text) |
Create a zip file with everything in it. | |
You can compress all the files into an archive by entering the following on the command line: tar -cpz --same-owner -f yourdomain.tar.gz * .htaccess Understanding tar The "tar" command requires the following syntax: function:
You may chose any file name you prefer, as long as you stick to the extension ".tar.gz". |
Create a user account on the new server | |
Now, on the new server, you will have to configure user account "domainowner" and the directory "/usr/www/htdocs/yourdomain". Note that if the directory names on your previous server are not identical to those on your new server, you may have to modify the path variables in your tiki and theme files. Hence, it's strongly recommended that you simply clone directory names. |
Upload the archive. | |
Upload the file "yourdomain.tar.gz" to your new system. There are two possible ways to do this: |
Log into the new system | |
log in via Telnet e.g. as user "domainowner". |
Locate your new directory | |
Switch into your domain directory e.g. by typing: cd /usr/www/htdocs/yourdomain |
Unpack the achive | |
Next, you'll need to unpack the archive file. Enter the command: tar -xz -f yourdomain.tar.gz function: x extract files from an archive There - you have now successfully duplicated the previous, familiar environment on your new system! However, I'd recommend that you test the new domain setup thoroughly, especially your CGI scripts, before you launch it officially. |
Exporting the database | |
Restoring the database | |