welcome: please sign in

The following 423 words could not be found in the dictionary of 7 words (including 7 LocalSpellingWords) and are highlighted below:
able   about   access   accessible   according   accordingly   administrator   Administrators   After   all   All   allow   allowed   also   an   and   any   anything   Apache   apply   appropriate   approximately   are   around   as   As   Ask   at   At   attached   attachment   aware   back   bash   Basic   be   before   beginning   belongs   below   best   beyond   bit   bottom   broaden   but   by   called   can   cannot   carefully   case   cases   cd   cgi   change   changes   check   chmod   Choose   chown   Collect   collect   collected   color   combination   come   command   commands   comments   common   complicated   compromised   computer   config   configuration   Configuration   contain   containing   contains   continue   contrary   control   cooperation   copied   copies   copy   Copy   copying   correct   course   cp   create   createinstance   creates   cutting   data   dedicated   default   depend   depending   described   descriptions   details   differ   different   directories   directory   discussed   disk   do   Do   document   doing   Don   don   down   downloaded   during   Each   easily   Edit   effect   else   encrypted   enough   enter   environment   etc   even   every   Every   everybody   example   execute   existing   explained   Explorer   export   fail   farm   file   files   Finally   fine   first   folks   following   For   for   forget   from   get   give   group   groups   grow   guide   have   Have   he   help   Help   here   hints   home   however   htdocs   html   id   if   If   important   in   independent   information   inside   install   Installation   installed   instance   instead   instructions   intend   into   introduce   is   it   It   its   just   keep   knowledgeable   least   let   like   lines   Linux   lists   local   location   log   logo   look   Look   machine   make   makes   manually   many   maximum   may   maybe   members   memory   might   mkdir   mnt   mode   modify   more   most   much   multiple   mywiki   name   named   need   needed   needs   new   no   normal   Normal   not   notably   Note   Notepad   Now   of   On   on   one   only   open   operating   options   Or   or   order   organization   original   other   others   otherwise   overwritten   page   pages   parameter   passwords   pasting   people   permissions   person   personal   popular   possibility   possible   powerful   prefix   probably   process   program   project   prompt   public   put   py   quite   read   Read   readable   reading   recent   red   reflects   rejected   remember   restart   restrict   root   running   rw   rwx   same   sample   scope   script   scripts   section   sections   secure   Security   security   See   see   sense   sensitive   server   Set   sets   setting   settings   setup   several   sh   share   shared   short   should   simple   since   single   Sites   so   Some   some   something   space   start   step   steps   store   subdirectories   subdirectory   such   suexec   sure   system   systems   tablestyle   take   takes   team   template   text   than   that   The   the   them   then   Then   there   these   they   They   things   this   This   those   through   time   to   To   tune   Tune   two   type   ug   unclear   under   underlay   understand   unique   unsecure   up   upgrade   use   Use   used   user   users   uses   usr   var   variables   various   versions   very   want   Warning   warnings   way   web   webserver   were   what   whatever   where   whether   which   who   whole   wiki   wikiconfig   wikis   will   window   Windows   with   Without   word   work   working   world   worldwide   write   writeable   www   You   you   your  

Clear message
Page Locked

HelpOnInstalling / WikiInstanceCreation

After you have downloaded and installed MoinMoin, you will want to "have a wiki". As explained at the bottom of ../BasicInstallation, you have to copy several directories and files. This way, you can have as many wikis as you want, and you can easily upgrade MoinMoin: only the original files will be overwritten, not your copies.

Every time you copy those files (and modify the configuration of your server accordingly), you create what is called a wiki instance. Each wiki instance is independent from the others, with a different configuration, different pages, different users, etc.

Some of the steps you need to take depend on which web server and which operating system you use. They are described on dedicated pages, which you should read (at least the beginning) before reading this one. Some other steps are common to every webserver and operating system (copying files around, setting permissions), and this is what is described here.

Linux users can use createinstance.sh (a bash script that creates the instance) instead of doing all steps manually:

  1. If anything is unclear, just read the sections below for more hints.
  2. Have a look into the script before running it, if all settings are correct for your setup:
    • USER and GROUP should be the user and group used by your web-server for running moin.
    • SHARE is where the shared files were copied to, see install.log from the setup.py install step

  3. The script takes a single parameter: the location of your wiki instance (see "Choose a location" section below):
    # ./createinstance.sh /path/to/mywiki
  4. Now continue in section "Tune configuration"

1. Read this first

1.1. Security warnings

/!\ Warning: make sure that your data directory and your configuration files are not accessible through your web server. Do not put your wiki directory in public_html, Sites or any other directory your web server can access. The web server only needs to access the file in the htdocs directory and the moin.cgi script! (Or whatever script your server uses to start MoinMoin.)

