Diff for "MediaWiki"


Differences between revisions 8 and 9
Revision 8 as of 2008-09-15 16:47:18
Size: 2216
Editor: nat027
Comment:
Revision 9 as of 2008-11-15 02:31:40
Size: 2355
Editor: 124-168-210-190
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
MediaWiki is the engine that is used for Wikipedia. See [[http://www.mediawiki.org/|MediaWiki]] for more information MediaWiki is the engine that is used for Wikipedia, but you can also use it to set up your own wiki server with information of your own. See [[http://www.mediawiki.org/|MediaWiki]] for more information.
Line 5: Line 5:
To install on your [U|K|Edu]buntu server (with Apache and MySQL - [[ApacheMySQLPHP]] or another web server already installed): {{{ To install on your Ubuntu (or Kubuntu, etc) server (with [[ApacheMySQLPHP|Apache and MySQL] already installed): {{{
Line 17: Line 17:
The next step is to visit the website. Since you will be entering passwords, you don't want to make an unsecured connection. Either set up a ssl server] ( see [[forum/server/apache2/SSL]]) and connect with https://your.site.net/mediawiki, or visit from the server itself (using [lynx] or [links], two excellent text-based web browsers): {{{
 lynx localhost/mediawiki
The next step is to visit the website. Since you will be entering passwords, you don't want to make an unsecured connection. Either set up a ssl server] ( see [[forum/server/apache2/SSL]]) and connect with https://your.site.net/mediawiki, or visit from the server itself (using [[elinks]] or lynx, two excellent text-based web browsers): {{{
 elinks localhost/mediawiki
Line 35: Line 35:
The Apache config files reside at /etc/apache2/conf.d/mediawiki.conf The Apache2 config files reside at /etc/apache2/conf.d/mediawiki.conf
Line 48: Line 48:

see http://prevolution.org/mediawikifarm for running multiple wikis on a server
It is possible to run multiple parallel instances on Mediawiki on a single server:
* http://www.jirp.nl/2008/04/11/mediawiki-farm-multiple-wiki/

MediaWiki is the engine that is used for Wikipedia, but you can also use it to set up your own wiki server with information of your own. See MediaWiki for more information.

Install

To install on your Ubuntu (or Kubuntu, etc) server (with [[ApacheMySQLPHP|Apache and MySQL] already installed):

 sudo apt-get install mediawiki imagemagick mediawiki-math mysql-server

To enable MediaWiki edit the following file and remove the '#' from the third line so that it reads 'Alias /mediawiki /var/lib/mediawiki':

sudo gedit /etc/apache2/conf.d/mediawiki.conf

Then restart apache:

 sudo /etc/init.d/apache2 restart

The next step is to visit the website. Since you will be entering passwords, you don't want to make an unsecured connection. Either set up a ssl server] ( see forum/server/apache2/SSL) and connect with https://your.site.net/mediawiki, or visit from the server itself (using elinks or lynx, two excellent text-based web browsers):

 elinks localhost/mediawiki

fill out the forms, noting that the final form is NOT your root or user password, but the password for the root mysql account (blank by default)

Lastly, move the config files as requested to prevent anyone else from changing these settings:

NOTE: Check the output in your web browser if it's instructions differ from below follow them.

 sudo mv /var/lib/mediawiki/config/LocalSettings.php /etc/mediawiki/LocalSettings.php
 sudo chmod 600 /etc/mediawiki/LocalSettings.php
 sudo rm -Rf /var/lib/mediawiki/config

You are done! you should see a wiki page at: http://your.site.net/mediawiki

Customize

The Apache2 config files reside at /etc/apache2/conf.d/mediawiki.conf

You might want to customize the look of your wiki.

To change the icon make a 135x135 pixel logo in PNG format and move it to the right place:

 sudo cp my_new_logo.png /var/lib/mediawiki/skins/common/images/wiki.png

To get rid of the Mac-like sunburst in the background, edit /var/lib/mediawiki/skins/monobook/main.css and change:

  • background: #f9f9f9 url(headbg.jpg) 0 0 no-repeat;

to

  • background: #f9f9f9;

It is possible to run multiple parallel instances on Mediawiki on a single server: * http://www.jirp.nl/2008/04/11/mediawiki-farm-multiple-wiki/

MediaWiki (last edited 2017-09-02 19:52:46 by ckimes)