Ceph 是一种可扩展的分布式存储系统。Seafile 可以使用 Ceph 的 RADOS 对象存储层作为存储后端。
Seafile 可以看作 Ceph/RADOS 的客户端,所以它需要访问 ceph 集群的配置文件和密钥环。您必须将 ceph 管理员节点 /etc/ceph 目录下的文件拷贝到 seafile 的机器上。
seafile-machine# sudo scp user@ceph-admin-node:/etc/ceph/ /etc
WebDAV 访问和文件检索服务依赖于 python ceph 客户端库,因此需要在系统中安装。
在Debian/Ubuntu(seafile 7.1+)上
sudo apt-get install python3-rados
在 Debian/Ubuntu (Seafile 7.0或更低版本)上
sudo apt-get install python-ceph
在 CentOS/RHEL (Seafile 7.0或更低版本)上
sudo yum install python-rados
编辑 seafile.conf
文件,添加以下几行:
[block_backend]
name = ceph
ceph_config = /etc/ceph/ceph.conf
pool = seafile-blocks
[commit_object_backend]
name = ceph
ceph_config = /etc/ceph/ceph.conf
pool = seafile-commits
[fs_object_backend]
name = ceph
ceph_config = /etc/ceph/ceph.conf
pool = seafile-fs
[memcached]
memcached_options = --SERVER=localhost --POOL-MIN=10 --POOL-MAX=100
建议您为 commit, fs 和 block objects 分别创建连接池:
ceph-admin-node# rados mkpool seafile-blocks
ceph-admin-node# rados mkpool seafile-commits
ceph-admin-node# rados mkpool seafile-fs
由于 Seafile 的发布包是在比较老版本的 CentOS 上面编译的,所以自带的 C++ 库以及 ceph 客户端库和新的操作系统不兼容。因此,在比较新的系统上(比如 CentOS 7, Ubuntu 16.04)需要把发布包里面几个自带的库删除掉,以保证 seafile 会使用安装在系统中的库。
cd seafile-server-latest/seafile/lib
rm librados.so.2 libstdc++.so.6 libnspr4.so
为了最佳性能,强烈建议您安装 memcached 并为 objects 启用 memcache。
我们建议您为 memcached 分配 128MB 的内存空间。编辑 /etc/memcached.conf 文件如下:
# Start with a cap of 64 megs of memory. It's reasonable, and the daemon default
# Note that the daemon will grow to this size, but does not start out holding this much
# memory
# -m 64
-m 128
上述的配置会使用默认的Ceph用户(client.admin)来访问 Ceph。从安全性的角度考虑,你可能想使用其他用户来为 Seafile 提供Ceph访问。假设你创建的 Ceph 用户 id 为 seafile,加入以下配置:
[block_backend]
name = ceph
ceph_config = /etc/ceph/ceph.conf
# Sepcify Ceph user for Seafile here
ceph_client_id = seafile
pool = seafile-blocks
[commit_object_backend]
name = ceph
ceph_config = /etc/ceph/ceph.conf
# Sepcify Ceph user for Seafile here
ceph_client_id = seafile
pool = seafile-commits
[fs_object_backend]
name = ceph
ceph_config = /etc/ceph/ceph.conf
# Sepcify Ceph user for Seafile here
ceph_client_id = seafile
pool = seafile-fs
[memcached]
memcached_options = --SERVER=localhost --POOL-MIN=10 --POOL-MAX=100
你可以通过以下命令创建 ceph 用户:
ceph auth add client.seafile \
mds 'allow' \
mon 'allow r' \
osd 'allow rwx pool=seafile-blocks, allow rwx pool=seafile-commits, allow rwx pool=seafile-fs'
你还需要把这个用户的 keyring 路径写入 /etc/ceph/ceph.conf 中:
[client.seafile]
keyring = <path to user's keyring file>
Last modified by 天蓝蓝蓝, 2023-06-21