Wiki Page Content

Installing a MoinMoin Wiki in less than 60 seconds

All of this should be done as a non-root user.

root is only required if you cannot open network ports on your setup or if you want to run the wiki on privileged ports (low-ports)

Download Latest MoinMoin

http://moinmo.in/MoinMoinDownload

steve@aggli ~ $ wget http://static.moinmo.in/files/moin-1.9.0.tar.gz

unpack

steve@aggli ~ $ tar xfvz moin-1.9.0.tar.gz

configure

steve@aggli ~ $ cd moin-1.9.0
steve@aggli moin-1.9.0 $ cat << EOF >> wikiconfig_local.py
from wikiconfig import LocalConfig                                                                                                                                                                       

class Config(LocalConfig):
    sitename = u"my first unconfigured wiki"
    page_front_page = u"FrontPage"
    hostname = 'YOUR_HOSTNAME.lu'
    port = 8080
    superuser = [u"MyUsername", ]
    mail_from = u'Wiki Notifier <MyEmailAddress@example.lu>'
    mail_sendmail = '/usr/sbin/sendmail -t -i'
EOF
steve@aggli moin-1.9.0 $ vi wikiconfig_local.py 
steve@aggli moin-1.9.0 $ ln -s wikiserverconfig_local.py wikiconfig_local.py 

I think it is all really self-explanatory.

run

steve@aggli moin-1.9.0 $ python wikiserver.py

MoinMoin Quick Install (last edited 2010-01-16 15:58:20 by SteveClement)