Manual:Moving a wiki
This document is about how to move a wiki to another server. This is often needed when moving to a different web server or domain (or both).
Contents |
Versions and upgrading[edit]
The instructions on this page should apply more or less evenly to any given version of MediaWiki. Ensure, prior to moving, that any upgrading of the software and database schema is done. You should only move a database into another MediaWiki installation if they both run the same version. If you need to do both, make sure to upgrade before migrating to a different web server.
File transfer[edit]
Unless you have direct access to the server hosting the wiki, (and even then) you will have to choose a method for transferring files:
- SCP or WinSCP
- SSH File Transfer Protocol (SFTP)
- Using a FTP client.
- Using rsync
- The hosting company might provide a file manager interface via the web browser, check with your provider.
- Some other method, there is a list of these at Wikipedia:List of file transfer protocols
Overview[edit]
- Back up the database
- Back up the MediaWiki files
- Re-create the database, user and permissions
- Import the database backup
- Import the MediaWiki files
- Check the configuration file
- Test
Backup[edit]
To move or copy your wiki, you need to start by making a backup of everything. You should probably copy at least the following:
- The wiki's database content. See Manual:Backing up a wiki.
- Images and other media files, i.e. the contents of the images and if modified any files from the skins directory.
- Favicon and .htaccess files.
- Configuration files, e.g. LocalSettings.php and (on older wiki's maybe AdminSettings.php as well).
- The contents of the extensions directory.
Note: Before you start the backup your wiki, you may want to put it under "read-only" mode so that nobody can edit it while you are moving it. If you don't, you might lose edits/uploads/logs etc. that were made during the migration process. To do this, use $wgReadOnly
in LocalSettings.php. For example:
$wgReadOnly = 'Down for maintenance, access will be restored shortly';
Set up the destination database[edit]
On the destination server, create a new MySQL database and a user, and grant that user permissions on the database. SELECT, INSERT, UPDATE and DELETE permissions should suffice. You will also need DROP, CREATE and ALTER to import the data base. You may need to consult the MySQL documentation, your hosting provider's control panel documentation, or the documentation of any other utilities you are using for information on how to do this.
Note: The destination database may have a different name, user and/or password. If that is the case, you will only have to update the configuration file on the new server (after you completed the following steps, though).
Import the database backup[edit]
The next step is to import the database backup. This will create the tables in the database and populate them with data. Duplicating the database on the other server. Importing takes a variable amount of time, depending upon the number of pages, users, edits, etc. in the wiki.
Possible methods[edit]
See Manual:Restoring a wiki from backup for the full details. Possible methods for performing the import include:
- From the command line using mysql
- With phpMyAdmin via a web browser
- From an xml dump
- Using BigDump if you don't have command-line access and your MySQL administration tool has an upload size limit that is higher than the size of your database.
Import the MediaWiki files[edit]
The final "large" step in the moving process is to upload/copy the MediaWiki files (the "wiki" folder) to the destination server. If you followed the instructions above, and backed up the entire directory, this will include the images and extensions directories, plus custom skins, etc. and the configuration file.
If you backed up only portions of the directory, e.g. images, extensions, etc. then you will need to first upload/copy a fresh install of the MediaWiki files, then transfer the backed-up directories and files into the correct locations in the new filesystem.
Notes[edit]
- If following the latter process, ensure that your "fresh install" consists of the same version of MediaWiki as the old one did
- Check that the upload/ directory (called images/ in MediaWiki 13 and below) has the correct permissions set if using uploads; it needs to be writable by the web server.
- Make sure any extension directories have the correct permissions as well (e.g. if linux:
chmod -R o=rx extensions
orchmod -R o=rx includes
) - The best method to use when manually transferring a wiki from a windows platform to a Linux platform involves:
- Manually installing wikimedia on the Linux platform from a tar file as outlined here: Manual Install of Wiki (i.e. try not to use install from a automated package)
- Replacing the newly installed wikimedia folder (e.g. /var/www/mediawiki...) on your Linux machine with the wikimedia base folder from your windows machine
- Updating your Linux machine's MySQL Database (e.g. wikidb) with the wiki database from your windows machine (i.e. use the backup and restore features of mysql as outlined above)
- After importing a wiki database, even if the database can work, some minor problems may arise:
- Searchindex may need to be repaired: In phpMyAdmin, enter "REPAIR TABLE wikidb.searchindex; " for rebuilding the search index. wikidb is your database's name.
- The collation of some rows may be changed. Cross check it with the original database.
Update the configuration file[edit]
The final step is to update the LocalSettings.php file. Certain entries in this will almost undoubtedly require changing.
Check the following configuration options:
Configuration option | Description | Default/Example |
---|---|---|
$IP | Usually this is set automatically. However if you set it manually, it needs to be updated to absolute local file path to the MediaWiki directory on the new server. | Default:
$IP = dirname( __FILE__ ); |
$wgServer |
Needs to match the hostname of where the new wiki is served from (must not have a path, that's for $wgScriptPath ) |
Example:
$wgServer = 'http://example.org'; |
$wgScriptPath |
Needs to match the public url to where the MediaWiki directory is on the new server | Example:
$wgScriptPath = '/w'; |
$wgArticlePath |
Needs to match where wiki pages are now primarily read from. See also Manual:Short URL if you have short urls set up to make sure that still works. | Examples:
$wgArticlePath = '/w/index.php?title=$1'; $wgArticlePath = '/wiki/$1'; |
$wgDBserver |
The hostname to the new database server. | Example:
$wgDBserver = 'localhost'; |
$wgDBname |
The name of the database. Be sure that this includes any prefixes that your (new) hosting provider may have enforced. | Example:
$wgDBname = 'igot_mwiki'; |
$wgDBuser |
The username that MediaWiki should use to login on the database server. | Example:
$wgDBuser = 'igot_mwiki'; |
$wgDBpassword |
The password for the (new?) wgDBuser. | Example:
$wgDBpassword = 'xxxxxxx'; |
You might also need to check the paths to diff3, ImageMagick, etc.
Test[edit]
At this point, attempt to access the wiki on the new server and use it. Log in as a sysop and a regular user and check that viewing, creating and editing pages and uploading files still works. You will need to fix any problems reported either by PHP or MediaWiki itself.
See also[edit]
- Manual:Restoring a wiki from backup
- Manual:Upgrading
- Manual:Backing up a wiki
- Manual:Installing
- Manual:Restoring wiki code from cached HTML (if you don't have a successful backup)
External links[edit]
Notes[edit]
Language: | English • 日本語 |
---|