The following 385 words could not be found in the dictionary of 615 words (including 615 LocalSpellingWords) and are highlighted below:

able   about   accessible   according   accordingly   administrator   Administrators   all   All   allow   allowed   an   and   anything   Apache   apply   appropriate   approximately   around   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   changes   check   chmod   Choose   chown   Collect   collect   collected   color   combination   come   command   commands   comments   common   complicated   compromised   computer   config   configuration   Configuration   contain   containing   contains   contrary   control   cooperation   copies   copying   correct   course   cp   createinstance   cutting   dedicated   default   depend   depending   described   descriptions   details   differ   different   directories   discussed   disk   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   folks   following   For   for   forget   from   get   give   group   groups   grow   guide   he   help   Help   home   however   htdocs   id   identity   if   If   important   in   independant   information   inside   install   Installation   installed   instance   instructions   intend   internal   into   introduce   its   just   keep   knowledgeable   least   let   like   line   lines   Linux   lists   local   location   logo   Look   machine   make   makes   many   maximum   maybe   members   memory   might   mkdir   mnt   mode   modify   more   most   much   multiple   mywiki   name   named   need   needed   needs   new   no   normal   Normal   notably   Note   Notepad   Now   of   On   on   one   only   open   operating   options   Or   or   order   organization   original   other   others   otherwise   overwritten   page   pages   passwords   pasting   people   permissions   person   personal   popular   possibility   possible   powerful   prefix   probably   process   program   project   prompt   public   put   quite   read   Read   readable   reading   recent   red   reflects   rejected   remember   reserved   restart   restrict   root   running   rw   rwx   same   sample   scope   script   scripts   secure   Security   security   See   sense   sensitive   server   Set   sets   setting   settings   setup   several   sh   share   short   should   simple   since   Sites   so   Some   some   something   space   special   standalone   Start   start   steps   store   subdirectories   subdirectory   such   suexec   sure   system   systems   tablestyle   take   team   template   text   than   that   The   the   them   then   Then   there   these   they   They   things   this   This   those   through   time   to   To   tune   Tune   twisted   two   type   ug   under   underlay   understand   unique   Unix   unsecure   up   upgrade   use   Use   used   user   users   uses   usr   var   variables   various   versions   very   want   Warning   warnings   way   web   webserver   what   whatever   where   whether   which   who   whole   wikiconfig   will   window   Windows   with   Without   word   work   working   world   worldwide   would   write   writeable   You   you   your  

Clear message

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 independant 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.

You can use createinstance.sh (a bash script that install the instance).

Read this first

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.

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.

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.

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.

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

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 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

Set permissions

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

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 Unix, 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:

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. (Start with "Wiki identity", around line 25.)

/!\ 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.

HelpOnInstalling/WikiInstanceCreation (last modified 2007-01-22 09:11:30)