Einrichtung Nextcloud-Server

Einrichtung Nextcloud-Server

von Lukas Hiob -
Anzahl Antworten: 0

Für die Bereitstellung der Dateiablage wurde eine Nextcloud-VM auf einem Proxmox-Server eingerichtet.

Als Grundlage für die Installation dient ein Ubuntu-Server 24.04.1.

----------------------------------------------------------------

I. Install Ubuntu

select language:
    English
Keyboard confguration:
    Layout: German
    Variant: German
Choose the type of installation:
    Ubuntu Server (first one)
Network configuration:
IPv4 Method: Manual:
    Subnet:172.16.1.0/24
    Address: 172.16.1.2
    Gateway: 172.16.1.254
    Name Server: 172.16.1.1
    search domain: empty
Proxy configuration: empty
Guided storage configuration:
    [X] use an entire disk (QEMU HARDDISK)
    [X] Set up this disk as an LVM group 
        [ ] Encrypt the LVM group with LUKS
    (  ) Custom storage layout
Profile configuration:
    Your name: empty
    Your servers name: nextcloud
    Pick a username: netop
    Choose a password: choose a strong password
    Confirm your password: confirm your strong password
Upgrade to Ubuntu Pro:
    (  ) Enable Ubuntu Pro
    (X) Skip for now
SSH configuration:
    [X] Install OpenSSH server (importing a key is not neccessary yet)
Featured server snaps:
    none of them
Reboot Machine
If you want to shutdown properly to change the boot order if applicable, just switch with tab to [Help] and Enter shell
now you can shutdown the machine with the command „shutdown now"

----------------------------------------------------------------

Die VM ist mit der virtuellen Netzwerkbrücke „VMBR0“ des Hypervisors verbunden und somit im internen Schulnetzwerk erreichbar.

Die Zugangsdaten für den Server sind im Vaultwarden unter „Mint-Management“ hinterlegt.

Die PHP-Konfiguration in der Datei /etc/php/8.3/apache2/php.ini wurde folgendermaßen angepasst:

memory php = 4096                                    Wert geändert
upload_max_filesize= 500M                       Wert geändert
post_max_size=500M                                Wert geändert
date.timezone = Europe/Berlin                   Wert geändert
output_buffering = Off                                 Wert geändert

opcache.enable                                          aktiviert durch Entfernen der Kommentierung
opcache.memory_consumption=1024       Wert geändert und aktiviert
opcache.interned_strings_buffer=64          Wert geändert und aktiviert
opcache.max_accelerated_files                 aktiviert
opcache.revalidate_freq=1                         Wert geändert und aktiviert
opcache.save_comments                           aktiviert

(Geändert von André Bohne - Originaleintrag Mittwoch, 5. Februar 2025, 18:38)