Hallo in die Runde,
dies waren meine bisherigen Schritte:
sudo apt-get update sudo apt-get install apache2 sudo apt-get install php sudo apt-get install libapache2-mod-php sudo apt-get install mysql-server php-mysql
Manuell:
Ubuntu_18.04 owncloud-files-10.4.1-1+1.1 Add (at least temporarily) a download repository. This requires registering trusted key. (More information). Run the following shell commands as root to trust the repository:
wget -nv https://download.owncloud.org/download/repositories/production/Ubuntu_18.04/Release.key -O Release.key apt-key add - < Release.key
Run the following shell commands as root to add the repository and install from there.
echo 'deb http://download.owncloud.org/download/repositories/production/Ubuntu_18.04/ /' > /etc/apt/sources.list.d/owncloud.list apt-get update apt-get install owncloud-files
meine owncloud.conf (VirtuellHost)
own1@own1-V:~$ cat /etc/apache2/sites-available/owncloud.conf <VirtualHost *:80> ServerAdmin admin@yourdomain.com DocumentRoot /var/www/owncloud/ # ServerName www.yourdomain.com <Directory /var/www/owncloud/> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow from all </Directory> ErrorLog /var/log/apache2/error.log CustomLog /var/log/apache2/access.log combined </VirtualHost>
den Link angelegt.
sudo ln -s /etc/apache2/sites-available/owncloud.conf /etc/apache2/sites-enabled/owncloud.conf
aus den LAN ist Server (mit feste IP) erreichbar:
ping -c 4 192.168.1.103 64 bytes from 192.168.1.103 : icmp_seq=1 ttl=63 time=3.15 ms 64 bytes from 192.168.1.103 : icmp_seq=2 ttl=63 time=1.70 ms 64 bytes from 192.168.1.103 : icmp_seq=3 ttl=63 time=3.28 ms 64 bytes from 192.168.xxx.yyy : icmp_seq=4 ttl=63 time=1.87 ms
Beim Versuch owncloud
über „localhost/owncloud“ bzw über „LAN- Adresse/owncloud“ zu öffnen, erhalte ich eine:
Not Found
owncloud ist hier installiert.
own1@own1-V:/var/www$ ls -hal insgesamt 16K drwxrwsr-x 4 root www 4,0K Mai 2 11:26 . drwxr-xr-x 15 root root 4,0K Mai 2 10:45 .. drwxrwsr-x 2 www-data www-data 4,0K Mai 2 10:59 html drwxr-sr-x 16 www-data www-data 4,0K Mai 2 11:39 owncloud own1@own1-V:/var/www$
Datenbank ist angelegt.
mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | datenbankname | | mysql | | owncloud | | performance_schema | | sys | +--------------------+
Das funktioniert auch. LAN- Adresse ergibt die Apache- Seite: „Apache2 Ubuntu Default Page“ LAN- Adresse/phpinfo.php zeigt: „PHP Version 7.2.24-0ubuntu0.18.04.4“
Helfen nachfolgende Info‘s, dann bitte anfordern.
/etc$ tree apache2 dpkg -l |grep -i owncloud dpkg -l |grep -i php dpkg -l |grep -i apache