Building Wiki Servers

From Da Nerd Mage Wiki
Jump to navigation Jump to search

Start with a WebServer

Now Do A Backup!

Download MediaWiki

  • Check the download page for latest version. (ATM, the current version turns out to be 1.37.1)
    • Adjust the following commands appropriately (i.e.: replace 1.37.1 with the current version number) if needed.
  • wget https://releases.wikimedia.org/mediawiki/1.37/mediawiki-1.37.1.tar.gz
  • Extract it
  • tar -xvzf mediawiki-1.37.1.tar.gz

Unpack MediaWiki

There are a couple of different ways to set up the root of your wiki.

You can either set it up to be reached

as part of your regular web site

  • sudo mkdir /var/www/html/wiki
  • sudo tar --directory=/var/www/html/wiki -xvzf mediawiki-1.37.1.tar.gz
  • sudo chmod -R ugo+rwX /var/www/html/wiki/images

or at an independent URL

  • sudo mkdir /var/www/wiki
  • sudo tar --directory=/var/www/wiki -xvzf mediawiki-1.37.1.tar.gz
  • sudo chmod -R ugo+rwX /var/www/wiki/images

Set Up MediaWiki

Now Do A Backup!

Just some notes.