Seafile (Linux): Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
Zeile 4: Zeile 4:


<pre>
<pre>
sudo apt-get install python-imaging python-mysqldb
sudo apt-get install python2.7 libpython2.7 python-setuptools python-imaging python-ldap python-mysqldb python-memcache python-urllib3
</pre>
</pre>



Version vom 14. Juni 2016, 22:19 Uhr

Voraussetzungen

MySQL-Server - siehe dazu MySQL installieren (Linux)

sudo apt-get install python2.7 libpython2.7 python-setuptools python-imaging python-ldap python-mysqldb python-memcache python-urllib3

Installation

Benutzer anlegen

Einen System-Benutzer seafile mit Homeverzeichnis, aber ohne Loginmöglichkeit, anlegen:

sudo addgroup --system --disabled-login --gid 1005 seafile
sudo adduser --system --disabled-login --uid 1005 --ingroup seafile seafile

Aktuelle Version runterladen

Auf https://www.seafile.com/en/download/ die letzte Serverversion suchen und runterladen:

sudo -u seafile mkdir /home/seafile/seafile
cd /home/seafile/seafile
sudo -u seafile wget https://bintray.com/artifact/download/seafile-org/seafile/seafile-server_5.1.3_x86-64.tar.gz

Entpacken und Installieren

sudo -u seafile tar -xzf seafile-server_*
sudo -u seafile mkdir installed
sudo -u seafile mv seafile-server_* installed

Datenbanken anlegen

mysql -u root -p 
mysql> create database if not exists ccnet
mysql> create database if not exists seafile
mysql> create database if not exists seahub
sudo -u seafile ./seafile-server-5.1.3/setup-seafile-mysql.sh

Links

http://manual.seafile.com/deploy/using_mysql.html


Zurück zu Ubuntu