手动安装seafile 专业版7.0.14 安装步骤

目录

1. 环境

准备Ubuntu18.04/16.0.4或者centos7.X  不能使用ubuntu 20或者centos 8

如果需要使用宝塔,先安装好宝塔再安装seafile
注:Ubuntu用户名别使用seafile,否则安装过程中报错:

useradd:用户“seafile”已存在

2. 准备工作

  • Ubuntu执行如下
apt-get update
#安装seahub依赖环境
apt-get install python2.7 python-setuptools python-mysqldb python-urllib3 python-ldap -y
#安装office预览插件
sudo apt-get install libreoffice libreoffice-script-provider-python poppler-utils
#安装字体文件
sudo apt-get install ttf-wqy-microhei ttf-wqy-zenhei xfonts-wqy
  • Centos执行如下
#安装seahub依赖
yum install python python-setuptools MySQL-python python-urllib3 python-ldap -y
#安装office预览插件
sudo yum install libreoffice libreoffice-headless libreoffice-pyuno poppler-utils
#安装字体文件
sudo yum install wqy-microhei-fonts wqy-zenhei-fonts wqy-unibit-fonts -y

3. 下载安装包

  • ubuntu执行如下:
#创建安装目录
mkdir  /opt/seafile
#切换安装目录
cd /opt/seafile/
#下载安装镜像
wget https://yun.ittel.cn:1443/f/c9f0b0613e374f80b78d/?dl=1 -O seafile-pro-server_7.0.14_x86-64.tar.gz#解压tar  -zxvf  seafile-pro-server_7.0.14_x86-64.tar.gz
  • Centos执行如下
#创建安装目录
mkdir  /opt/seafile
#切换安装目录
cd /opt/seafile/
#下载安装镜像
wget https://yun.ittel.cn:1443/f/ce111092bc2943c188b4/?dl=1 -O seafile-pro-server_7.0.14_x86-64.tar.gz#解压tar  -zxvf  seafile-pro-server_7.0.14_x86-64.tar.gz

4. 执行安装命令

/opt/seafile/seafile-pro-server-7.0.14/setup-seafile-mysql.sh

按照提示进行操作

Checking python on this machine ...
  Checking python module: python-mysqldb ... Done.

Checking for java ...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 ] 你的站点名称,随意填写
What is the ip or domain of the server?
For example: www.mycompany.com, 192.168.1.101
[ This server's ip or domain ] 你的域名或者本机IP
Where do you want to put your seafile data?
Please use a volume with enough free space[ default "/opt/seafile/seafile-data" ] 默认回车
Which port do you want to use for the seafile fileserver?
[ default "8082" ] 默认回车-------------------------------------------------------Please choose a way to initialize seafile databases:-------------------------------------------------------[1] Create new ccnet/seafile/seahub databases[2] Use existing ccnet/seafile/seahub databases[ 1 or 2 ] 1What 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" ] 默认回车
Enter the password for mysql user "seafile":
[ password for seafile ] 设置数据库用户seafile的密码
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.2.81

    seafile data dir:       /opt/seafile/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 /opt/seafile/ccnet.
Generating seafile configuration ...

Done.
done
Generating seahub configuration ...----------------------------------------Now creating ccnet database tables ...--------------------------------------------------------------------------------Now creating seafile database tables ...--------------------------------------------------------------------------------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:   8082port of seahub:               8000When problems occur, Refer to

        https://github.com/haiwen/seafile/wikifor information.
至此安装完成

5.启动并配置管理员

  • 创建启动用户(不能已root用户启动,否则搜索不能用
#创建用户
useradd --system --comment "seafile" seafile --create-home --home-dir  /home/seafile
#修改目录权限
chown -R seafile.seafile /opt/seafile
  • 启动服务
#切换seafile用户执行启动
sudo -u seafile    /opt/seafile/seafile-server-latest/seafile.sh start
# 启动
seahub,会提示让你创建管理员用户,安装提示创建
sudo -u seafile    /opt/seafile/seafile-server-latest/seahub.sh start

6. 配置反向代理

创建一个网站:

(图1)

填写域名,php版本改成纯静态

(图2)

打开网站配置文件

(图3)

修改配置文件如下

server
{
listen 8888; #监听端口
server_name www.xxx.com;  #域名

location / {
proxy_pass http://127.0.0.1:8000;
proxy_set_header Host $host; #解决CSRF verification failed
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_set_header X-Forwarded-Proto $scheme;
proxy_read_timeout 1200s;

# used for view/edit office file via Office Online Server
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;
}
location /media {
root /opt/seafile/seafile-server-latest/seahub;
}
location /seafdav {
fastcgi_pass 127.0.0.1:8080;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_script_name;
fastcgi_param SERVER_PROTOCOL $server_protocol;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;
fastcgi_param REMOTE_ADDR $remote_addr;

client_max_body_size 0;

}
access_log /www/wwwlogs/www.xxzgxj.com.log;
error_log /www/wwwlogs/www.xxzgxj.com.error.log;
}

浏览器通过域名进行登录管理后台。对应修改站点url。8888是反向代理配置端口。根据实际进行修改

(图4)

7. 设置开机自启

  • Ubuntu设置 开机自启参照如下
 vi /etc/init.d/seafile-server

然后把如下复制进去,可以使用通过宝塔图形化界面编辑

#!/bin/bash### BEGIN INIT INFO# Provides:          seafile-server# Required-Start:    $remote_fs $syslog mysql# Required-Stop:     $remote_fs $syslog# Default-Start:     2 3 4 5# Default-Stop:      0 1 6# Short-Description: Seafile server# Description:       Start Seafile server### END INIT INFO# Author: Alexander Jackson <alexander.jackson@seafile.com.de># Change the value of "seafile_dir" to your path of seafile installation#改成实际启动用户user=seafile#安装目录seafile_dir=/opt/seafile
script_path=${seafile_dir}/seafile-server-latest
seafile_init_log=${seafile_dir}/logs/seafile.init.log
seahub_init_log=${seafile_dir}/logs/seahub.init.logcase "$1" in
        start)
                sudo -u ${user} ${script_path}/seafile.sh start >> ${seafile_init_log}
                sudo -u ${user} ${script_path}/seahub.sh start >> ${seahub_init_log}
        ;;
        restart)
                sudo -u ${user} ${script_path}/seafile.sh restart >> ${seafile_init_log}
                sudo -u ${user} ${script_path}/seahub.sh restart >> ${seahub_init_log}
        ;;
        stop)
                sudo -u ${user} ${script_path}/seafile.sh $1 >> ${seafile_init_log}
                sudo -u ${user} ${script_path}/seahub.sh $1 >> ${seahub_init_log}
        ;;
        *)                echo "Usage: /etc/init.d/seafile-server {start|stop|restart}"
                exit 1
        ;;esac