/!\ Warning: make sure that the data directory and its subdirectories are not readable and not writeable by users other than the web server user. If you need to give worldwide read-write permissions to get it working, be aware that you are doing a very unsecure setup, that can be compromised by any other user or program on your computer.

1.2. Note to Windows users

All the commands below are Linux commands. The text descriptions that introduce them should be enough to help you understand what you need to do. Use the Windows Explorer, or the appropriate text-mode commands.

2. Choose a wiki name

Choose a unique name for the new wiki instance you want to create. It should be a short word, something that reflects what you intend to use the wiki for, like the name of your organization, of your team, of the project you are working on, etc.

The name "mywiki" is used as an example in the various commands below.

3. Choose a location

Choose a directory on your disk, it will contain all the files needed for your wiki instance. At the beginning, your wiki instance will use approximately 10 MB of disk space. Then of course, it will grow depending on the way your wiki is used. A personal wiki, even with many pages, might only use 30 MB or 40 MB of disk space. A popular wiki, or a wiki with many files attached to the pages, might use much more, of course.

If you are the administrator (or root) of the server, you can use anything you like or that makes sense to you, for example /usr/local/var/moin, /mnt/wikis, etc.

If you are a simple user, you will probably only be allowed to write in your personal, "home" directory. Choose a subdirectory that makes sense to you, for example the share/moin subdirectory.

4. Collect some important information

This is where the instructions differ according to the web server and operating system you use, and whether you are the administrator or a simple user. See the appropriate pages for your web server and operating system combination.

On Linux, the export command will be used to remember the collected information. Windows users should write it down carefully (maybe cutting-and-pasting in a Notepad window), or store it in environment variables if they use the command prompt.

If you are an administrator, you also need to collect the following:

Now, Linux folks, let's store these settings in memory:

> export PREFIX=/usr                # this might be something else
> export SHARE=$PREFIX/share/moin   # this should be correct for most people
> export WIKILOCATION=$SHARE        # this is just an example
> export INSTANCE=mywiki            # this is just an example

Administrators also need the following two lines:

> export USER=www-data              # this is just an example
> export GROUP=www-data             # this is just an example

5. Copy the files

To create your new instance, you first need to create a directory named like your instance, inside the WIKILOCATION. Then you need to copy the data and underlay directories from your SHARE directory into your instance directory. Finally, you need to copy the wikiconfig.py file from the config directory into the instance directory.

Linux folks need to just type these commands:

> cd $WIKILOCATION
> mkdir $INSTANCE                   # make a directory for this instance
> cp -R $SHARE/data $INSTANCE       # copy template data directory
> cp -R $SHARE/underlay $INSTANCE   # copy underlay data directory
> cp $SHARE/config/wikiconfig.py $INSTANCE   # copy wiki configuration sample file

6. Set permissions

6.1. Administrators

Administrators need to restrict the permissions of the files, so that only the web server (and the administrator of course) can read and write them. For maximum security, no other user on the machine should be able to read or write anything in the wiki instance directory. Don't forget that this directory contains sensitive information, notably the (encrypted) passwords of the wiki users.

On Linux, the following commands should be enough:

> chown -R $USER.$GROUP $INSTANCE   # check that USER and GROUP are correct
> chmod -R ug+rwX $INSTANCE         # USER.GROUP may read and write
> chmod -R o-rwx $INSTANCE          # everybody else is rejected

6.2. Normal users

Normal users, on the contrary, need to broaden the permissions of the files, so that the web server can read and write them. On recent Windows versions, and on some versions of Linux and other systems, access control lists can be used to that effect. They are, however, powerful and complicated, much beyond the scope of this document. Ask a knowledgeable person about them.

Without them, normal users have to allow everybody to access the instance directory. This is the only way the web server can enter it and do its work. This is, of course, VERY INSECURE, since any other user and program on the server can read the directory. You should not use such a setup for a wiki open to the public.

On Linux, the following commands will open the instance directory to the whole world:

> chmod -R a+rwX $INSTANCE

Note:

7. Tune configuration

Now, you need to tune the configuration of your web server and of your wiki instance. Look at the appropriate help page for your web server, then come back here to tune the settings of your wiki instance.

Edit wikiconfig.py. The default settings should work fine in most cases, but there are some things that you will probably want to change, like the name and logo of your wiki! :) Read the comments inside wikiconfig.py, they will guide you through this process.

/!\ Warning: don't forget to restart your web server in order to apply changes in wikiconfig.py

HelpOnConfiguration contains all the details about all the options, in case the comments in wikiconfig.py are not enough.