TEHCC Wiki:Maintenance: Difference between revisions
Jump to navigation
Jump to search
m (→Update extensions: Semantic Compound Queries now work with composer) |
m (update for new php location) |
||
Line 1: | Line 1: | ||
'''Note!''' Any site specified use of php on the command line should replace <kbd>php</kbd> with <kbd>/ | '''Note!''' Any site specified use of php on the command line should replace <kbd>php</kbd> with <kbd>/opt/php70/bin/php</kbd>. | ||
==System Maintenance== | ==System Maintenance== | ||
Line 40: | Line 40: | ||
#Composer based (Semantic MediaWiki, Maps, and Semantic Result Formats) | #Composer based (Semantic MediaWiki, Maps, and Semantic Result Formats) | ||
## <kbd>cd</kbd> to <code>cd ~/public_html/clubwiki/</code> directory (the one with LocalSettings.php). | ## <kbd>cd</kbd> to <code>cd ~/public_html/clubwiki/</code> directory (the one with LocalSettings.php). | ||
## Update composer <code>/ | ## Update composer <code>/opt/php70/bin/php composer.phar self-update</code> | ||
## Update using composer <code>/ | ## Update using composer <code>/opt/php70/bin/php composer.phar update</code> | ||
# Manual extensions - Go to [[Special:Version]] and compare what's shown on extension page | # Manual extensions - Go to [[Special:Version]] and compare what's shown on extension page | ||
## [https://www.mediawiki.org/wiki/Extension:NumberFormat NumberFormat] - Download needed updates and extract into the extension directory <code>tar -xzf extension.tar.gz -C public_html/clubwiki/extensions/</code> | ## [https://www.mediawiki.org/wiki/Extension:NumberFormat NumberFormat] - Download needed updates and extract into the extension directory <code>tar -xzf extension.tar.gz -C public_html/clubwiki/extensions/</code> | ||
Line 47: | Line 47: | ||
## [https://www.mediawiki.org/wiki/Extension:Page_Forms/Download_and_installation Page Forms] - Download extension and extract into the extension directory <code>tar -xzf extension.tar.gz -C public_html/clubwiki/extensions/</code> | ## [https://www.mediawiki.org/wiki/Extension:Page_Forms/Download_and_installation Page Forms] - Download extension and extract into the extension directory <code>tar -xzf extension.tar.gz -C public_html/clubwiki/extensions/</code> | ||
# Remaining extensions are part of MediaWiki and upgraded with it | # Remaining extensions are part of MediaWiki and upgraded with it | ||
# Update completion - run maintenance routine from <code>cd ~/public_html/clubwiki/</code> directory: <code>/ | # Update completion - run maintenance routine from <code>cd ~/public_html/clubwiki/</code> directory: <code>/opt/php70/bin/php maintenance/update.php</code> | ||
==Site Maintenance== | ==Site Maintenance== | ||
Cleanup after a spam/vandalism battle | Cleanup after a spam/vandalism battle | ||
# <kbd>cd</kbd> to <code>cd ~/public_html/clubwiki/</code> directory (the one with LocalSettings.php) | # <kbd>cd</kbd> to <code>cd ~/public_html/clubwiki/</code> directory (the one with LocalSettings.php) | ||
# Delete archived revisions (deleted page revisions) <code>/ | # Delete archived revisions (deleted page revisions) <code>/opt/php70/bin/php maintenance/deleteArchivedRevisions.php</code> for dry run, then execute <code>/opt/php70/bin/php maintenance/deleteArchivedRevisions.php --delete</code> | ||
# Delete users older than 7 days with no edits <code>/ | # Delete users older than 7 days with no edits <code>/opt/php70/bin/php maintenance/removeUnusedAccounts.php --ignore-touched 7</code> for dry run, then execute <code>/opt/php70/bin/php maintenance/removeUnusedAccounts.php --ignore-touched 7 --delete</code> |
Revision as of 18:50, 30 April 2018
Note! Any site specified use of php on the command line should replace php with /opt/php70/bin/php.
System Maintenance
Upgrade/Reinstall
Use to upgrade across major versions or to reinstall a borked install
- Get MediaWiki (per MediaWiki site)
- Download desired version MediaWiki Site using wget to the home directory
- Unpack using tar -xvzf (e.g.,
tar -xvzf mediawiki stable release number.tar.gz
) - Delete zipped tarball (e.g.,
rm mediawiki stable release number.tar.gz
)
- Copy customized files to new install (per MediaWiki site)
- Copy Localsettings.php
- Copy Images folder
- Copy kml folder
- Move over to new install (per MediaWiki site)
- Move the existing installation to a temporary backup folder
mv ~/public_html/clubwiki/ ~/public_html/OLD.yyyymmdd.clubwiki
- Move the new installation to the public folder
mv ~/mediawiki stable release number ~/public_html/clubwiki
- Move the existing installation to a temporary backup folder
- Install extensions/handlers
- Composer except syntax to use php v5.6.
- Semantic MediaWiki using Composer except syntax to use php v5.6 - Ensure to specify the most recent/desired version of software!
- NumberFormat - Download extension and extract into the extension directory
tar -xzf extension.tar.gz -C ~/public_html/clubwiki/extensions/
- Maps using Composer except syntax to use php v5.6. Start at step 2.
- Page Forms - Download extension and extract into the extension directory
tar -xzf extension.tar.gz -C ~/public_html/clubwiki/extensions/
- Semantic result formats using Composer except syntax to use php v5.6. Ensure you specify most recent/desired version!
- Semantic Compound Queries I tried to use Composer but it wasn't loading so manually installed at v1.0.0. Used for auto map of trails and parks
- Run Mediawiki upgrade or command line update (per MediaWiki site)
- Done!
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*
Update extensions
- Composer based (Semantic MediaWiki, Maps, and Semantic Result Formats)
- cd to
cd ~/public_html/clubwiki/
directory (the one with LocalSettings.php). - Update composer
/opt/php70/bin/php composer.phar self-update
- Update using composer
/opt/php70/bin/php 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.
- Page Forms - Download extension and extract into the extension directory
tar -xzf extension.tar.gz -C public_html/clubwiki/extensions/
- NumberFormat - Download needed updates and extract into the extension directory
- Remaining extensions are part of MediaWiki and upgraded with it
- Update completion - run maintenance routine from
cd ~/public_html/clubwiki/
directory:/opt/php70/bin/php 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)
/opt/php70/bin/php maintenance/deleteArchivedRevisions.php
for dry run, then execute/opt/php70/bin/php maintenance/deleteArchivedRevisions.php --delete
- Delete users older than 7 days with no edits
/opt/php70/bin/php maintenance/removeUnusedAccounts.php --ignore-touched 7
for dry run, then execute/opt/php70/bin/php maintenance/removeUnusedAccounts.php --ignore-touched 7 --delete