Seafile 是一個開源的文件雲存儲平台,處理文件集中存儲、同步、多平台訪問的問,允許用戶創立“群組”,在群組內共享和同步文件,方便了團隊協同任務。
原文在這裡
裝置依賴# 在 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
在這裡下載seafile-server_6.0.7_x86-64.tar.gz,你可以選擇你需求的版本
# 檢查零碎版本
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
。
# 登錄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 ]
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 c.net/seafile/seahub databases
你需求提供根密碼. 腳本順序會創立數據庫和用戶。
[2] Use existing c.net/seafile/seahub databases
c.net/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 | stop | restart }
-----------------------------------------------------------------
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 目錄上面,運轉如下命令
啟動 Seafile:./seafile.sh start # 啟動 Seafile 服務
啟動 Seahub
./seahub.sh start # 啟動 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
參考材料
Seafile服務器手冊中文版
Seafile for Github
Seafile官網
以上就是對部署Seafile搭建自己的網盤的相關引見,希望對您學習IOS有所協助,感激您關注本站!
【部署Seafile搭建自己的網盤】的相關資料介紹到這裡,希望對您有所幫助! 提示:不會對讀者因本文所帶來的任何損失負責。如果您支持就請把本站添加至收藏夾哦!