Moodle/Update: Unterschied zwischen den Versionen

Aus Foxwiki
Subpages:
Keine Bearbeitungszusammenfassung
Zeile 6: Zeile 6:


; Download
; Download
$ '''wget <nowiki>https://download.moodle.org/download.php/direct/stable404/moodle-latest-404.tgz</nowiki>'''
<syntaxhighlight lang="bash" line>
wget <nowiki>https://download.moodle.org/download.php/direct/stable404/moodle-latest-404.tgz</nowiki>


=== Datensicherung ===
=== Datensicherung ===
==== Konfiguration ermitteln ====
==== Konfiguration ermitteln ====
<syntaxhighlight lang="bash" line>
  $ grep '$CFG->db' moodle/config.php
  $ grep '$CFG->db' moodle/config.php
  $CFG->dbname    = 'databaseName';
  $CFG->dbname    = 'databaseName';
Zeile 16: Zeile 18:


==== Datenbank ====
==== Datenbank ====
$ '''mysqldump --user=''$databaseUserName'' --password=''$databasePassword'' ''$databaseName'' > backup/''$databaseName''_$(date -I).sql'''
<syntaxhighlight lang="bash" line>
 
mysqldump --user=$databaseUserName --password=$databasePassword $databaseName > backup/$databaseName_$(date -I).sql
# '''mysqldump c1moodleFoxtomDe > backup/c1moodleFoxtomDe_$(date -I).sql'''


mysqldump c1moodleFoxtomDe > backup/c1moodleFoxtomDe_$(date -I).sql
</syntaxhighlight>
==== Dateisystem ====
==== Dateisystem ====
$ '''tar -czf ../backup/seminareFoxtomDe_$(date -I).tar.gz moodle'''
<syntaxhighlight lang="bash" line>
 
tar -czf ../backup/seminareFoxtomDe_$(date -I).tar.gz moodle
</syntaxhighlight>
== Durchführung ==
== Durchführung ==



Version vom 24. Juni 2024, 07:17 Uhr

Moodle Update - Software-Aktualisierung

Vorbereitung

Version


Download
wget <nowiki>https://download.moodle.org/download.php/direct/stable404/moodle-latest-404.tgz</nowiki>

=== Datensicherung ===
==== Konfiguration ermitteln ====
<syntaxhighlight lang="bash" line>
 $ grep '$CFG->db' moodle/config.php
 $CFG->dbname    = 'databaseName';
 $CFG->dbuser    = 'databaseUserName';
 $CFG->dbpass    = 'databasePassword';

==== Datenbank ====
<syntaxhighlight lang="bash" line>
mysqldump --user=$databaseUserName --password=$databasePassword $databaseName > backup/$databaseName_$(date -I).sql

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
  1. https://docs.moodle.org/404/de/Aktualisierung_von_Moodle