【待反馈】docker安装失败
为了能快速了解并处理您的问题,请提供以下基础信息:面板、插件版本:免费免费版 8.2.0
系统版本:
系统:Ubuntu 18.04.6 LTS (Bionic Beaver) x86_64(Py3.7.8)
问题描述:
安装docker失败 无法启动
相关截图(日志、错误):
安装失败,文件不存在:/usr/lib/systemd/system/docker.service
失败截图
宝塔用户_rhcygs 发表于 2024-7-3 21:24
失败截图
您好,您执行以下命令解禁一下
sudo systemctl unmask docker.service
sudo systemctl unmask docker.socket
sudo systemctl unmask containerd.service
提示的文件不存在可以手动创建一个
sudo mkdir -p /etc/docker
sudo touch /etc/docker/daemon.json
sudo nano /etc/docker/daemon.json
在文件里边写入
{
"registry-mirrors": ["https://<your-mirror-url>.mirror.aliyuncs.com"]
}
替换 <your-mirror-url> 为你的镜像加速器地址。
然后逐条执行以下命令
sudo systemctl enable docker.service
sudo systemctl enable docker.socket
sudo systemctl enable containerd.service
sudo systemctl start docker.service
最后检查一下是否正确
docker --version 执行命令失败 运维技术阿闯 发表于 2024-7-4 09:55
您好,您执行以下命令解禁一下
提示的文件不存在可以手动创建一个
执行命令失败
宝塔用户_rhcygs 发表于 2024-7-8 14:59
执行命令失败
您好,应该是您这边就没有下载下来,重新安装一下docker,这次使用二进制方式手动安装
https://blog.csdn.net/qiuchenjun/article/details/128107633 既然 Docker 已经安装了,但你还是收到 Unit docker.service not found 的错误消息,这可能是由于 Docker 服务文件没有正确安装或配置。以下是你可以采取的步骤来解决这个问题:
1. 检查 Docker 服务文件
确认 Docker 服务文件是否存在于正确的位置:
bash
复制代码
ls /lib/systemd/system/docker.service
或
bash
复制代码
ls /etc/systemd/system/docker.service
2. 手动创建 Docker 服务文件
如果服务文件不存在,你可以手动创建它。创建一个名为 docker.service 的文件并添加以下内容:
bash
复制代码
sudo nano /lib/systemd/system/docker.service
然后添加以下内容:
ini
复制代码
Description=Docker Application Container Engine
Documentation=https://docs.docker.com
After=network-online.target firewalld.service
Wants=network-online.target
Type=notify
ExecStart=/usr/bin/dockerd -H unix://
ExecReload=/bin/kill -s HUP $MAINPID
TimeoutSec=0
RestartSec=2
Restart=always
# Note that StartLimit* options were moved from "Service" to "Unit" in systemd 229.
# Both the old, and new location are accepted by systemd 229 and up, so using the old location
# to make them work for either version of systemd.
StartLimitBurst=3
# Note that StartLimitInterval was renamed to StartLimitIntervalSec in systemd 230.
StartLimitInterval=60s
# Having non-zero Limit*s causes performance problems due to accounting overhead
# in the kernel. We recommend using cgroups to do container-local accounting.
LimitNOFILE=infinity
LimitNPROC=infinity
LimitCORE=infinity
# Comment TasksMax if your systemd version does not support it.
# Only systemd 226 and above support this option.
TasksMax=infinity
# set delegate yes so that systemd does not reset the cgroups of docker containers
Delegate=yes
# kill only the docker process, not all processes in the cgroup
KillMode=process
WantedBy=multi-user.target
保存并退出编辑器。
3. 重新加载 Systemd 并启动 Docker
bash
复制代码
sudo systemctl daemon-reload
sudo systemctl start docker
sudo systemctl enable docker
4. 检查 Docker 服务状态
bash
复制代码
sudo systemctl status docker
如果服务启动成功,你应该看到 Docker 服务正在运行。
5. 重启 Docker
现在你可以重启 Docker 了。
bash
复制代码
sudo systemctl restart docker
如果上述步骤仍然无法解决问题,请提供更多细节,以便进一步排查。 宝塔用户_eoykcz 发表于 2024-7-21 18:52
既然 Docker 已经安装了,但你还是收到 Unit docker.service not found 的错误消息,这可能是由于 Docker...
我这样解决了 宝塔用户_eoykcz 发表于 2024-7-21 18:52
我这样解决了
感谢您的问题解决思路,我们等待楼主回复即可
页:
[1]