源码安装seafile

2024-05-31 17:58
文章标签 源码 安装 seafile

本文主要是介绍源码安装seafile,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!


1.github上有关于vagrant+virturalbox搭建开发环境的教程,但是没有看懂。

附上地址:https://github.com/haiwen

2.基本上和官网教程类似。 但是有些其他问题会坑死人。 先附上解决的坑。 



seafile编译开发文档。

https://manual.seafile.com/develop/index.html


填坑环节:

1.源码编译过程中会出现无数的警告。和其他看着不顺眼的像错误但是不是错误的东西。

答: 这些东西都不用管,只要没有提示ERROR。  都是没有问题的。 

2.在运行seafile-admin集体部署的时候没有像现成的安装包那样提示用户输入邮件地址(管理员账号)。

答:源码编译是不提示的。 你可以运行seafile-admin create-admin命令来创建管理员账户。或者seafile-admin reset-admin命令来设置管理员账户。

3.网页打开出现internatal ERROR的错误。

答:解决办法和4问题是一样的。 

4.网页出现Page unavailable错误。

答:网上查到的攻略说是python少库。

pip install gunicorn          

pip install rcssmin           

pip install django-picklefield    

后解决此问题。   然而作者安装了,还是出现这个问题,最后没办法全部删除,使用

  • libsearpc-3.0-latest.zip
  • ccnet-server-6.2.5-server.tar.gz
  • seafile-server-6.2.5-server.tar.gz
  • seahub-6.2.5-server.tar.gz

对应的这四个版本全部重新安装后,奇迹的般的好了, 所以,作者总结:可能和版本的对应有关系。

附:web端开始是没有问题的。   然后连接个手机端自此web端崩溃了, 再也没好过,但是安卓端和电脑PC端上传下载同步文件都是正常的。 有谁解决了这个问题给作者也说下,感谢感谢。

这个问题作者自行解决了。这是因为头像使用了 jpeg 格式的图片。需要重新安装下 python pillow 库,以便支持从 jpeg 格式的图片生成缩略图。

5.源码编译安装的seahub页面是英文的,下拉菜单无法更改语言。

答:执行一下seahub里面的i18n.sh脚本,问题就解决了。

6.


Server

Preparation

The following list is all the libraries you need to install on your machine. You should install all of them before you build seafile.

+

Package names are according to Ubuntu 12.04. For other Linux distros, please find their corresponding names yourself.

+

  • libevent-dev (2.0 or later )
  • libcurl4-openssl-dev (1.0.0 or later)
  • libglib2.0-dev (2.28 or later)
  • uuid-dev
  • intltool (0.40 or later)
  • libsqlite3-dev (3.8 or later)
  • libmysqlclient-dev (5.5 or later)
  • libarchive-dev
  • libtool
  • libjansson-dev
  • valac
  • libfuse-dev

Also, python 2.7 is required since seafile server 5.1.0.

+

The following libraries need to be compiled from source.

+

Notes about MySQL client library

You can also use MariaDB's LGPL Connector/C library. Download the latest stable version of the library on https://downloads.mariadb.org/connector-c/ then compile and install the library.

+

cmake .
make
sudo make install

By default the library will be installed under /usr/local/lib/mariadb. Add this path to your LD_LIBRARY_PATH environment variable so the loader can find this library.

+

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib/mariadb

libevhtp

  • Download libevhtp.
  • Build libevhtp by:
cmake -DEVHTP_DISABLE_SSL=ON -DEVHTP_BUILD_SHARED=OFF .
make
sudo make install

Seahub dependencies

Seahub is the web front end of Seafile. It's written in the django framework. Seahub requires Python 2.6(or 2.7) installed on your server, and it needs the following python libraries:

