Moodle/Update: Unterschied zwischen den Versionen
Zeile 42: | Zeile 42: | ||
=== Daten übertragen === | === Daten übertragen === | ||
<syntaxhighlight lang="bash" highlight="1" line> | <syntaxhighlight lang="bash" highlight="1-7" line> | ||
mv moodle moodle.bak | |||
cp -au moodle.bak/question/type/multichoiceset/ moodle/question/type/ | |||
cp -au moodle.bak/course/format/tiles moodle/course/format/ | |||
cp -au moodle.bak/config.php moodle | |||
cp -au moodle.bak/blocks/featuredcourses moodle/blocks/ | |||
cp -au moodle.bak/mod/ moodle/ | |||
cp -au moodle.bak/theme/stream/ moodle/theme/ | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Version vom 15. Oktober 2024, 13:53 Uhr
Moodle Update - Software-Aktualisierung
Vorbereitung
- Version
- Download
wget https://download.moodle.org/download.php/direct/stable404/moodle-latest-404.tgz
Datensicherung
Konfiguration ermitteln
grep '$CFG->db' moodle/config.php
$CFG->dbname = 'databaseName';
$CFG->dbuser = 'databaseUserName';
$CFG->dbpass = 'databasePassword';
Datenbank
mysqldump --user=$databaseUserName --password=$databasePassword $databaseName > backup/$databaseName_$(date -I).sql
- Beispiel
mysqldump c1moodleFoxtomDe > backup/c1moodleFoxtomDe_$(date -I).sql
Dateisystem
tar -czf ../backup/seminareFoxtomDe_$(date -I).tar.gz moodle
Durchführung
Archiv entpacken
tar -xf moodle-latest-404.tgz
Daten übertragen
mv moodle moodle.bak
cp -au moodle.bak/question/type/multichoiceset/ moodle/question/type/
cp -au moodle.bak/course/format/tiles moodle/course/format/
cp -au moodle.bak/config.php moodle
cp -au moodle.bak/blocks/featuredcourses moodle/blocks/
cp -au moodle.bak/mod/ moodle/
cp -au moodle.bak/theme/stream/ moodle/theme/
Zugriffsrechte korrigieren
sudo chown -Rc web76:client1 moodle
Einstiegspunkt ändern
Konfiguration anpassen
Erweiterungen aktualisieren
Update-Skript
Anhang
Siehe auch
Dokumentation
Links
Projekt
Weblinks