MoinMoin unter Raspian Buster einrichten

MoinMoin ist eine Wiki-Software, die in Python implementiert ist.

Die Installation auf dem Raspberry hat folgendermaßen funktioniert:

Voraussetzung schaffen:

apt-get install libapache2-mod-wsgi

Herunterladen und entpacken der aktuellen Version von MoinMoin Download

cd /tmp
wget http://static.moinmo.in/files/moin-1.9.10.tar.gz
tar xvzf moin-1.9.10.tar.gz

Anschließend mit den Standardwerten installieren:

cd moin-1.9.10
python setup.py install --force --record=install.log

BEDEUTET:

Config-Dateien kopieren und alle Rechte anpassen:

cd /usr/local/share/moin/

cp server/moin.wsgi .
cp config/wikiconfig.py .

cd ..
chown -R www-data:www-data moin
chmod -R ug+rwx moin
chmod -R o-rwx moin

cd /usr/local/lib/python2.7/dist-packages/
chown -R root:staff MoinMoin

.

MoinMoinEinrichten (zuletzt geändert am 2020-11-04 14:08:29 durch HansStefanSuhle)