initctl:无法连接到 Upstart:无法连接到套接字 /com/ubuntu/upstart:docker 映像中的连接被拒绝
Posted
技术标签:
【中文标题】initctl:无法连接到 Upstart:无法连接到套接字 /com/ubuntu/upstart:docker 映像中的连接被拒绝【英文标题】:initctl: Unable to connect to Upstart: Failed to connect to socket /com/ubuntu/upstart: Connection refused in docker image 【发布时间】:2019-06-01 18:11:22 【问题描述】:我得到了
$ sudo initctl list
initctl: Unable to connect to Upstart: Failed to connect to socket /com/ubuntu/upstart: Connection refused
在具有
的泊坞窗图像上$ uname -a
Linux 7276b783e0bf 4.9.125-linuxkit #1 SMP Fri Sep 7 08:20:28 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
$ cat /etc/redhat-release
CentOS release 6.10 (Final)
有什么想法吗?我以为 CentOS6 默认使用 Upstart。
【问题讨论】:
【参考方案1】:您应该大致假设initctl
(以及systemctl
和service
)之类的命令在Docker 中不起作用。如果您尝试在正在运行的 Docker 容器中以交互方式启动一些新服务,这通常不是最佳实践:您需要编写一个 Dockerfile,使服务在容器启动时自行启动,通常只需运行服务器作为前台进程。
一个 Docker 容器运行 一个 进程(及其子进程)。通常这不是一个初始化类型的过程。如果您docker run --rm -it centos:6
并获得了 GNU bash shell,则该 shell 是容器中运行的 only 进程。 Upstart、systemd 和它们启动的各种其他系统守护进程将不存在。 (在你的 shell 中尝试ps -e
看看。)
如果您的实际问题是“我的 CentOS 6 容器中运行了哪些 Upstart 管理的服务”,答案是“无”。
【讨论】:
以上是关于initctl:无法连接到 Upstart:无法连接到套接字 /com/ubuntu/upstart:docker 映像中的连接被拒绝的主要内容,如果未能解决你的问题,请参考以下文章
无法使用php连接错误连接到mysql:无法连接到'localhost'(10061)上的MySQL服务器[重复]
MySQL Workbench 无法连接到我的 RDS 数据库:无法连接到 localhost
Django docker 容器无法连接到 mysql 容器,出现错误“无法连接到 'db' (111) 上的 MySQL 服务器”)