然后保存

给予执行权限并添加到开机自启

chmod +x /etc/init.d/seafile-serverupdate-rc.d seafile-server defaults

添加开机自启后服务手动启动和关闭命令

#停止服务service seafile-server stop#启动服务service seafile-server start

  • Centos设置 开机自启参照如下

编辑/etc/systemd/system/seafile.service,可以使用通过宝塔图形化界面编辑

vi  /etc/systemd/system/seafile.service

把如下复制进去,根据实际情况调整启动用户和安装目录

[Unit]Description=Seafile Server#如果用的是mysql不是mariadb,则把“mariadb.service” 改成 "mysql.service"After=network.target remote-fs.target mariadb.service[Service]#启动脚本目录ExecStart=/opt/seafile/seafile-server-latest/seafile.sh startExecStop=/opt/seafile/seafile-server-latest/seafile.sh stop#启动用户User=seafileGroup=seafileLimitNOFILE=infinityType=oneshotRemainAfterExit=yes[Install]WantedBy=multi-user.target

再编辑/etc/systemd/system/seahub.service,可以使用通过宝塔图形化界面编辑

vi  /etc/systemd/system/seahub.service

把如下复制进去,根据实际情况调整启动用户和安装目录

[Unit]Description=Seafile SeahubAfter=network.target seafile.service[Service]ExecStart=/opt/seafile/seafile-server-latest/seahub.sh startExecStop=/opt/seafile/seafile-server-latest/seahub.sh stopUser=seafileGroup=seafileType=oneshotRemainAfterExit=yes[Install]WantedBy=multi-user.target

添加到开机自启

systemctl enable seafile
systemctl enable seahub

添加开机自启后服务手动启动和关闭命令

#关闭服务 
systemctl stop seafile 
systemctl stop seahub 
#启动服务 
systemctl start seafile 
systemctl start seahub

8. 安装后可选优化(可选)

a、解除预览默认限制最大2M

默认安装完成后,预览office文档和pdf最大2M,超过2M界面会提示

(图5)

通过宝塔图形化界面或者命令修改  /opt/seafile/conf/seafevents.conf

添加到[OFFICE CONVERTER]的下面

## 有多少页允许在线预览。默认是20页max-pages = 50##文件允许的最大大小在线预览,在MB。默认值是2 MB# #预览一个大文件(例如> 30M)网络浏览器可能会卡一会。max-size = 10

最终效果如图

(图6)

提示:如果文件大于5M,预览转换时间会很长。


1、本站目前拥有近 1000+ 精品收费资源,现在加入VIP会员即可全部下载。
2、本资源部分来源其他付费资源平台或互联网收集,如有侵权请联系及时处理。
SEA模板网 » 手动安装seafile 专业版7.0.14 安装步骤

发表评论

加入本站VIP会员订阅计划,海量资源免费查看

目前为止共有 3654 位优秀的VIP会员加入! 立刻加入VIP会员