Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
centos:web_c7:nextcloud [23.11.2018 08:47. ] – [Upgrade starten] djangocentos:web_c7:nextcloud [10.01.2019 19:29. ] (aktuell) – Nextcloud unter CentOS 7.x installieren und betreiben django
Zeile 117: Zeile 117:
         Require all denied         Require all denied
     </LocationMatch>     </LocationMatch>
 +
 +    # Link für DAV-Support 
 +    Redirect 301 /.well-known/carddav /remote.php/dav
 +    Redirect 301 /.well-known/caldav /remote.php/dav
  
     # Welche Logdateien sollen beschrieben werden     # Welche Logdateien sollen beschrieben werden
Zeile 458: Zeile 462:
   Maintenance mode disabled   Maintenance mode disabled
  
-Zu guter Letzt melden wir uns nun an der WEB-GUI unserer NextCloud-Instanz an und überprüfen die Funktionen.+Nun können wir uns nun an der WEB-GUI unserer NextCloud-Instanz wieder anmelden und überprüfen die Funktionen.
  
 {{ :centos:web_c7:nextcloud_06.png?600 |Bild: Anmeldebilschirm der Web-GUI unseres NextCloud Servers}} {{ :centos:web_c7:nextcloud_06.png?600 |Bild: Anmeldebilschirm der Web-GUI unseres NextCloud Servers}}
 +
 +<WRAP center round tip 95%>
 +Am besten werfen wir dazu auch einmal einen Blick in die Systeminformationen als User Admin. So wird z.B. beim Update von Version **13** auf **14** Hinweise zur Anpassungen der Datenbank gegeben!
 +</WRAP>
 +
 +
 +{{ :centos:web_c7:nextcloud_07.png |Bild: Systeminformationen im Adminmenü}}
 +
 +So erzeugen wir wie angeraten die fehlenden Indizes.
 +   # sudo -u apache php /srv/www/html/cloud/occ db:add-missing-indices
 +
 +<html><pre class="code">
 +<font style="color: rgb(29, 180, 29)">Check indices of the share table.
 +Adding additional share_with index to the share table, this can take some time...
 +Share table updated successfully.
 +Adding additional parent index to the share table, this can take some time...
 +Share table updated successfully.
 +Adding additional mtime index to the filecache table, this can take some time...
 +Filecache table updated successfully.</font>
 +</pre>
 +</html>
 +
 +Eine erneute Überprüfung zeigt nun, dass alles wieder in Ordnung ist.
 +
 +{{ :centos:web_c7:nextcloud_08.png |Bild: Systeminformationen im Adminmenü}}
 +
 +Auch ein Test über den angegebenen link zum [[https://scan.nextcloud.com/|Nextcloud Security Scanner]] sollte ein entsprechend aktuelles Ergebnis liefern.
 +
 +{{ :centos:web_c7:nextcloud_09.png?800 |Bild: Nextcloud Security Web-Scan}}
 +
 +/*
 + cd /usr/local/src/packages/
 + wget https://download.nextcloud.com/server/releases/nextcloud-15.0.1.tar.bz2
 + wget https://download.nextcloud.com/server/releases/nextcloud-15.0.1.tar.bz2.sha512
 + sha512sum nextcloud-15.0.1.tar.bz2 > nextcloud-15.0.1.tar.bz2.sha512.local
 + diff nextcloud-15.0.1.tar.bz2.sha512.local nextcloud-15.0.1.tar.bz2.sha512
 + sudo -u apache php /srv/www/html/cloud/occ maintenance:mode --on
 + mv /etc/httpd/conf.d/3rd_cloud.conf /etc/httpd/conf.d/3rd_cloud.conf.deaktiviert
 + apachectl -t
 + systemctl restart httpd.service 
 + cp -ra /srv/www/html/cloud /srv/www/html/cloud.$(date +%y%m%d)
 + tar -jxpvf /usr/local/src/packages/nextcloud-15.0.1.tar.bz2 -C /srv/www/html/
 + rm -rf /srv/www/html/cloud && mv /srv/www/html/nextcloud /srv/www/html/cloud
 + chown -R apache:apache /srv/www/html/cloud
 + cp -a /srv/www/html/cloud.$(date +%y%m%d)/config/config.php /srv/www/html/cloud/config/config.php
 + mv /etc/httpd/conf.d/3rd_cloud.conf.deaktiviert /etc/httpd/conf.d/3rd_cloud.conf
 + apachectl -t
 + systemctl restart httpd.service 
 + sudo -u apache php /srv/www/html/cloud/occ upgrade
 + sudo -u apache php /srv/www/html/cloud/occ maintenance:mode --off
 +
 +*/
 +
  
  
  • centos/web_c7/nextcloud.1542962823.txt.gz
  • Zuletzt geändert: 23.11.2018 08:47.
  • von django