活动介绍

6月 23 16:54:14 192.168.18.154 systemd[1]: start request repeated too quickly for docker.service 6月 23 16:54:14 192.168.18.154 systemd[1]: Failed to start Docker Application Container Engine. -- Subject: Unit docker.service has failed -- Defined-By: systemd -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel -- -- Unit docker.service has failed. -- -- The result is failed. 6月 23 16:54:14 192.168.18.154 systemd[1]: Unit docker.service entered failed state. 6月 23 16:54:14 192.168.18.154 systemd[1]: docker.service failed. 6月 23 16:59:31 192.168.18.154 dhclient[771]: DHCPREQUEST on ens33 to 192.168.18.254 port 67 (xid=0x2f 6月 23 16:59:31 192.168.18.154 dhclient[771]: DHCPACK from 192.168.18.254 (xid=0x2fc604d7) 6月 23 16:59:31 192.168.18.154 NetworkManager[595]: <info> [1750669171.5594] dhcp4 (ens33): address 6月 23 16:59:31 192.168.18.154 NetworkManager[595]: <info> [1750669171.5594] dhcp4 (ens33): plen 24 6月 23 16:59:31 192.168.18.154 NetworkManager[595]: <info> [1750669171.5595] dhcp4 (ens33): gateway 6月 23 16:59:31 192.168.18.154 NetworkManager[595]: <info> [1750669171.5595] dhcp4 (ens33): lease t 6月 23 16:59:31 192.168.18.154 NetworkManager[595]: <info> [1750669171.5595] dhcp4 (ens33): nameser 6月 23 16:59:31 192.168.18.154 NetworkManager[595]: <info> [1750669171.5595] dhcp4 (ens33): domain 6月 23 16:59:31 192.168.18.154 NetworkManager[595]: <info> [1750669171.5595] dhcp4 (ens33): state cha 6月 23 16:59:31 192.168.18.154 dbus[562]: [system] Activating via systemd: service name='org.freedeskt 6月 23 16:59:31 192.168.18.154 systemd[1]: Starting Network Manager Script Dispatcher Service... -- Subject: Unit NetworkManager-dispatcher.service has begun start-up -- Defined-By: systemd -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel -- -- Unit NetworkManager-dispatcher.service has begun starting up. 6月 23 16:59:31 192.168.18.154 dhclient[771]: bound to 192.168.18.154 -- renewal in 716 seconds. 6月 23 16:59:31 192.168.18.154 dbus[562]: [system] Successfully activated service 'org.freedesktop.nm_ 6月 23 16:59:31 192.168.18.154 nm-dispatcher[5965]: req:1 'dhcp4-change' [ens33]: new request (3 scrip 6月 23 16:59:31 192.168.18.154 systemd[1]: Started Network Manager Script Dispatcher Service. -- Subject: Unit NetworkManager-dispatcher.service has finished start-up -- Defined-By: systemd -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel -- -- Unit NetworkManager-dispatcher.service has finished starting up. -- -- The start-up result is done. 6月 23 16:59:31 192.168.18.154 nm-dispatcher[5965]: req:1 'dhcp4-change' [ens33]: start running ordere

时间: 2025-07-29 09:33:45 浏览: 13
<think>我们正在解决Docker服务启动失败的问题,错误信息显示"systemdrepeatedtooquickly",并且可能与网络配置相关。这是一个典型的systemd服务管理问题,通常发生在服务启动失败后重试过于频繁时。根据systemd的设计,当服务在短时间内频繁失败(例如配置错误、依赖未满足等),systemd会停止尝试启动,并报此错误。我们需要逐步排查:1.检查Docker服务的日志:使用`journalctl-udocker.service`查看详细错误信息。2.检查网络配置:Docker启动时可能需要特定的网络环境(如网桥、iptables规则等)。3.检查服务依赖:Docker服务可能依赖其他服务(如containerd、网络服务等)。具体步骤:步骤1:查看Docker服务的日志运行命令:```bashjournalctl-udocker.service```这将输出Docker服务的日志,重点关注失败原因(如网络初始化失败、端口冲突等)。步骤2:检查网络配置如果日志中显示网络相关问题(例如创建网桥失败、iptables规则冲突等),则需要:-检查现有网络接口:`iplinkshow`,查看是否有docker0网桥。-检查iptables规则:`sudoiptables-L-n`,检查是否有冲突规则。有时,重启Docker前需要清理旧的网络配置:```bashsudosystemctlstopdockersudoiplinkdeletedocker0sudosystemctlstartdocker```注意:停止Docker服务后删除docker0网桥,再启动。如果Docker服务无法停止,可能需要强制停止。步骤3:检查服务依赖查看docker.service的unit文件:```bashsystemctlcatdocker.service```查看其中`After=`和`Requires=`指定的依赖服务是否正常。另外,如果系统使用了防火墙(如firewalld),确保其不会阻止Docker的网络操作。如果上述步骤无法解决,可以尝试重置Docker的网络配置(注意:这将删除所有自定义网络):```bashsudosystemctlstopdockersudorm-rf/var/lib/docker/networksudosystemctlstartdocker```如果问题依旧,可以尝试重新安装Docker。引用说明:上述步骤参考了Docker官方文档中关于故障排除的部分[^1]以及systemd的文档[^2]。注意:操作前请备份重要数据。§§相关问题§§1.如何查看systemd服务的详细日志?2.Docker启动时网络配置的具体步骤是什么?3.如何重置Docker到初始状态?</think>### Docker服务启动失败问题分析 您遇到的错误信息`docker.service start failed systemd repeated too quickly`表明systemd在短时间内检测到Docker服务多次启动失败,已自动停止重试。这通常与网络配置问题相关,以下是排查步骤: #### 1. **检查服务日志** ```bash journalctl -u docker.service --since "1 hour ago" --no-pager ``` 重点关注日志中的: - 网络初始化错误(如`failed to initialize network`) - 端口冲突(如`port is already allocated`) - 依赖服务失败(如`containerd not ready`) #### 2. **验证网络配置** **问题原因**:Docker依赖的网桥(docker0)或iptables规则可能冲突 ```bash # 检查网桥状态 ip link show docker0 2>/dev/null # 检查iptables规则 sudo iptables -t nat -L -n ``` **修复步骤**: ```bash # 清理残留网络配置 sudo ip link delete docker0 sudo systemctl stop docker sudo rm -f /var/lib/docker/network/files/local-kv.db # 重置iptables(谨慎操作) sudo iptables -t nat -F ``` #### 3. **检查systemd单元依赖** 编辑docker.service文件: ```bash sudo systemctl edit docker.service ``` 确保包含关键依赖: ```ini [Unit] After=network-online.target firewalld.service containerd.service Wants=network-online.target Requires=docker.socket ``` #### 4. **验证cgroup驱动** 检查与容器运行时的兼容性: ```bash # 查看docker配置 grep "exec-opts" /etc/docker/daemon.json # 查看kubelet配置(如果使用K8s) cat /var/lib/kubelet/config.yaml | grep cgroup ``` 确保docker和containerd使用相同的cgroup驱动(通常为`systemd`) #### 5. **重启基础服务** ```bash sudo systemctl daemon-reload sudo systemctl restart containerd # 先重启依赖服务 sudo systemctl reset-failed docker.service sudo systemctl start docker ``` ### 常见解决方案总结 | 问题类型 | 检测命令 | 修复方案 | |----------|----------|----------| | **网络冲突** | `ss -tulnp \| grep 2375` | 修改`/etc/docker/daemon.json`中端口 | | **存储驱动问题** | `dmesg \| grep -i overlay` | 添加`"storage-driver": "overlay2"` | | **cgroup不一致** | `docker info \| grep Cgroup` | 修改`/etc/docker/daemon.json`的exec-opts | | **SELinux阻止** | `ausearch -m avc -ts recent` | `sudo setenforce 0`(临时关闭) | > **重要提示**:操作前备份配置文件`cp /etc/docker/daemon.json /etc/docker/daemon.json.bak`。若问题持续,尝试完全重置Docker: > ```bash > sudo systemctl stop docker > sudo rm -rf /var/lib/docker > sudo systemctl start docker > ``` [^1]: Docker官方文档指出服务启动失败时systemd会在5秒内限制重启尝试,需手动重置失败状态 [^2]: Linux网络栈冲突是导致Docker初始化失败的常见原因,需清理残留配置
阅读全文

相关推荐

[root@localhost ~]# journalctl -u docker.service --since "5 minutes ago" --no-pager -- Logs begin at Sun 2025-06-15 23:54:02 CST, end at Mon 2025-06-16 01:14:57 CST. -- 6月 16 01:09:59 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:09:59 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 303. 6月 16 01:09:59 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:09:59 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:09:59 localhost.localdomain dockerd[99518]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:09:59 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:09:59 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:04 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:04 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 304. 6月 16 01:10:04 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:04 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:04 localhost.localdomain dockerd[99525]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:04 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:04 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:09 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:09 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 305. 6月 16 01:10:09 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:09 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:09 localhost.localdomain dockerd[99534]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:09 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:09 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:14 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:14 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 306. 6月 16 01:10:14 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:14 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:14 localhost.localdomain dockerd[99551]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:14 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:14 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:20 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:20 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 307. 6月 16 01:10:20 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:20 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:20 localhost.localdomain dockerd[99560]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:20 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:20 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:25 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:25 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 308. 6月 16 01:10:25 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:25 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:25 localhost.localdomain dockerd[99568]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:25 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:25 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:30 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:30 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 309. 6月 16 01:10:30 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:30 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:30 localhost.localdomain dockerd[99577]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:30 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:30 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:35 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:35 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 310. 6月 16 01:10:35 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:35 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:35 localhost.localdomain dockerd[99585]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:35 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:35 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:41 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:41 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 311. 6月 16 01:10:41 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:41 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:41 localhost.localdomain dockerd[99593]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:41 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:41 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:46 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:46 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 312. 6月 16 01:10:46 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:46 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:46 localhost.localdomain dockerd[99600]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:46 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:46 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:51 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:51 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 313. 6月 16 01:10:51 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:51 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:51 localhost.localdomain dockerd[99609]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:51 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:51 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:56 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:56 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 314. 6月 16 01:10:56 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:56 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:56 localhost.localdomain dockerd[99616]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:56 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:56 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:02 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:02 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 315. 6月 16 01:11:02 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:02 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:02 localhost.localdomain dockerd[99623]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:02 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:02 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:07 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:07 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 316. 6月 16 01:11:07 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:07 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:07 localhost.localdomain dockerd[99630]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:07 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:07 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:12 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:12 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 317. 6月 16 01:11:12 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:12 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:12 localhost.localdomain dockerd[99647]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:12 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:12 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:17 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:17 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 318. 6月 16 01:11:17 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:17 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:17 localhost.localdomain dockerd[99656]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:17 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:17 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:23 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:23 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 319. 6月 16 01:11:23 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:23 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:23 localhost.localdomain dockerd[99667]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:23 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:23 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:28 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:28 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 320. 6月 16 01:11:28 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:28 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:28 localhost.localdomain dockerd[99676]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:28 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:28 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:33 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:33 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 321. 6月 16 01:11:33 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:33 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:33 localhost.localdomain dockerd[99683]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:33 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:33 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:38 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:38 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 322. 6月 16 01:11:38 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:38 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:38 localhost.localdomain dockerd[99690]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:38 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:38 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:44 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:44 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 323. 6月 16 01:11:44 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:44 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:44 localhost.localdomain dockerd[99697]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:44 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:44 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:49 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:49 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 324. 6月 16 01:11:49 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:49 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:49 localhost.localdomain dockerd[99704]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:49 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:49 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:54 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:54 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 325. 6月 16 01:11:54 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:54 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:54 localhost.localdomain dockerd[99713]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:54 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:54 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:59 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:59 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 326. 6月 16 01:11:59 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:59 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:59 localhost.localdomain dockerd[99720]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:59 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:59 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:05 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:05 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 327. 6月 16 01:12:05 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:05 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:05 localhost.localdomain dockerd[99728]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:05 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:05 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:10 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:10 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 328. 6月 16 01:12:10 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:10 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:10 localhost.localdomain dockerd[99737]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:10 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:10 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:15 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:15 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 329. 6月 16 01:12:15 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:15 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:15 localhost.localdomain dockerd[99754]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:15 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:15 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:20 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:20 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 330. 6月 16 01:12:20 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:20 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:20 localhost.localdomain dockerd[99763]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:20 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:20 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:26 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:26 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 331. 6月 16 01:12:26 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:26 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:26 localhost.localdomain dockerd[99770]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:26 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:26 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:31 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:31 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 332. 6月 16 01:12:31 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:31 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:31 localhost.localdomain dockerd[99779]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:31 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:31 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:36 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:36 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 333. 6月 16 01:12:36 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:36 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:36 localhost.localdomain dockerd[99786]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:36 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:36 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:41 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:41 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 334. 6月 16 01:12:41 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:41 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:41 localhost.localdomain dockerd[99794]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:41 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:41 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:47 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:47 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 335. 6月 16 01:12:47 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:47 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:47 localhost.localdomain dockerd[99801]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:47 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:47 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:52 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:52 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 336. 6月 16 01:12:52 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:52 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:52 localhost.localdomain dockerd[99810]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:52 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:52 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:57 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:57 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 337. 6月 16 01:12:57 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:57 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:57 localhost.localdomain dockerd[99818]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:57 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:57 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:02 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:02 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 338. 6月 16 01:13:02 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:02 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:02 localhost.localdomain dockerd[99827]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:02 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:02 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:08 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:08 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 339. 6月 16 01:13:08 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:08 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:08 localhost.localdomain dockerd[99835]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:08 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:08 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:13 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:13 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 340. 6月 16 01:13:13 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:13 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:13 localhost.localdomain dockerd[99852]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:13 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:13 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:18 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:18 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 341. 6月 16 01:13:18 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:18 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:18 localhost.localdomain dockerd[99864]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:18 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:18 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:23 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:23 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 342. 6月 16 01:13:23 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:23 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:23 localhost.localdomain dockerd[99871]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:23 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:23 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:29 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:29 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 343. 6月 16 01:13:29 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:29 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:29 localhost.localdomain dockerd[99880]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:29 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:29 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:34 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:34 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 344. 6月 16 01:13:34 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:34 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:34 localhost.localdomain dockerd[99887]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:34 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:34 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:39 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:39 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 345. 6月 16 01:13:39 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:39 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:39 localhost.localdomain dockerd[99895]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:39 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:39 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:44 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:44 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 346. 6月 16 01:13:44 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:44 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:44 localhost.localdomain dockerd[99902]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:44 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:44 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:50 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:50 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 347. 6月 16 01:13:50 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:50 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:50 localhost.localdomain dockerd[99909]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:50 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:50 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:55 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:55 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 348. 6月 16 01:13:55 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:55 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:55 localhost.localdomain dockerd[99945]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:55 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:55 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:00 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:00 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 349. 6月 16 01:14:00 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:00 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:00 localhost.localdomain dockerd[99952]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:00 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:00 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:04 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:04 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:04 localhost.localdomain dockerd[99961]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:04 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:04 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:10 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:10 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 350. 6月 16 01:14:10 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:10 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:10 localhost.localdomain dockerd[99970]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:10 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:10 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:15 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:15 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 351. 6月 16 01:14:15 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:15 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:15 localhost.localdomain dockerd[99988]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:15 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:15 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:20 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:20 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 352. 6月 16 01:14:20 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:20 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:20 localhost.localdomain dockerd[100002]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:20 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:20 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:25 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:25 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 353. 6月 16 01:14:25 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:25 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:25 localhost.localdomain dockerd[100009]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:25 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:25 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:31 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:31 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 354. 6月 16 01:14:31 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:31 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:31 localhost.localdomain dockerd[100018]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:31 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:31 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:36 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:36 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 355. 6月 16 01:14:36 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:36 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:36 localhost.localdomain dockerd[100027]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:36 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:36 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:41 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:41 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 356. 6月 16 01:14:41 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:41 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:41 localhost.localdomain dockerd[100034]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:41 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:41 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:46 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:46 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 357. 6月 16 01:14:46 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:46 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:46 localhost.localdomain dockerd[100041]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:46 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:46 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:52 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:52 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 358. 6月 16 01:14:52 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:52 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:52 localhost.localdomain dockerd[100050]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:52 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:52 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:57 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:57 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 359. 6月 16 01:14:57 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:57 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:57 localhost.localdomain dockerd[100058]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:57 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:57 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'.

[root@localhost ~]# sudo systemctl status docker.service -l ● docker.service - Docker Application Container Engine Loaded: loaded (/usr/lib/systemd/system/docker.service; enabled; vendor preset: disabled) Active: failed (Result: start-limit) since 六 2025-06-14 17:33:17 CST; 1min 25s ago Docs: https://docs.docker.com Process: 98871 ExecStart=/usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock (code=exited, status=1/FAILURE) Main PID: 98871 (code=exited, status=1/FAILURE) 6月 14 17:33:15 localhost systemd[1]: Failed to start Docker Application Container Engine. 6月 14 17:33:15 localhost systemd[1]: Unit docker.service entered failed state. 6月 14 17:33:15 localhost systemd[1]: docker.service failed. 6月 14 17:33:17 localhost systemd[1]: docker.service holdoff time over, scheduling restart. 6月 14 17:33:17 localhost systemd[1]: Stopped Docker Application Container Engine. 6月 14 17:33:17 localhost systemd[1]: start request repeated too quickly for docker.service 6月 14 17:33:17 localhost systemd[1]: Failed to start Docker Application Container Engine. 6月 14 17:33:17 localhost systemd[1]: Unit docker.service entered failed state. 6月 14 17:33:17 localhost systemd[1]: docker.service failed. [root@localhost ~]# sudo journalctl -xe -u docker.service --since "5 minutes ago" -- -- Unit docker.service has failed. -- -- The result is failed. 6月 14 17:33:12 localhost systemd[1]: Unit docker.service entered failed state. 6月 14 17:33:12 localhost systemd[1]: docker.service failed. 6月 14 17:33:15 localhost systemd[1]: docker.service holdoff time over, scheduling restart. 6月 14 17:33:15 localhost systemd[1]: Stopped Docker Application Container Engine. -- Subject: Unit docker.service has finished shutting down -- Defined-By: systemd -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel -- -- Unit docker.service has finished shutting down. 6月 14 17:33:15 localhost systemd[1]: Starting Docker Application Container Engine... -- Subject: Unit docker.service has begun start-up -- Defined-By: systemd -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel -- -- Unit docker.service has begun starting up. 6月 14 17:33:15 localhost dockerd[98871]: unable to configure the Docker daemon with file /etc/docker/daemon.json: 6月 14 17:33:15 localhost systemd[1]: docker.service: main process exited, code=exited, status=1/FAILURE 6月 14 17:33:15 localhost systemd[1]: Failed to start Docker Application Container Engine. -- Subject: Unit docker.service has failed -- Defined-By: systemd -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel -- -- Unit docker.service has failed. -- -- The result is failed. 6月 14 17:33:15 localhost systemd[1]: Unit docker.service entered failed state. 6月 14 17:33:15 localhost systemd[1]: docker.service failed. 6月 14 17:33:17 localhost systemd[1]: docker.service holdoff time over, scheduling restart. 6月 14 17:33:17 localhost systemd[1]: Stopped Docker Application Container Engine. -- Subject: Unit docker.service has finished shutting down -- Defined-By: systemd -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel -- -- Unit docker.service has finished shutting down. 6月 14 17:33:17 localhost systemd[1]: start request repeated too quickly for docker.service 6月 14 17:33:17 localhost systemd[1]: Failed to start Docker Application Container Engine. -- Subject: Unit docker.service has failed -- Defined-By: systemd -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel -- -- Unit docker.service has failed. -- -- The result is failed. 6月 14 17:33:17 localhost systemd[1]: Unit docker.service entered failed state. 6月 14 17:33:17 localhost systemd[1]: docker.service failed.

7月 16 10:21:33 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 7月 16 10:21:33 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 7月 16 10:21:33 localhost.localdomain systemd[1]: Failed to start Docker Application Container Engine. 7月 16 10:21:33 localhost.localdomain systemd[1]: docker.service: Service RestartSec=100ms expired, scheduling restart. 7月 16 10:21:33 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 4. 7月 16 10:21:33 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 7月 16 10:21:33 localhost.localdomain systemd[1]: Starting Docker Application Container Engine... 7月 16 10:21:33 localhost.localdomain dockerd[10041]: Error starting daemon: pid file found, ensure docker is not running or delete /var/run/docker.pid 7月 16 10:21:33 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 7月 16 10:21:33 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 7月 16 10:21:33 localhost.localdomain systemd[1]: Failed to start Docker Application Container Engine. 7月 16 10:21:33 localhost.localdomain systemd[1]: docker.service: Service RestartSec=100ms expired, scheduling restart. 7月 16 10:21:33 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 5. 7月 16 10:21:33 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 7月 16 10:21:33 localhost.localdomain systemd[1]: docker.service: Start request repeated too quickly. 7月 16 10:21:33 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 7月 16 10:21:33 localhost.localdomain systemd[1]: Failed to start Docker Application Container Engine.

[root@localhost docker]# sudo journalctl -u docker.service --no-pager -n 50 -- Logs begin at 六 2025-07-26 11:02:17 CST, end at 二 2025-07-29 17:51:36 CST. -- 7月 29 17:47:23 localhost.localdomain systemd[1]: docker.service: main process exited, code=exited, status=1/FAILURE 7月 29 17:47:23 localhost.localdomain systemd[1]: Failed to start Docker Application Container Engine. 7月 29 17:47:23 localhost.localdomain systemd[1]: Unit docker.service entered failed state. 7月 29 17:47:23 localhost.localdomain systemd[1]: docker.service failed. 7月 29 17:47:25 localhost.localdomain systemd[1]: docker.service holdoff time over, scheduling restart. 7月 29 17:47:25 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 7月 29 17:47:25 localhost.localdomain systemd[1]: Starting Docker Application Container Engine... 7月 29 17:47:25 localhost.localdomain dockerd[12096]: time="2025-07-29T17:47:25.651602526+08:00" level=info msg="Starting up" 7月 29 17:47:25 localhost.localdomain dockerd[12096]: failed to load listeners: no sockets found via socket activation: make sure the service was started by systemd 7月 29 17:47:25 localhost.localdomain systemd[1]: docker.service: main process exited, code=exited, status=1/FAILURE 7月 29 17:47:25 localhost.localdomain systemd[1]: Failed to start Docker Application Container Engine. 7月 29 17:47:25 localhost.localdomain systemd[1]: Unit docker.service entered failed state. 7月 29 17:47:25 localhost.localdomain systemd[1]: docker.service failed. 7月 29 17:47:27 localhost.localdomain systemd[1]: docker.service holdoff time over, scheduling restart. 7月 29 17:47:27 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 7月 29 17:47:27 localhost.localdomain systemd[1]: start request repeated too quickly for docker.service 7月 29 17:47:27 localhost.localdomain systemd[1]: Failed to start Docker Application Container Engine. 7月 29 17:47:27 localhost.localdomain systemd[1]: Unit docker.service entered failed state. 7月 29 17:47:27 localhost.localdomain systemd[1]: docker.service failed. 7月 29 17:48:28 localhost.localdomain systemd[1]: Starting Docker Application Container Engine... 7月 29 17:48:28 localhost.localdomain dockerd[12126]: time="2025-07-29T17:48:28.284201609+08:00" level=info msg="Starting up" 7月 29 17:48:28 localhost.localdomain dockerd[12126]: failed to load listeners: no sockets found via socket activation: make sure the service was started by systemd 7月 29 17:48:28 localhost.localdomain systemd[1]: docker.service: main process exited, code=exited, status=1/FAILURE 7月 29 17:48:28 localhost.localdomain systemd[1]: Failed to start Docker Application Container Engine. 7月 29 17:48:28 localhost.localdomain systemd[1]: Unit docker.service entered failed state. 7月 29 17:48:28 localhost.localdomain systemd[1]: docker.service failed. 7月 29 17:48:30 localhost.localdomain systemd[1]: docker.service holdoff time over, scheduling restart. 7月 29 17:48:30 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 7月 29 17:48:30 localhost.localdomain systemd[1]: Starting Docker Application Container Engine... 7月 29 17:48:30 localhost.localdomain dockerd[12136]: time="2025-07-29T17:48:30.407891965+08:00" level=info msg="Starting up" 7月 29 17:48:30 localhost.localdomain dockerd[12136]: failed to load listeners: no sockets found via socket activation: make sure the service was started by systemd 7月 29 17:48:30 localhost.localdomain systemd[1]: docker.service: main process exited, code=exited, status=1/FAILURE 7月 29 17:48:30 localhost.localdomain systemd[1]: Failed to start Docker Application Container Engine. 7月 29 17:48:30 localhost.localdomain systemd[1]: Unit docker.service entered failed state. 7月 29 17:48:30 localhost.localdomain systemd[1]: docker.service failed. 7月 29 17:48:32 localhost.localdomain systemd[1]: docker.service holdoff time over, scheduling restart. 7月 29 17:48:32 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 7月 29 17:48:32 localhost.localdomain systemd[1]: Starting Docker Application Container Engine... 7月 29 17:48:32 localhost.localdomain dockerd[12146]: time="2025-07-29T17:48:32.649503397+08:00" level=info msg="Starting up" 7月 29 17:48:32 localhost.localdomain dockerd[12146]: failed to load listeners: no sockets found via socket activation: make sure the service was started by systemd 7月 29 17:48:32 localhost.localdomain systemd[1]: docker.service: main process exited, code=exited, status=1/FAILURE 7月 29 17:48:32 localhost.localdomain systemd[1]: Failed to start Docker Application Container Engine. 7月 29 17:48:32 localhost.localdomain systemd[1]: Unit docker.service entered failed state. 7月 29 17:48:32 localhost.localdomain systemd[1]: docker.service failed. 7月 29 17:48:34 localhost.localdomain systemd[1]: docker.service holdoff time over, scheduling restart. 7月 29 17:48:34 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 7月 29 17:48:34 localhost.localdomain systemd[1]: start request repeated too quickly for docker.service 7月 29 17:48:34 localhost.localdomain systemd[1]: Failed to start Docker Application Container Engine. 7月 29 17:48:34 localhost.localdomain systemd[1]: Unit docker.service entered failed state. 7月 29 17:48:34 localhost.localdomain systemd[1]: docker.service failed.

最新推荐

recommend-type

TMS320F28335 SVPWM三相逆变学习板卡:硬件组成与功能详解

基于TMS320F28335 DSP的SVPWM三相逆变学习板卡,涵盖硬件组成、供电与保护机制、SVPWM技术原理及其优势、应用场景和输入电压范围。文中还展示了闭环控制程序的工作流程,并附有简化的示例代码。该板卡采用高效的SVPWM技术,使逆变器电压利用率提升至1.1倍,远高于传统SPWM的0.866倍,适用于多种逆变和控制任务,具有广泛的实际应用价值。 适合人群:对电力电子、嵌入式系统和数字控制感兴趣的工程师和技术爱好者。 使用场景及目标:①研究和学习SVPWM技术及其在三相逆变中的应用;②掌握TMS320F28335 DSP的硬件设计和编程技巧;③应用于电机控制、电源管理等领域,提高逆变效率和稳定性。 其他说明:文中提供的示例代码有助于理解和实现AD采样数据处理及SVPWM更新,便于读者快速上手实践。
recommend-type

一个一键设置时间同步并关闭防火墙的桌面应用小工具

一个一键设置时间同步并关闭防火墙的桌面应用小工具
recommend-type

Pansophica开源项目:智能Web搜索代理的探索

Pansophica开源项目是一个相对较新且具有创新性的智能Web搜索代理,它突破了传统搜索引擎的界限,提供了一种全新的交互方式。首先,我们来探讨“智能Web搜索代理”这一概念。智能Web搜索代理是一个软件程序或服务,它可以根据用户的查询自动执行Web搜索,并尝试根据用户的兴趣、历史搜索记录或其他输入来提供个性化的搜索结果。 Pansophica所代表的不仅仅是搜索结果的展示,它还强调了一个交互式的体验,在动态和交互式虚拟现实中呈现搜索结果。这种呈现方式与现有的搜索体验有着根本的不同。目前的搜索引擎,如Google、Bing和Baidu等,多以静态文本和链接列表的形式展示结果。而Pansophica通过提供一个虚拟现实环境,使得搜索者可以“扭转”视角,进行“飞行”探索,以及“弹网”来浏览不同的内容。这种多维度的交互方式使得信息的浏览变得更加快速和直观,有望改变用户与网络信息互动的方式。 接着,我们关注Pansophica的“开源”属性。所谓开源,指的是软件的源代码可以被公众获取,任何个人或组织都可以自由地使用、学习、修改和分发这些代码。开源软件通常由社区进行开发和维护,这样的模式鼓励了协作创新并减少了重复性劳动,因为全世界的开发者都可以贡献自己的力量。Pansophica项目作为开源软件,意味着其他开发者可以访问和使用其源代码,进一步改进和扩展其功能,甚至可以为Pansophica构建新的应用或服务。 最后,文件名称“Pansophica-src-1.3”表明了我们讨论的特定版本的Pansophica开源代码。数字“1.3”很可能指的是该版本号,表明这是Pansophica项目的第1.3个公开版本。这个版本号对于开发者来说很重要,因为它可以帮助他们追踪更新的进度、比较版本间的差异以及选择最适合其项目的版本。 综合以上信息,Pansophica开源项目不仅在搜索代理领域引入了创新的交互方式,而且通过开源的方式,提供了技术共享和协作的可能性。对于IT行业来说,开源项目是推动技术发展的重要力量,它激发了社区的活力,促进了知识的传播和技术的进步。通过构建一个开源社区,Pansophica可以吸引来自世界各地的开发者和研究人员,共同探索如何将搜索技术与交互式虚拟现实技术结合起来,为用户带来更加丰富和有效的信息检索体验。同时,Pansophica的开源性质也使其更容易适应未来技术的发展,随着社区的不断贡献和反馈,这一平台有望在功能和性能上得到持续的优化和增强。
recommend-type

跨平台内容提取无忧:coze工作流应对社交媒体挑战

# 1. 社交媒体内容提取的必要性与挑战 ## 1.1 内容提取的必要性 在数字时代,社交媒体内容是信息与数据流动的主干道,公司、个人和研究者都在寻求从这些信息中提取价值。无论是为了市场趋势分析、品牌监控、消费者洞察还是公共舆论监测,有效的社交媒体内容提取变得至关重要。这不仅有助于企业做出数据驱动的决策,也能使个人更好地理
recommend-type

vrrp主设备发送的免费arp

<think>好的,我现在需要回答用户关于VRRP主设备发送免费ARP的目的和工作原理的问题。首先,我得回忆一下VRRP的基本概念和工作机制。VRRP,虚拟路由冗余协议,主要用于在局域网中提供默认网关的冗余备份,确保网络的高可用性。主设备(Master)负责转发流量,而备用设备(Backup)则在主设备故障时接管工作。 用户的问题集中在主设备发送免费ARP的目的和机制上。根据引用[2],免费ARP用于通知下游设备虚拟MAC地址的变更。当主设备被选举出来后,它需要让局域网内的其他设备知道虚拟IP对应的MAC地址已经指向自己,这样流量才会被正确路由到主设备。免费ARP的作用应该就是更新这些设备的
recommend-type

为Ghost博客平台打造的Meteor流星包装使用指南

从给定文件信息中,我们可以提炼出以下IT知识点: ### 标题知识点:流星Ghost软件包 1. **流星Ghost软件包的用途**:流星Ghost软件包是专为Ghost博客平台设计的流星(Meteor)应用程序。流星是一个开源的全栈JavaScript平台,用于开发高性能和易于编写的Web应用程序。Ghost是一个开源博客平台,它提供了一个简单且专业的写作环境。 2. **软件包的作用**:流星Ghost软件包允许用户在流星平台上轻松集成Ghost博客。这样做的好处是可以利用流星的实时特性以及易于开发和部署的应用程序框架,同时还能享受到Ghost博客系统的便利和美观。 ### 描述知识点:流星Ghost软件包的使用方法 1. **软件包安装方式**:用户可以通过流星的命令行工具添加名为`mrt:ghost`的软件包。`mrt`是流星的一个命令行工具,用于添加、管理以及配置软件包。 2. **初始化Ghost服务器**:描述中提供了如何在服务器启动时运行Ghost的基本代码示例。这段代码使用了JavaScript的Promise异步操作,`ghost().then(function (ghostServer) {...})`这行代码表示当Ghost服务器初始化完成后,会在Promise的回调函数中提供一个Ghost服务器实例。 3. **配置Ghost博客**:在`then`方法中,首先会获取到Ghost服务器的配置对象`config`,用户可以在此处进行自定义设置,例如修改主题、配置等。 4. **启动Ghost服务器**:在配置完成之后,通过调用`ghostServer.start()`来启动Ghost服务,使其能够处理博客相关的请求。 5. **Web浏览器导航**:一旦流星服务器启动并运行,用户便可以通过Web浏览器访问Ghost博客平台。 ### 标签知识点:JavaScript 1. **JavaScript作为流星Ghost软件包的开发语言**:标签指出流星Ghost软件包是使用JavaScript语言开发的。JavaScript是一种在浏览器端广泛使用的脚本语言,它也是流星平台的基础编程语言。 2. **流星和Ghost共同使用的语言**:JavaScript同样也是Ghost博客平台的开发语言。这表明流星Ghost软件包可以无缝集成,因为底层技术栈相同。 ### 压缩包子文件的文件名称列表知识点:meteor-ghost-master 1. **版本控制和软件包结构**:文件名称`meteor-ghost-master`暗示了该软件包可能托管在像GitHub这样的版本控制系统上。文件名中的`master`通常指的是主分支或主版本。 2. **软件包的目录结构**:通过文件名称可以推断出该软件包可能拥有一个标准的流星软件包结构,包含了初始化、配置、运行等必要的模块和文件。 3. **软件包的维护状态**:由于文件名没有包含特定的版本号,我们无法直接得知软件包的最新更新情况。通常,软件包维护者会将最新的版本代码放在`master`分支上。 ### 总结 流星Ghost软件包提供了一个有效的解决方案,使得流星平台的开发者能够在他们的应用中添加Ghost博客功能。软件包的使用简便,通过流星的命令行工具安装,并通过JavaScript代码配置和启动Ghost服务。通过流星Ghost软件包,开发者能够享受流星的实时特性以及Ghost博客系统的便利性。此外,软件包的命名和结构也暗示了其维护和版本控制的模式,有助于开发者更好地理解如何使用和维护这一软件包。
recommend-type

抖音标题生成自动化:用coze工作流释放创意

# 1. 抖音标题生成自动化的重要性 随着社交媒体平台的崛起,内容的吸引力很大程度上取决于标题的创意与精准性。抖音作为一个日活亿级的短视频平台,高质量的标题能够有效提高视频的点击率,增加内容的传播。但是,人工撰写标题不仅耗时耗力,而且很难做到快速响应热点,自动化标题生成工具应运而生。coze工作流,作为一种实现自动化生成抖音标题的工具,其重要性不言而喻。它能够利用大数据分析和机器学习技术,提高标题的吸引
recommend-type

spss消费结构因子分析

<think>好的,我现在需要帮助用户在SPSS中进行消费结构的因子分析。首先,我要回忆一下因子分析的基本步骤和SPSS的操作流程。用户可能对SPSS不太熟悉,所以步骤要详细,同时需要结合他们提供的引用内容,特别是引用[2]中的适用条件和检验方法。 首先,用户提到了消费结构的数据,这可能包括多个变量,如食品、住房、交通等支出。因子分析适用于这种情况,可以降维并找出潜在因子。根据引用[2],需要检查样本量是否足够,变量间是否有相关性,以及KMO和Bartlett检验的结果。 接下来,我需要按照步骤组织回答:数据准备、适用性检验、因子提取、因子旋转、命名解释、计算得分。每个步骤都要简明扼要,说
recommend-type

OpenMediaVault的Docker映像:快速部署与管理指南

根据提供的文件信息,我们将详细讨论与标题和描述中提及的Docker、OpenMediaVault以及如何部署OpenMediaVault的Docker镜像相关的一系列知识点。 首先,Docker是一个开源的应用容器引擎,允许开发者打包应用及其依赖包到一个可移植的容器中,然后发布到任何流行的Linux机器上,也可以实现虚拟化。容器是完全使用沙箱机制,相互之间不会有任何接口(类似 iPhone 的 app)。 OpenMediaVault是一个基于Debian的NAS(网络附加存储)解决方案。它专为家庭或小型办公室提供文件共享、网络附加存储以及打印服务。它提供了一个易用的Web界面,通过这个界面用户可以管理服务器配置、网络设置、用户权限、文件服务等。 在描述中提到了一些Docker命令行操作: 1. `git clone`:用于克隆仓库到本地,这里的仓库指的是“docker-images-openmedivault”。 2. `docker build -t omv`:这是一个构建Docker镜像的命令,其中`-t`参数用于标记镜像名称和标签,这里是标记为“omv”。 3. `docker run`:运行一个容器实例,`-t`参数用于分配一个伪终端,`-i`参数用于交互式操作,`-p 80:80`则是将容器的80端口映射到宿主机的80端口。 启动服务的部分涉及OpenMediaVault的配置和初始化: - ssh服务:用于远程登录到服务器的协议。 - php5-fpm:是PHP的一个FastCGI实现,用于加速PHP的运行。 - nginx:是一个高性能的HTTP和反向代理服务器,常用于优化静态内容的分发。 - openmediavault引擎:指的是OpenMediaVault的核心服务。 - rrdcached:用于收集和缓存性能数据,这些数据可以被rrdtool图形化工具读取。 - collectd:是一个守护进程,用于收集系统性能和提供各种存储方式和传输方式来存储所收集的数据。 为了访问服务,需要在浏览器中输入"http:// IP_OF_DOCKER",其中`IP_OF_DOCKER`指的是运行Docker容器的主机IP地址。 描述中还提到了一个步骤:“在System-> Network-> Interfaces中添加带有dhcp的eth0”,这指的是需要在OpenMediaVault的Web管理界面中配置网络接口。`eth0`是网络接口的名称,通常代表第一个以太网接口。DHCP(动态主机配置协议)是一种自动为网络中的设备分配IP地址的协议,这样设备就可以连接网络并开始通信,无需手动配置IP地址。 【压缩包子文件的文件名称列表】中的“docker-images-openmediavault-master”暗示了这是一个包含Docker镜像文件的代码仓库。通常,“master”分支是代码的主分支,包含了代码库中最新且通常是最稳定的版本。用户可以通过克隆该仓库到本地来获取所有相关的Dockerfile、配置脚本及依赖文件,以便能够自行构建和运行OpenMediaVault的Docker镜像。 综上所述,这些知识点涵盖了从基本的Docker概念、Docker命令行操作、OpenMediaVault服务启动和管理,到具体的网络配置及Docker仓库操作,都是进行Docker化OpenMediaVault部署的关键步骤。
recommend-type

小红书文案提取一步到位:coze工作流操作全攻略

# 1. coze工作流概述 工作流系统是企业信息化和数字化转型的核心组件之一,它通过自动化流程管理提升效率,确保业务流程的顺畅执行。coze工作流作为当前市场上较为先进的工作流解决方案,它不仅仅是一套软件工具,更是一个集成化的平台,旨在通过流程自动化和智能化提升企业运营效率。 coze工作流的引入不仅有助于标准化和优化企业的业务流程,还可以通过可配置的流程设计,满足不同部门的特定需求。在组织的业务流程中