Seafile部署傻瓜式教程

云服务器系统为CentOS,安装Seafile专业版7.1.5

1、SSH至云服务器

2、(可选)确认服务器版本,我的服务器是CentOS 7.6

命令:cat /etc/centos-release

1

3、打开https://github.com/haiwen/seafile-server-installer-cn,根据Seafile安装脚本提示下载安装脚本(偶尔连接不上,需要多试几次)

2

*虽然网页提示需要CentOS 8,但是CentOS 7一样可以安装

命令:wget https://raw.githubusercontent.com/haiwen/seafile-server-installer-cn/master/seafile-server-7.1-centos-amd64-http

3

4、开始安装之前,根据安装脚本提示,需要下载专业版安装包(如安装开源版,则可直接安装)

4

4.1、切换Seafile英文网站https://www.seafile.com/en/home/,选择Download,下拉,点击customer center

5

4.2、注册账号并登陆用户中心,选择左侧Download,并点击右边链接https://download.seafile.com/d/6e5297246c/?p=/pro

6

4.3、下拉页面,下载最新专业版(目前最新是7.1.5)

7

4.4、点击seafile-pro-server_7.1.5_x86-64_CentOS.tar.gz进入下载页面,下载安装包

8
9

4.5、下载完毕后,通过SSH传输工具传输至服务器的/opt目录

10

5、根据安装脚本提示,开始安装

11

命令:bash seafile-server-7.1-centos-amd64-http 7.1.5(自行领悟一下规则)

12

6、根据提示输入相应选项,本次选择2,开始安装

13

7、提示无法找到7.1.5的安装包,原因是文件名不同

14

8、修改安装包文件名为安装脚本所需文件名

命令:mv /opt/seafile-pro-server_7.1.5_x86-64_CentOS.tar.gz /opt/seafile-pro-server_7.1.5_x86-64.tar.gz

9、重新输入命令:bash seafile-server-7.1-centos-amd64-http 7.1.5开始安装,安装过程等待时间整(如等待较久,大部分是网速原因/如出错导致结束进程,则重新执行命令重新安装即可),当出现以下画面时,则安装完成

15

往前查看安装完毕的Seafile的用户名及密码

16

10、根据https://www.bt.cn/bbs/thread-19376-1-1.html安装宝塔Linux版面板

17

11、当出现以下画面时,则安装完成,查看安装完毕的宝塔面板访问地址、的用户名及密码

18

*云服务器注意检查防火墙端口是否开放

12、访问面板,安装nginx服务即可

19
20

13、安装nginx服务完毕

21

14、新建网站,在域名处输入域名/IP:端口(端口应非8000、8082、8888),点击提交

22
23

15、点击网站右侧的设置,选择设置框左侧的反向代理,添加反向代理,输入相关参数,点击提交

24

16、点击配置文件,修改反向代理的配置文件为下面参数

location / {

proxy_pass http://127.0.0.1:8000;

proxy_set_header Host $host;

proxy_set_header X-Real-IP $remote_addr;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

proxy_set_header X-Forwarded-Host $server_name;

proxy_read_timeout 1200s;

client_max_body_size 0;

}

location /seafhttp {

rewrite ^/seafhttp(.*)1 break;

proxy_pass http://127.0.0.1:8082;

client_max_body_size 0;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

proxy_connect_timeout 36000s;

proxy_read_timeout 36000s;

proxy_send_timeout 36000s;

send_timeout 36000s;

proxy_request_buffering off;

}

location /media {

root /opt/seafile/seafile-pro-server-7.1.5/seahub;

}

17、选中宝塔面板左侧软件商店,点击nginx右侧的设置

25

18、重启nginx服务,全部部署完成

26

19、访问之前新建网站所输入的域名/IP:端口

27

PS:如完成全部步骤,还是无法访问,可以通过以下步骤排查

①重启服务器

②删除宝塔面板的网站、nginx服务,重新执行安装nginx服务及后续步骤

③检查服务器及宝塔面板左侧安全页面,开放所需端口

20、配置office预览:根据https://cloud.seafile.com/published/seafile-manual-cn/deploy_pro/office_documents_preview.md配置office文件预览

21、完成

你可能感兴趣的:(Seafile部署傻瓜式教程)