TEHCC Wiki:Maintenance
Maintenance notes:
System Maintenance
- Update MediaWiki
- Patch - Available for point releases. Details on the MediaWiki site
- Download patch from the dumps site
- cd to
cd ~/public_html/clubwiki/
directory (the one with LocalSettings.php). - Download (wget) the patch file from the dumps site and gunzip it
gunzip mediawiki stable release number.patch.gz
. - Use
patch -p1 --dry-run
to check what will be changed (e.g.,patch -p1 --dry-run -i mediawiki stable release number.patch
) - If all is well, run patch again without
--dry-run
. - Check Special:Version and you should see the new version number in place.
- Delete patch files
rm mediawiki stable release number.patch*
- Patch - Available for point releases. Details on the MediaWiki site
- Upgrade - detailed later
- Update extensions
- Composer based (Semantics, others?)
- cd to
cd ~/public_html/clubwiki/
directory (the one with LocalSettings.php). - Update composer
php-cli composer.phar self-update
- Update using composer
php-cli composer.phar update
- cd to
- Manual extensions - Go to Special:Version and compare what's shown on extension page
- NumberFormat - Download needed updates and extract into the extension directory
tar -xzf extension.tar.gz -C public_html/clubwiki/extensions/
- Note: Special:Version currently shows v0.8.0, but site shows v0.8.1, updating doesn't increment.
- NumberFormat - Download needed updates and extract into the extension directory
- Remaining extensions are part if MediaWiki and upgraded with it
- Composer based (Semantics, others?)
- Update completion - run maintenance routine from
cd ~/public_html/clubwiki/
directory:php-cli maintenance/update.php
Site Maintenance
- Cleanup after a spam/vandalism battle
- cd to
cd ~/public_html/clubwiki/
directory (the one with LocalSettings.php) - Delete archived revisions (deleted page revisions)
php-cli maintenance/deleteArchivedRevisions.php
for dry run, then executephp-cli maintenance/deleteArchivedRevisions.php --delete
- Delete users older than 7 days with no edits
php-cli maintenance/removeUnusedAccounts.php --ignore-touched 7
for dry run, then executephp-cli maintenance/removeUnusedAccounts.php --ignore-touched 7 --delete
- cd to