MoinMoin é um motor de Wiki implementado em Python, baseado no motor de Wiki PikiPiki e licenciado sob a GNU GPL.
Para instalar o MoinMoin, execute o seguinte comando na linha de comando:
sudo apt-get install python2.4-moinmoin
You should also install apache2 web server. For installing apache2 web server, please refer to Installation sub-section in HTTPD - Apache2 Web Server section.
For configuring your first Wiki application, please run the following set of commands. Let us assume that you are creating a Wiki named mywiki:
cd /usr/share/moin sudo mkdir mywiki sudo cp -R data mywiki sudo cp -R underlay mywiki sudo cp server/moin.cgi mywiki sudo chown -R www-data.www-data mywiki sudo chmod -R ug+rwX mywiki sudo chmod -R o-rwx mywiki
Now you should configure MoinMoin to find
your new Wiki mywiki. To configure
MoinMoin, open
/etc/moin/mywiki.py
file and change the following
line:
data_dir = '/org/moin/mywiki/data'
para
data_dir = '/usr/share/moin/mywiki/data'
![]() |
|
If the |
![]() |
|
If you have named your Wiki as my_wiki_name you
should insert a line “("my_wiki_name", r".*")” in
|
Once you have configured MoinMoin to find your first Wiki application mywiki, you should configure apache2 and make it ready for your Wiki application.
You should add the following lines in
/etc/apache2/sites-available/default
file inside
the “<VirtualHost *>” tag:
### moin ScriptAlias /mywiki "/usr/share/moin/mywiki/moin.cgi" alias /wiki "/usr/share/moin/htdocs" <Directory /usr/share/moin/htdocs> Order allow,deny allow from all </Directory> ### end moin
Once you configure the apache2 web server and make it ready for your Wiki application, you should restart it. You can run the following command to restart the apache2 web server:
sudo /etc/init.d/apache2 restart
You can verify the Wiki application and see if it works by pointing your web browser to the following URL:
http://localhost/mywiki
You can also run the test command by pointing your web browser to the following URL:
http://localhost/mywiki?action=test
For more details, please refer to the MoinMoin web site.