+

  • Django 1.8
  • pytz
  • django-statici18n
  • djangorestframework
  • django_compressor
  • django-post_office
  • django-constance (install it by pip install https://github.com/haiwen/django-constance/archive/bde7f7c.zip)
  • gunicorn
  • flup
  • chardet
  • python-dateutil
  • six
  • openpyxl

Before continue, make sure you have all the above libraries available in your system.

+

Prepare the directory layout

In the following sections, you'll be guided to build and setup the seafile server step by step. Seafile server is consisted of several components. In order for them to function correctly, you must:

+

  • Follow our instructions step by step
  • Make sure your directory layout is exactly the same with the guide in each step.

First create the top level directory. In the following sections, we'll use "/data/haiwen" as the top level directory.

+

mkdir /data/haiwen/
cd /data/haiwen/
mkdir seafile-server
cd seafile-server

The currently layout is:

+

haiwen/
└── seafile-server

Get the source

First you should get the latest source of libsearpc/ccnet-server/seafile-server/seahub

+

Download the source tarball of the latest tag from

+

  • https://github.com/haiwen/libsearpc/tags
  • https://github.com/haiwen/ccnet-server/tags
  • https://github.com/haiwen/seafile-server/tags
  • https://github.com/haiwen/seahub/tags

For example, if the latest released seafile server is 6.0.1, then just use the v6.0.1-server tags of the projects (except for libsearpc, which uses the v3.0-latest tag). You should get four tarballs:

+

  • libsearpc-3.0-latest.tar.gz
  • ccnet-server-6.0.1-server.tar.gz
  • seafile-server-6.0.1-server.tar.gz
  • seahub-6.0.1-server.tar.gz

Create a folder haiwen/src, and uncompress libsearpc/ccnet/seafile source to it.

+

cd haiwen/seafile-server
mkdir src
cd src
tar xf /path/to/libsearpc-3.0-latest.tar.gz
tar xf /path/to/ccnet-server-6.0.1-server.tar.gz
tar xf /path/to/seafile-server-6.0.1-server.tar.gz

And uncompress seahub tarball to haiwen/seafile-server:

+

cd haiwen/seafile-server
tar xf /path/to/seahub-6.0.1-server.tar.gz
mv seahub-6.0.1-server seahub

So far, The current directory layout is:

+

haiwen/
└── seafile-server└── seahub└── src├── libsearpc-6.0.1-server├── ccnet-server-6.0.1-server├── seafile-server-6.0.1-server├── ... (other files)

Building

To build seafile server, you need first build libsearpc and ccnet-server.

+

libsearpc
cd libsearpc-${version}
./autogen.sh
./configure
make
make install
ccnet-server
cd ccnet-server-${version}
./autogen.sh
./configure # `export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig` if libsearpc is not found
make
make install

By default, configure tries to find MySQL and Postgresql client libraries in the system. If you do not want to support MySQL or Postgresql, use the following configure options:

+

./configure --without-mysql --without-postgresql

If you want to use MariaDB Connector/C library, use the following configure option:

+

./configure --with-mysql=/usr/local/bin/mariadb_config
seafile-server
cd seafile-${version}
./autogen.sh
./configure
make
make install

You can use the same options as ccnet-server to configure MySQL and Postgresql client libraries.

+

Note: You need to run sudo ldconfig to refresh the system libraries cache after you compiles all the components.

+

Deploy Seafile Server

Components of the Seafile Server

The seafile server consists of the following components:

+

Process NameFunctionality
ccnet-serverunderlying networking
seaf-serverdata management
Seahubwebsite front-end of seafile server
fileserverhandles raw file upload/download for Seahub

  • ccnet stores its configuration and metadata is a directory named ccnet.
  • seaf-server store its configuration and data in a directory, normally named seafile-data.
  • seahub is written in Django. If you have any experience with Django, you should know the syncdbcommand must be run to create all the database tables.
  • An admin account has to be created, so that you, the admin, can login with this account to manage the server.

These are the essential steps to create the configuration:

+

  • ensure seafile is already installed and all the python libraries seahub needs are installed.
  • create the ccnet configuration with the ccnet-init program
  • create the seafile configuration with seaf-server-init program
  • run Django syncdb command for seahub
  • create an admin account for the seafile server

To create the configurations, you can either:

+

  • use the seafile-admin script(see below)
  • [[create server configuration by hand]]

Create Configurations with the seafile-admin script

seafile-admin should have been installed to system path after you have built and installed Seafile from source.

+

usage: seafile-admin [-h] {setup,start,stop,reset-admin} ...optional arguments:-h, --help            show this help message and exitsubcommands:{setup,start,stop,reset-admin}setup               setup the seafile serverstart               start the seafile serverstop                stop the seafile serverreset-admin         reset seafile admin account

Go to the top level directory(in this guide it's /data/haiwen/), and run seafile-admin setup to create all the configuration:

+

cd /data/haiwen
export PYTHONPATH=/data/haiwen/seafile-server/seahub/thirdpart
seafile-admin setup

The script would ask you a series of questions, and create all the configuration for you.

+

NameUsageDefaultRequirement
server nameThe name of the server that would be shown on the client 3 ~ 15 letters or digits
ip or domainThe ip address or domain name of the server Make sure to use the right ip or domain, or the client would have trouble connecting it
ccnet portthe tcp port used by ccnet10001 
seafile porttcp port used by seafile12001 
seafile fileserver porttcp port used by seafile fileserver8082 
admin emailEmail address of the admin account  
admin passwordpassword of the admin account  

This is a screenshot of the seafile-admin setup command: 

+

And a screenshot after setup is finished successfully: 

+

At this time, the directory layout would be like this:

+

haiwen/
└── ccnet # ccnet config directory└── ccnet.conf # ccnet config file
└── seafile-data # seafile configuration and data└── seafile.conf # seafile config file
└── seahub-data/ # seahub data
└── seahub.db # seahub sqlite3 database
└── seahub_settings.py # custom settings for seahub
└── seafile-server└── seahub/└── seafile-{VERSION} # seafile source code

Start the Seafile Server

After configuration successfully created, run seafile-admin start in the top directory to start the all components of Seafile. ( You should always run the seafile-admin script in the top directory ).

+

cd /data/haiwen # go to the top level directory
seafile-admin start

At this moment, all the components should be running and seahub can be visited at http://yourserver-ip-or-domain:8000

+

Note You may want to deploy seahub with nginx or apache. In this case, follow the instructions on Deploy Seafile Web With Nginx/Apache.

+

Stop the Seafile Server

To stop seafile server, run seafile-admin stop.

+

cd /data/haiwen # go to the top level directory
seafile-admin stop

Upgrade the Seafile Server

When you want to upgrade to a new vesrion of seafile server, you need to:

+

  • Stop the seafile server if it's running
cd /data/haiwen
seafile-admin stop
  • Get and latest source code and build libsearpc/ccnet/seafile, just as what you do in a fresh setup.
  • Run the upgrade script. The upgrade script mainly updates database used by seafile for you. For example, create a new database table that is used in the latest seafile server but not in the previous version.

Get and compile the latest libsearpc/ccnet/seafile

See the Building section above.

+

Get the new seahub tarball and uncompress it

cd haiwen/seafile-server
mv seahub/ seahub-old # move away the old seahub folder
tar xf /path/to/new/seahub-x.x.x-server.tar.gz
mv seahub-x.x.x-server seahub

Do the upgrade

  • copy the scripts/upgrade/ subdir outside

The upgrade scripts is distributed in the scripts/upgrade subdir of seafile source code, we need to copy it to seafile-server directory before run the scripts.

+

cd /data/haiwen/seafile-server
cp -rf seafile-{version}/scripts/upgrade .
Continuous Upgrade (like from 1.1 to 1.2)

Continuous upgrade means to upgrade from one version of seafile server to the next version. For example, upgrading from 1.1.0 to 1.2.0 is a continuous upgrade.

+

Note: Minor upgrade, like upgrade from 1.3.0 to 1.3.1, is documented in a separate section below.

+

Say you are upgrading from 1.1.0 to 1.2.0, you should run the script upgrade_1.1_1.2.sh in seafile-server directory.

+

cd /data/haiwen/seafile-server
./upgrade/upgrade_1.1_1.2.sh
Non-continous version upgrade(like from 1.1 to 1.3)

If you upgrade a few versions at once, e.g. from 1.1.0 to 1.3.0. The procedure is:

+

  • upgrade from 1.1.0 to 1.2.0
  • upgrade from 1.2.0 to 1.3.0

Just run the upgrade scripts in sequence.

+

Minor Upgrade (like from 1.3.0 to 1.3.1)

Minor upgrade Minor upgrade is like an upgrade from 1.3.0 to 1.3.1. For this type of upgrade, you only need to update the avatar link:

+

cd /data/haiwen/seafile-server/seahub/media
cp -rf avatars/* ../../../seahub-data/avatars/
rm -rf avatars
ln -s ../../../seahub-data/avatars

Problems Report

If you encounter any problem when building/deploying Seafile, please leave us a message or open an issue.





这篇关于源码安装seafile的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1018646

相关文章

JAVA中安装多个JDK的方法

《JAVA中安装多个JDK的方法》文章介绍了在Windows系统上安装多个JDK版本的方法,包括下载、安装路径修改、环境变量配置(JAVA_HOME和Path),并说明如何通过调整JAVA_HOME在... 首先去oracle官网下载好两个版本不同的jdk(需要登录Oracle账号,没有可以免费注册)下载完

Java JDK1.8 安装和环境配置教程详解

《JavaJDK1.8安装和环境配置教程详解》文章简要介绍了JDK1.8的安装流程,包括官网下载对应系统版本、安装时选择非系统盘路径、配置JAVA_HOME、CLASSPATH和Path环境变量,... 目录1.下载JDK2.安装JDK3.配置环境变量4.检验JDK官网下载地址:Java Downloads

SQL server数据库如何下载和安装

《SQLserver数据库如何下载和安装》本文指导如何下载安装SQLServer2022评估版及SSMS工具,涵盖安装配置、连接字符串设置、C#连接数据库方法和安全注意事项,如混合验证、参数化查... 目录第一步:打开官网下载对应文件第二步:程序安装配置第三部:安装工具SQL Server Manageme

Python中win32包的安装及常见用途介绍

《Python中win32包的安装及常见用途介绍》在Windows环境下,PythonWin32模块通常随Python安装包一起安装,:本文主要介绍Python中win32包的安装及常见用途的相关... 目录前言主要组件安装方法常见用途1. 操作Windows注册表2. 操作Windows服务3. 窗口操作

gitlab安装及邮箱配置和常用使用方式

《gitlab安装及邮箱配置和常用使用方式》:本文主要介绍gitlab安装及邮箱配置和常用使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1.安装GitLab2.配置GitLab邮件服务3.GitLab的账号注册邮箱验证及其分组4.gitlab分支和标签的

MySQL MCP 服务器安装配置最佳实践

《MySQLMCP服务器安装配置最佳实践》本文介绍MySQLMCP服务器的安装配置方法,本文结合实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下... 目录mysql MCP 服务器安装配置指南简介功能特点安装方法数据库配置使用MCP Inspector进行调试开发指

在Windows上使用qemu安装ubuntu24.04服务器的详细指南

《在Windows上使用qemu安装ubuntu24.04服务器的详细指南》本文介绍了在Windows上使用QEMU安装Ubuntu24.04的全流程:安装QEMU、准备ISO镜像、创建虚拟磁盘、配置... 目录1. 安装QEMU环境2. 准备Ubuntu 24.04镜像3. 启动QEMU安装Ubuntu4

Python UV安装、升级、卸载详细步骤记录

《PythonUV安装、升级、卸载详细步骤记录》:本文主要介绍PythonUV安装、升级、卸载的详细步骤,uv是Astral推出的下一代Python包与项目管理器,主打单一可执行文件、极致性能... 目录安装检查升级设置自动补全卸载UV 命令总结 官方文档详见:https://docs.astral.sh/

Nexus安装和启动的实现教程

《Nexus安装和启动的实现教程》:本文主要介绍Nexus安装和启动的实现教程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、Nexus下载二、Nexus安装和启动三、关闭Nexus总结一、Nexus下载官方下载链接:DownloadWindows系统根

Java SWT库详解与安装指南(最新推荐)

《JavaSWT库详解与安装指南(最新推荐)》:本文主要介绍JavaSWT库详解与安装指南,在本章中,我们介绍了如何下载、安装SWTJAR包,并详述了在Eclipse以及命令行环境中配置Java... 目录1. Java SWT类库概述2. SWT与AWT和Swing的区别2.1 历史背景与设计理念2.1.