Moodle/Update: Unterschied zwischen den Versionen

Aus Foxwiki
Subpages:
Keine Bearbeitungszusammenfassung
 
(51 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
'''Moodle Update''' - Software-Aktualisierung durchführen
'''Moodle Update''' - Software-Aktualisierung


== Vorbereitung ==
== Vorbereitung ==
; Version
=== Version ===
https://seminare.foxtom.de/admin/index.php


 
[[File:moodleSystemnachrichten.png|600px|link=https://seminare.foxtom.de/admin/index.php|seminare.foxtom.de/admin]]
; Download
$ '''wget <nowiki>https://download.moodle.org/download.php/direct/stable404/moodle-latest-404.tgz</nowiki>'''


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


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


# '''mysqldump c1moodleFoxtomDe > backup/c1moodleFoxtomDe_$(date -I).sql'''
; Beispiel
<syntaxhighlight lang="bash" highlight="1" line>
mysqldump c1moodleFoxtomDe > backup/c1moodleFoxtomDe_$(date -I).sql
</syntaxhighlight>


==== Dateisystem ====
==== Dateisystem ====
$ '''tar -czf ../backup/seminareFoxtomDe_$(date -I).tar.gz moodle'''
<syntaxhighlight lang="bash" highlight="1" line>
tar -czf ../backup/seminareFoxtomDe_$(date -I).tar.gz moodle
</syntaxhighlight>


== Durchführung ==
== Durchführung ==
mv moodle moodle.bak
=== Download ===
 
<syntaxhighlight lang="bash" highlight="1" line>
 
wget https://download.moodle.org/download.php/direct/stable405/moodle-latest-405.zip
</syntaxhighlight>
=== Archiv entpacken ===
=== Archiv entpacken ===
tar -xf moodle-latest-404.tgz
<syntaxhighlight lang="bash" highlight="1" line>
 
unzip moodle-latest-405.zip
</syntaxhighlight>


=== Daten übertragen ===
=== Daten übertragen ===
<syntaxhighlight lang="bash" line>
<syntaxhighlight lang="bash" highlight="1-7" line>
$ cp -au moodle.bak/question/type/multichoiceset/ moodle/question/type/
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/course/format/tiles moodle/course/format/
 
cp -au moodle.bak/config.php moodle
$ 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/blocks/featuredcourses moodle/blocks/
cp -au moodle.bak/theme/stream/ moodle/theme/
 
</syntaxhighlight>
$ cp -au moodle.bak/mod/ moodle/
 
$ cp -au moodle.bak/theme/stream/ moodle/theme/
 
# chown -Rc web76:client1 moodle


=== Zugriffsrechte korrigieren ===
<syntaxhighlight lang="bash" highlight="1" line>
sudo chown -Rc web76:client1 moodle
</syntaxhighlight>
</syntaxhighlight>


=== Einstiegspunkt ändern ===
=== Einstiegspunkt ändern ===


=== Konfiguration anpassen ===
=== Konfiguration anpassen ===
Zeile 62: Zeile 75:
== Anhang ==
== Anhang ==
=== Siehe auch ===
=== Siehe auch ===
{{Special:PrefixIndex/{{BASEPAGENAME}}}}
==== Dokumentation ====
==== Dokumentation ====
==== Links ====
==== Links ====
===== Projekt =====
===== Projekt =====
===== Weblinks =====
===== Weblinks =====
# https://docs.moodle.org/404/de/Aktualisierung_von_Moodle
# https://docs.moodle.org/405/de/Aktualisierung_von_Moodle


[[Kategorie:Moodle]]
[[Kategorie:Moodle]]


</noinclude>
</noinclude>

Aktuelle Version vom 30. Oktober 2024, 10:42 Uhr

Moodle Update - Software-Aktualisierung

Vorbereitung

Version

https://seminare.foxtom.de/admin/index.php

seminare.foxtom.de/admin

Datensicherung

Konfiguration ermitteln

grep '$CFG->db' moodle/config.php
 $CFG->dbname    = 'databaseName';
 $CFG->dbuser    = 'databaseUserName';
 $CFG->dbpass    = 'databasePassword';
export $databaseName="databaseName"
export $databaseUserName="databaseUserName"
export $databasePassword="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

Download

wget https://download.moodle.org/download.php/direct/stable405/moodle-latest-405.zip

Archiv entpacken

unzip moodle-latest-405.zip

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/405/de/Aktualisierung_von_Moodle