centos7搭建seafile7.0.4

安装环境:

centos7.4    mysql5.7(第三步配置数据库用到,教程自己搜,还不会的@我)

seafile官方参考: https://cloud.seafile.com/published/seafile-manual-cn/deploy/using_mysql.md

1.下载seafile并解压

wget http://seafile-downloads.oss-cn-shanghai.aliyuncs.com/seafile-server_7.0.4_x86-64.tar.gz

2.安装环境

yum -y install epel-release

yum -y install python-imaging MySQL-python python-memcached python-ldap python-urllib3 ffmpeg ffmpeg-devel

pip install pillow moviepy

上一条命令可能错误:执行下面命令

yum install python3-pip

pip3 install pillow moviepy

3.安装seafile(按需求自己设置)

./setup-seafile-mysql.sh

4. 7.0.x 版本之后,8000端口默认监听在127.0.0.1地址上,这意味着您无法直接通过8000端口访问Seafile服务,按官方文档建nginx或者修改下面配置

/home/seafile/conf/gunicorn.conf文件

centos7搭建seafile7.0.4_第1张图片

 

5.启动并访问http://192.168.1.100:8000,记得开启端口访问权限

  • 启动 Seafile:

./seafile.sh start # 启动 Seafile 服务

  • 启动 Seahub

./seahub.sh start # 启动 Seahub 网站 (默认运行在8000端口上)

centos7搭建seafile7.0.4_第2张图片

 

 

你可能感兴趣的:(seafile,nginx,Linux)