- Umzug dieses Wiki auf einen Raspberry Pi
- Ich versuche Mediawiki 1.32 zu verwenden
- nötige PHP Module sind "mbstring, xml, ctype, json, iconv, fileinfo"
Datenbank
#
# notwendige Software
#
apt-get install p7zip mariadb-server
apt-get install php-mbstring php-xml php-mysql
#
# passwort für root setzen auf ***
#
mysql_secure_installation
#
# Datenbank erstellen
#
mysql --password=***
create database wikidb;
GRANT ALL PRIVILEGES ON *.* TO 'wikiuser'@'localhost' IDENTIFIED BY '***';
quit
#
# Dump einlesen
#
mysql --password=*** wikidb < wiki.sql