Seafile 是一個開源的文件雲存儲平臺,解決文件集中存儲、同步、多平臺訪問的問,容許用戶建立「羣組」,在羣組內共享和同步文件,方便了團隊協同工做。python
原文在這裏mysql
# 在 CentOS 7 下
# (MariaDB 是 MySQL 的分支)
yum install mariadb-server
# 若是以來有問題
# 嘗試在後面加上參數 --skip-broken
yum install python-setuptools python-imaging python-ldap MySQL-python python-memcached python-urllib3複製代碼
yum 安裝 mysqldb-python 後面seafile安裝報錯,須要經過 python 的工具pip來安裝MySQL-python pip install MySQL-python
git
在這裏下載seafile-server_6.0.7_x86-64.tar.gz,你能夠選擇你須要的版本github
# 查看系統版本
cat /proc/version
wget http://download-cn.seafile.com/seafile-server_6.0.7_x86-64.tar.gz
# 解壓
tar -zxvf seafile-server_6.0.7_x86-64.tar.gz
# 解壓放到一個目錄
cd seafile-server-*複製代碼
個人數據庫使用MySQL,你須要先在數據庫中創建一個 MySQL 用戶 seafile
。sql
# 登陸MySQL建立一個用戶
mysql -uroot -p
# 建立用戶設置密碼
mysql> Create USER 'seafile'@'%' IDENTIFIED BY '123456';
# 執行下面語句當即生效
mysql> flush privileges;複製代碼
運行./setup-seafile-mysql.sh
安裝腳本並回答預設問題數據庫
./setup-seafile-mysql.sh
Checking python on this machine ...
Checking python module: setuptools ... Done.
Checking python module: python-imaging ... Done.
Checking python module: python-mysqldb ... Done.
-----------------------------------------------------------------
This script will guide you to setup your seafile server using MySQL.
Make sure you have read seafile server manual at
https://github.com/haiwen/seafile/wiki
Press ENTER to continue
-----------------------------------------------------------------
What is the name of the server? It will be displayed on the client.
3 - 15 letters or digits
[ server name ] <填寫 seafile 服務器的名字>
What is the ip or domain of the server?
For example: www.mycompany.com, 192.168.1.101
[ This server's ip or domain ] <seafile 服務器的 IP 地址或者域名> Where do you want to put your seafile data? Please use a volume with enough free space [ default "/home/www/jinpans/seafile-data" ] Which port do you want to use for the seafile fileserver? [ default "8082" ] [ seafile fileserver 使用的 TCP 端口 ] ------------------------------------------------------- Please choose a way to initialize seafile databases: ------------------------------------------------------- [1] Create new ccnet/seafile/seahub databases 你須要提供根密碼. 腳本程序會建立數據庫和用戶。 [2] Use existing ccnet/seafile/seahub databases ccnet/seafile/seahub 數據庫應該已經被你(或者其餘人)提早建立。 [ 1 or 2 ] <選擇一種建立 Seafile 數據庫的方式> What is the host of mysql server? [ default "localhost" ] What is the port of mysql server? [ default "3306" ] What is the password of the mysql root user? [ root password ] <輸入root密碼> verifying password of user root ... done Enter the name for mysql user of seafile. It would be created if not exists. [ default "seafile" ] <默認seafile的MySQL用戶名,可使用默認> Enter the password for mysql user "seafile": [ password for seafile ] <輸入seafile密碼> verifying password of user seafile ... done Enter the database name for ccnet-server: [ default "ccnet-db" ] Enter the database name for seafile-server: [ default "seafile-db" ] Enter the database name for seahub: [ default "seahub-db" ] --------------------------------- This is your configuration --------------------------------- server name: seafile 服務器的名字 server ip/domain: 192.168.1.101 seafile data dir: /home/www/jinpans/seafile-data fileserver port: 8082 database: create new ccnet database: ccnet-db seafile database: seafile-db seahub database: seahub-db database user: seafile --------------------------------- Press ENTER to continue, or Ctrl-C to abort --------------------------------- Generating ccnet configuration ... done Successly create configuration dir /home/www/jinpans/ccnet. Generating seafile configuration ... Done. done Generating seahub configuration ... ---------------------------------------- Now creating seahub database tables ... ---------------------------------------- creating seafile-server-latest symbolic link ... done ----------------------------------------------------------------- Your seafile server configuration has been finished successfully. ----------------------------------------------------------------- run seafile server: ./seafile.sh { start | stop | restart } run seahub server: ./seahub.sh { start <port> | stop | restart <port> } ----------------------------------------------------------------- If you are behind a firewall, remember to allow input/output of these tcp ports: ----------------------------------------------------------------- port of seafile fileserver: 8082 port of seahub: 8000 When problems occur, Refer to https://github.com/haiwen/seafile/wiki複製代碼
上面算是結束了,而後在 seafile-server_6.0.7 目錄下面,運行以下命令bash
./seafile.sh start # 啓動 Seafile 服務複製代碼
./seahub.sh start <port> # 啓動 Seahub 網站 (默認運行在8000端口上)
# 你第一次啓動 seahub 時,seahub.sh 腳本會提示你建立一個 seafile 管理員賬號。
LC_ALL is not set in ENV, set to en_US.UTF-8
Starting seahub at port 8000 ...
----------------------------------------
It's the first time you start the seafile server. Now let's create the admin account
----------------------------------------
What is the email for the admin account?
[ admin email ] <這裏輸入郵箱地址>
What is the password for the admin account?
[ admin password ] <這裏輸入密碼>
Enter the password again:
[ admin password again ] <這裏確認輸入密碼>
----------------------------------------
Successfully created seafile admin
----------------------------------------
Seahub is started
Done.複製代碼
而後你能夠打開它了:服務器
http://192.168.1.111:8000/複製代碼
./seahub.sh stop # 中止 Seafile 進程
./seafile.sh stop # 中止 Seahub
./seafile.sh start # 啓動 Seafile 服務
./seahub.sh start 8001 # 啓動 Seahub 網站 (運行在8001端口上)
./seafile.sh restart # 中止當前的 Seafile 進程,而後重啓 Seafile
./seahub.sh restart # 中止當前的 Seahub 進程,並在 8000 端口從新啓動 Seahub複製代碼