源码安装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

相关文章

RabbitMQ 延时队列插件安装与使用示例详解(基于 Delayed Message Plugin)

《RabbitMQ延时队列插件安装与使用示例详解(基于DelayedMessagePlugin)》本文详解RabbitMQ通过安装rabbitmq_delayed_message_exchan... 目录 一、什么是 RabbitMQ 延时队列? 二、安装前准备✅ RabbitMQ 环境要求 三、安装延时队

linux系统上安装JDK8全过程

《linux系统上安装JDK8全过程》文章介绍安装JDK的必要性及Linux下JDK8的安装步骤,包括卸载旧版本、下载解压、配置环境变量等,强调开发需JDK,运行可选JRE,现JDK已集成JRE... 目录为什么要安装jdk?1.查看linux系统是否有自带的jdk:2.下载jdk压缩包2.解压3.配置环境

Python库 Django 的简介、安装、用法入门教程

《Python库Django的简介、安装、用法入门教程》Django是Python最流行的Web框架之一,它帮助开发者快速、高效地构建功能强大的Web应用程序,接下来我们将从简介、安装到用法详解,... 目录一、Django 简介 二、Django 的安装教程 1. 创建虚拟环境2. 安装Django三、创

linux安装、更新、卸载anaconda实践

《linux安装、更新、卸载anaconda实践》Anaconda是基于conda的科学计算环境,集成1400+包及依赖,安装需下载脚本、接受协议、设置路径、配置环境变量,更新与卸载通过conda命令... 目录随意找一个目录下载安装脚本检查许可证协议,ENTER就可以安装完毕之后激活anaconda安装更

Jenkins的安装与简单配置过程

《Jenkins的安装与简单配置过程》本文简述Jenkins在CentOS7.3上安装流程,包括Java环境配置、RPM包安装、修改JENKINS_HOME路径及权限、启动服务、插件安装与系统管理设置... 目录www.chinasem.cnJenkins安装访问并配置JenkinsJenkins配置邮件通知

Win10安装Maven与环境变量配置过程

《Win10安装Maven与环境变量配置过程》本文介绍Maven的安装与配置方法,涵盖下载、环境变量设置、本地仓库及镜像配置,指导如何在IDEA中正确配置Maven,适用于Java及其他语言项目的构建... 目录Maven 是什么?一、下载二、安装三、配置环境四、验证测试五、配置本地仓库六、配置国内镜像地址

Python安装Pandas库的两种方法

《Python安装Pandas库的两种方法》本文介绍了三种安装PythonPandas库的方法,通过cmd命令行安装并解决版本冲突,手动下载whl文件安装,更换国内镜像源加速下载,最后建议用pipli... 目录方法一:cmd命令行执行pip install pandas方法二:找到pandas下载库,然后

Linux系统中查询JDK安装目录的几种常用方法

《Linux系统中查询JDK安装目录的几种常用方法》:本文主要介绍Linux系统中查询JDK安装目录的几种常用方法,方法分别是通过update-alternatives、Java命令、环境变量及目... 目录方法 1:通过update-alternatives查询(推荐)方法 2:检查所有已安装的 JDK方

SQL Server安装时候没有中文选项的解决方法

《SQLServer安装时候没有中文选项的解决方法》用户安装SQLServer时界面全英文,无中文选项,通过修改安装设置中的国家或地区为中文中国,重启安装程序后界面恢复中文,解决了问题,对SQLSe... 你是不是在安装SQL Server时候发现安装界面和别人不同,并且无论如何都没有中文选项?这个问题也

2025版mysql8.0.41 winx64 手动安装详细教程

《2025版mysql8.0.41winx64手动安装详细教程》本文指导Windows系统下MySQL安装配置,包含解压、设置环境变量、my.ini配置、初始化密码获取、服务安装与手动启动等步骤,... 目录一、下载安装包二、配置环境变量三、安装配置四、启动 mysql 服务,修改密码一、下载安装包安装地