Singularity 初探之安装部署与避坑
沈维燕 · 2023-04-18
背景
怎么样高效的搭建分析流程且能保证分析流程稳定运行的使用效果呢?目前主流的是 conda 和容器技术(container)。 conda 在很多文章中中已经介绍,在这不再过多叙述。虽然 conda 能解决大部分生信软件安装问题,但是若软件安装多了,会出现兼容性问题以及 “臃肿” 现象,为此,引入容器技术 (container) 来解决这些问题。 在容器技术中,docker 和 singularity 是常用的容器软件。但 docker 不太适合 HPC 环境。因为在调度管理器上容器无法施加资源限制、多用户(非 root 用户)使用时会出现权限问题、而且 docker 会存在一些不必要的资源开销。 为此,引进 singularity 容器来解决 docker 的一些缺点。首先,singularity 可以兼容 docker的镜像,同时构建出的镜像可以很容易进行拷贝和转移,且体积更小;此外 singularity 假设用户在一个有 root 权限的系统上构建容器,在一个没有 root 权限的系统上运行容器,兼顾了数据的安全性和便捷性,更加符合实际的应用场景。
🔗 来源:《Singularity——生信流程搭建的幸运儿——“生信小尧"公众号》
Singularity 是一种专为科学计算和 HPC 环境设计的容器技术,具有与 HPC 环境的无缝集成、高度的可移植性和兼容性、安全性和可控性等优势。在处理大规模数据、模拟和深度学习等领域中,具有广泛的应用价值。
🔗 来源:《Singularity使用真简单!——“HPCLIB"公众号》
安装
最开始选择从 GitHub 的源码库 https://github.com/sylabs/singularity/ 中进行非 root 的普通用户手动安装。 服务器系统版本和内核版本:
$ lsb_release -a
LSB Version: :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch
Distributor ID: RedHatEnterpriseServer
Description: Red Hat Enterprise Linux Server release 6.5 (Santiago)
Release: 6.5
Codename: Santiago
$ uname -a
Linux log01 2.6.32-431.el6.x86_64 #1 SMP Sun Nov 10 22:19:54 EST 2013 x86_64 x86_64 x86_64 GNU/Linux
出现了几个问题:
-
singularity 2.5.0 及以上要求升级 Linux 内核,否则
configure
会出现错误:The
NO_NEW_PRIVS
bit is supported since Linux 3.5!
$ ./configure --prefix=/Bioinfo/Pipeline/SoftWare/Singularity-2.5.0
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
......
checking for feature: NO_NEW_PRIVS... no
ERROR!!!!!!
This host does not support the NO_NEW_PRIVS prctl functions!
The kernel must be updated to support Singularity securely.
-
singularity 2.4.6 虽然能在非 root 的普通用户手动安装下安装成功,但很多功能不支持,甚至导致错误:
- 在 pull 下载一些镜像时,会引发 urllib2.URLError 的 ssl 异常:
$ singularity pull shub://vsoch/hello-world ...... File "/usr/lib64/python2.6/urllib2.py", line 1198, in https_open return self.do_open(httplib.HTTPSConnection, req) File "/usr/lib64/python2.6/urllib2.py", line 1165, in do_open raise URLError(err) urllib2.URLError: <urlopen error [Errno 1] _ssl.c:492: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure>
- build 时候,要求安装 squashfs-tools:
$ singularity build hello-world.simg shub://vsoch/hello-world ERROR: You must install squashfs-tools to build images ABORT: Aborting with RETVAL=255
鉴于以上问题,最后选择了通过 mamba/conda 的方式安装,并最终安装成功 3.7.1 版本。
$ mamba create -n singularity -c conda-forge singularity
$ singularity version
3.7.1
测试了很多次才发现,基于 conda/mamba 安装的 singularity,使用上多少都会出现各种问题(如下面)。
SetUID
(singularity) bi.admin@log01 16:14:41 /home/bi.admin/Singularity
$ singularity build --sandbox lolcow/ library://sylabs-jms/testing/lolcow
INFO: Starting build...
INFO: Downloading library image
87.9MiB / 87.9MiB [==============================================================================] 100 % 214.0 KiB/s 0s
INFO: Verifying bootstrap image /home/bi.admin/.singularity/cache/library/sha256.5022b5e7c7249c40119a875c1ace0700ced4099e077acc75d0132190254563a4
WARNING: integrity: signature not found for object group 1
WARNING: Bootstrap image could not be verified, but build will continue.
ERROR: unpackSIF failed: root filesystem extraction failed: could not extract squashfs data, unsquashfs not found
FATAL: While performing build: packer failed to pack: root filesystem extraction failed: could not extract squashfs data, unsquashfs not found
[root@log01 Singularity]# singularity build --sandbox lolcow/ library://sylabs-jms/testing/lolcow
INFO: Starting build...
INFO: Downloading library image
87.9MiB / 87.9MiB [==============================================================================] 100 % 205.2 KiB/s 0s
INFO: Verifying bootstrap image /root/.singularity/cache/library/sha256.5022b5e7c7249c40119a875c1ace0700ced4099e077acc75d0132190254563a4
WARNING: integrity: signature not found for object group 1
WARNING: Bootstrap image could not be verified, but build will continue.
ERROR: unpackSIF failed: root filesystem extraction failed: could not extract squashfs data, unsquashfs not found
FATAL: While performing build: packer failed to pack: root filesystem extraction failed: could not extract squashfs data, unsquashfs not found
[root@log01 Singularity]# singularity exec ubuntu_20.04.sif date
WARNING: underlay of /etc/localtime required more than 50 (67) bind mounts
FATAL: kernel too old
-
root/sudo 用户才能 build 建立镜像沙箱?说好的不依赖于 root 呢?
-
以下链接内容说明了非 root 用户也可以安装和使用 singularity:
https://docs.sylabs.io/guides/3.5/admin-guide/installation.html#install-nonsetuid issues 1258: Does Singularity support installation by user without root privileges? 但有要求:To allow unprivileged creation of user namespaces a kernel >=3.8 is required, with >=4.18 being recommended due to support for unprivileged mounting of FUSE filesystems (needed for example for mounting SIF files). The equivalent recommendation on RHEL7 is >=3.10.0-1127 from release 7.8, where unprivileged mounting of FUSE filesystems was backported. To use unprivileged overlayFS for persistent overlays, kernel >=5.11 is recommended, but if that’s not available then Apptainer will use fuse-overlayfs instead. That feature has not been backported to RHEL7.
- 默认安装要求安装文件具备 SetUID 权限,这一点暂时没能理解!!!
Linux SetUID(SUID)文件特殊权限用法详解
- 默认安装要求安装文件具备 SetUID 权限,这一点暂时没能理解!!!
User Namespace
Singularity 如果不适用 SetUID,那它通过普通用户安装运行是要求开启 User Namespace!
When singularity/SingularityCE does not use setuid all container execution will use a user namespace.
🔗 来源:https://docs.sylabs.io/guides/3.8/admin-guide/user_namespace.html
在 CentOS 7.7 + 3.10.0-1062.1.1.el7.x86_64 内核下使用conda create -n singularity -c conda-forge singularity
安装了 singularity-3.8.6 后发现,pull/shell/exec 都没问题,但 build 会出现异常:
$ singularity pull docker://ubuntu:20.04
INFO: Converting OCI blobs to SIF format
INFO: Starting build...
Getting image source signatures
Copying blob ca1778b69356 done
Copying config 88bd689171 done
Writing manifest to image destination
Storing signatures
2023/04/19 09:59:37 info unpack layer: sha256:ca1778b6935686ad781c27472c4668fc61ec3aeb85494f72deb1921892b9d39e
INFO: Creating SIF file...
$ singularity build --sandbox blast ubuntu_20.04.sif
INFO: Starting build...
INFO: Verifying bootstrap image ubuntu_20.04.sif
WARNING: integrity: signature not found for object group 1
WARNING: Bootstrap image could not be verified, but build will continue.
ERROR: unpackSIF failed: root filesystem extraction failed: could not extract squashfs data, unsquashfs not found
FATAL: While performing build: packer failed to pack: root filesystem extraction failed: could not extract squashfs data, unsquashfs not found
使用yum install squashfs-tools
安装了unsquashfs
并添加到 $PATH 中问题依然没法解决!!!
源码编译
最后还是选择从源码安装。
安装 Go
wget https://dl.google.com/go/go1.20.1.linux-amd64.tar.gz
tar -xzvf go1.20.1.linux-amd64.tar.gz
sudo ln -s go /usr/local/bin
安装 singularity
如果想要非 root 的普通用户也能正常使用,mconfig 时候需要加上 –without-suid。
$ wget https://github.com/apptainer/singularity/releases/download/v3.8.7/singularity-3.8.7.tar.gz
$ tar zvxf singularity-3.8.7.tar.gz
$ cd singularity-3.8.7
$ ./mconfig --prefix=/ifs1/singularity/singularity-3.8.7 --without-suid
$ make -C ./builddir
$ make -C ./builddir install
使用测试
初步测试 singularity build 也能正常使用了。