Pydio installieren: Unterschied zwischen den Versionen
| (8 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
| Zeile 1: | Zeile 1: | ||
| {{note|Noch in Bearbeitung}} | |||
| == Dokumentation == | |||
| Dokumentiation zu Community-Version: [https://pydio.com/en/docs/v6/install-pydio https://pydio.com/en/docs/v6/install-pydio] | |||
| == Installation == | |||
| ===Client === | |||
| [https://pydio.com/en/products/downloads/pydiosync-desktop-app https://pydio.com/en/products/downloads/pydiosync-desktop-app] | |||
| === Server === | |||
| In <code>/etc/apt/sources.list</code> folgende Zeilen hinzufügen: | In <code>/etc/apt/sources.list</code> folgende Zeilen hinzufügen: | ||
| Zeile 28: | Zeile 43: | ||
| sudo apt-get install pydio | sudo apt-get install pydio | ||
| </pre> | </pre> | ||
| == Konfiguration == | |||
| Apache-Benutzer <code>www-data</code> Zugriff auf das Pydio-Verzeichnis geben: | Apache-Benutzer <code>www-data</code> Zugriff auf das Pydio-Verzeichnis geben: | ||
| Zeile 47: | Zeile 64: | ||
| sudo a2enconf pydio.conf | sudo a2enconf pydio.conf | ||
| sudo service apache2 reload | sudo service apache2 reload | ||
| </pre> | |||
| Wenn die Seite nach der Installation nicht angezeigt wird und im Logfile folgender Fehler steht:<code>client denied by server configuration: /usr/share/pydio/data/cache/index.html</code> - dann noch folgende Zeile in der <code>pydio.conf</code> Datei hinzufügen: | |||
| <pre style="white-space: pre-wrap;  | |||
| white-space: -moz-pre-wrap;  | |||
| white-space: -pre-wrap;  | |||
| white-space: -o-pre-wrap;  | |||
| word-wrap: break-word;"> | |||
| Require all granted | |||
| </pre> | </pre> | ||
| Zeile 57: | Zeile 83: | ||
| sudo apt-get install php5-mcrypt | sudo apt-get install php5-mcrypt | ||
| sudo php5enmod mcrypt | sudo php5enmod mcrypt | ||
| </pre> | |||
| Datenbank anlegen: | |||
| <pre style="white-space: pre-wrap;  | |||
| white-space: -moz-pre-wrap;  | |||
| white-space: -pre-wrap;  | |||
| white-space: -o-pre-wrap;  | |||
| word-wrap: break-word;"> | |||
| mysql -u root -p | |||
| mysql> create database pydio; | |||
| mysql> grant all on pydio.* to 'pydiouser'@'localhost' identified by '<password>'; | |||
| mysql> FLUSH PRIVILEGES; | |||
| mysql> quit; | |||
| </pre> | |||
| Apache neu starten: | |||
| <pre style="white-space: pre-wrap;  | |||
| white-space: -moz-pre-wrap;  | |||
| white-space: -pre-wrap;  | |||
| white-space: -o-pre-wrap;  | |||
| word-wrap: break-word;"> | |||
| sudo service apache2 restart | |||
| </pre> | |||
| Jetzt noch den Installationsassistenten starten: | |||
| <pre style="white-space: pre-wrap;  | |||
| white-space: -moz-pre-wrap;  | |||
| white-space: -pre-wrap;  | |||
| white-space: -o-pre-wrap;  | |||
| word-wrap: break-word;"> | |||
| http://10.0.0.120/pydio/ | |||
| </pre> | </pre> | ||
| Zurück zu [[Ubuntu]] | Zurück zu [[Ubuntu]] | ||
Aktuelle Version vom 3. April 2016, 11:17 Uhr
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