dockerd: error while loading shared libraries: libsepol.so.1: cannot open shared object file: No such file or directory
时间: 2023-07-02 18:21:30 浏览: 458
libstdc++.so.6: 无法打开共享对象文件: 没有那个文件或目录
5星 · 资源好评率100%
这个问题通常是因为您的系统缺少名为 libsepol.so.1 的软件包或者这个软件包被卸载了。您可以尝试安装 libsepol1 进行修复。请使用以下命令:
对于 Debian/Ubuntu 系统:
```
sudo apt-get update
sudo apt-get install -y libsepol1
```
对于 CentOS/RHEL 系统:
```
sudo yum update
sudo yum install -y libsepol
```
安装后,您可以尝试重新启动 dockerd 服务。
阅读全文