Nextcloud kostenlos installieren

In diesem Artikel zeige ich dir, wie du Nextcloud 22.2.0 installierst. Du brauchst nur einen Server mit dem Betriebssystem Ubuntu 20.04 und eine Domain.

  1.  apt-get update && apt-get upgrade
  2.  apt install lamp-server^
  3.  apt install php-zip php-dompdf php-xml php-mbstring php-gd php-curl php-imagick php-intl php-bcmath php-gmp libmagickcore-6.q16-6-extra unzip
  4.  mysql_secure_installation
  5.  mysql
  6.  CREATE DATABASE nextcloud;
  7. CREATE USER 'Benutzername'@'localhost' IDENTIFIED BY 'Passwort (wählt ein sicheres)';
  8.  GRANT ALL PRIVILEGES ON nextcloud.* TO 'Benutzername'@'localhost';
  9.  FLUSH PRIVILEGES;
  10.  quit;
  11.  cd /tmp && wget https://download.nextcloud.com/server/releases/nextcloud-22.2.0.zip
  12.  unzip nextcloud-22.2.0.zip
  13. mv nextcloud /var/www/
  14. nano /etc/apache2/sites-available/nextcloud.conf
  15.  
    <VirtualHost *:80>
         ServerAdmin deine@mail.de
         DocumentRoot /var/www/nextcloud/
         ServerName deinedomain.de
      
         Alias /nextcloud "/var/www/nextcloud/"
    
         <Directory /var/www/nextcloud/>
            Options +FollowSymlinks
            AllowOverride All
            Require all granted
              <IfModule mod_dav.c>
                Dav off
              </IfModule>
            SetEnv HOME /var/www/nextcloud
            SetEnv HTTP_HOME /var/www/nextcloud
         </Directory>
    
         ErrorLog ${APACHE_LOG_DIR}/error.log
         CustomLog ${APACHE_LOG_DIR}/access.log combined
    
    </VirtualHost>
     
  16.  
    a2ensite nextcloud.conf
    a2enmod rewrite
    a2enmod headers
    a2enmod env
    a2enmod dir
    a2enmod mime
  17.  service apache2 restart
  18. mkdir /home/data/
  19. chown -R www-data:www-data /home/data/
  20. chown -R www-data:www-data /var/www/nextcloud/
  21. chmod -R 755 /var/www/nextcloud/
  22. Nun öffnest du deine Domain im Browser und richtest deine Nextcloud fertig ein. Falls du hierbei Hilfe benötigst, kannst du gerne mein Youtube-Video zur Nextcloud Installation anschauen.
Benno Kern

1 Kommentar zu „Nextcloud kostenlos installieren“

  1. נערות ליווי בתל אביב–Israel Lady

    I would like to thank you for the efforts youve put in writing this blog. I really hope to see the same high-grade blog posts from you in the future as well. In fact, your creative writing abilities has encouraged me to get my own website now 😉

Kommentar verfassen

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert