Docker卸载重新安装后显示Unit not found.
系统:CentOS7.6
不小心执行了yum update 更新了全部软件,导致本来是17.03.0的docker-ce被升级到了最新版本,和其他配套软件版本不一致无法正常使用。
我第一时间想到的是卸载重装docker,不小心删掉了docker.service.d文件夹,导致无法正常安装docker,即安装之后启动docker提示:
[root@node2 system]# systemctl start docker
Failed to start docker.service: Unit not found.
查看是否有失败单元
systemctl --failed
docker.socket 没有正常运行,只需要启动这个服务即可。
附常用的systemctl命令
systemctl list-unit-files 列出所有可用的Unit
systemctl list-units 列出所有正在运行的Unit
systemctl --failed 列出所有失败单元
systemctl mask httpd.service 禁用服务
systemctl unmask httpd.service
systemctl kill httpd 杀死服务
systemd-analyze critical-chain:分析启动时的关键链
systemd-analyze blame 分析启动时各个进程花费的时间