Difference between revisions of "Setup MediaWiki on AWS"
Line 12: | Line 12: | ||
<br /> | <br /> | ||
<br /> | <br /> | ||
+ | <onlydft> | ||
=Mediawiki Installation/Upgrade= | =Mediawiki Installation/Upgrade= | ||
* Follow the steps from [https://www.mediawiki.org/wiki/Manual:Upgrading https://www.mediawiki.org/wiki/Manual:Upgrading] | * Follow the steps from [https://www.mediawiki.org/wiki/Manual:Upgrading https://www.mediawiki.org/wiki/Manual:Upgrading] | ||
Line 24: | Line 25: | ||
==Updated Extensions== | ==Updated Extensions== | ||
I had to update several extensions to match the new format. | I had to update several extensions to match the new format. | ||
− | + | ||
<source lang="php"> | <source lang="php"> | ||
<?php | <?php | ||
Line 63: | Line 64: | ||
</source> | </source> | ||
− | + | ||
=AWS= | =AWS= | ||
==EC2== | ==EC2== | ||
* Go for free-tier t2-micro with attached EBS drive (20GB) | * Go for free-tier t2-micro with attached EBS drive (20GB) | ||
* Set OS to Ubuntu Server 16.04. | * Set OS to Ubuntu Server 16.04. | ||
− | * | + | * EC2 Insance i-0ad8bd01648543063 |
* Install MediaWiki on it, without data | * Install MediaWiki on it, without data | ||
* Install emacs | * Install emacs | ||
* Make an AMI out of it | * Make an AMI out of it | ||
* Move the images, extensions, skins, etc to newly installed MW. | * Move the images, extensions, skins, etc to newly installed MW. | ||
− | * Install ddclient. | + | * Install ddclient. Map domain to hadoop02.dyndns.org |
==S3== | ==S3== | ||
− | * Create a bucket for backups | + | * Create a bucket for backups (backup-dft-hadoop02) |
==Backups== | ==Backups== | ||
Line 87: | Line 88: | ||
* All information in /home/ubuntu/.duply/test/conf | * All information in /home/ubuntu/.duply/test/conf | ||
* Duplicity conf file: | * Duplicity conf file: | ||
− | + | ||
::<source lang="text"> | ::<source lang="text"> | ||
GPG_KEY='88E405A1' | GPG_KEY='88E405A1' | ||
Line 97: | Line 98: | ||
MAX_AGE=1M | MAX_AGE=1M | ||
</source> | </source> | ||
− | + | ||
* create script in /usr/local/bin, called backupDftWiki3MySql.sh to do mysqldump of MW to an sql file, and store it: | * create script in /usr/local/bin, called backupDftWiki3MySql.sh to do mysqldump of MW to an sql file, and store it: | ||
<source lang="bash"> | <source lang="bash"> | ||
Line 109: | Line 110: | ||
* Created new domain dominiquefthiebaut.com | * Created new domain dominiquefthiebaut.com | ||
* Create record to map it to EC2 instance. | * Create record to map it to EC2 instance. | ||
− | * Find public IP of EC2 | + | * Find public IP of EC2 35.153.83.30 and put in edit-box in record. Accept defaults. |
* Disable ddclient on EC2 and with dyndns. | * Disable ddclient on EC2 and with dyndns. | ||
* Change the name of the host in /etc/hosts from hadoop02 to new hostname. | * Change the name of the host in /etc/hosts from hadoop02 to new hostname. | ||
Line 130: | Line 131: | ||
=Script to Copy MediaWiki from Xgridmac2 to EC2= | =Script to Copy MediaWiki from Xgridmac2 to EC2= | ||
− | + | ||
==On Xgridmac2== | ==On Xgridmac2== | ||
::<source lang="bash"> | ::<source lang="bash"> | ||
Line 175: | Line 176: | ||
</source> | </source> | ||
− | + | ||
<br /> | <br /> | ||
=Raw Log= | =Raw Log= | ||
− | + | ||
<source lang="text"> | <source lang="text"> | ||
1/4/18 | 1/4/18 |
Revision as of 19:24, 23 January 2018
D. Thiebaut (talk) 16:44, 13 January 2018 (EST)
This page contains very sketchy steps for setting up (in my case moving) an existing mediawiki installation to AWS. This list is mostly for myself to remember what steps I have taken. |