Pydio installieren

Aus Tutorials
Zur Navigation springen Zur Suche springen

Noch in Bearbeitung


Dokumentation

Dokumentiation zu Community-Version: https://pydio.com/en/docs/v6/install-pydio

Installation

Client

https://pydio.com/en/products/downloads/pydiosync-desktop-app

Server

In /etc/apt/sources.list folgende Zeilen hinzufügen:

deb http://dl.ajaxplorer.info/repos/apt stable main
deb-src http://dl.ajaxplorer.info/repos/apt stable main

Öffentlichen Schlüssel der Quelle hinzufügen:

sudo wget -O - http://dl.ajaxplorer.info/repos/charles@ajaxplorer.info.gpg.key | sudo apt-key add -

Paket istallieren:

sudo apt-get update
sudo apt-get install pydio

Konfiguration

Apache-Benutzer www-data Zugriff auf das Pydio-Verzeichnis geben:

sudo chown -R www-data:www-data /usr/share/pydio/

Apache-Konfigurtionsdatei kopieren und aktivieren:

sudo cp /usr/share/doc/pydio/apache2.sample.conf /etc/apache2/conf-available/pydio.conf
sudo a2enconf pydio.conf
sudo service apache2 reload

Wenn die Seite nach der Installation nicht angezeigt wird und im Logfile folgender Fehler steht:client denied by server configuration: /usr/share/pydio/data/cache/index.html - dann noch folgende Zeile in der pydio.conf Datei hinzufügen:

Require all granted

php-mcrypt installieren:

sudo apt-get install php5-mcrypt
sudo php5enmod mcrypt

Datenbank anlegen:

mysql -u root -p
mysql> create database pydio;
mysql> grant all on pydio.* to 'pydiouser'@'localhost' identified by '<password>';
mysql> FLUSH PRIVILEGES;
mysql> quit;

Apache neu starten:

sudo service apache2 restart

Jetzt noch den Installationsassistenten starten:

http://10.0.0.120/pydio/


Zurück zu Ubuntu