我正在使用portainer,并且无法管理远程端点。我尝试使用命令行连接到远程docker节点,但收到一条消息Cannot connect to the Docker daemon at tcp://<remote_ip>:<port>. Is the docker daemon running?
。
是的,它们正在运行。我已将自己添加到docker组,并且可以通过SSH进入节点来访问docker。但是我无法远程访问任何docker节点。
我修改/etc/default
为添加/取消注释DOCKER_OPTS="--dns 8.8.8.8 --dns 8.8.4.4 -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock"
我也进行了修改/etc/init.d/docker
并/etc/init/docker.conf
包含DOCKER_OPTS="-H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock"
。
我重新启动了docker服务,在此过程中多次注销并登录,但仍然无法连接到远程节点。我什至无法通过传递IP连接到本地节点。
我错过了什么?哪个文件中的什么配置通过TCP公开API?
user@hostname:~$ docker -H tcp://<REMOTE_IP>:2375 info
Cannot connect to the Docker daemon at tcp://<REMOTE_IP>:2375. Is the docker daemon running?
user@hostname:~$ docker -H tcp://127.0.0.1:2375 info
Cannot connect to the Docker daemon at tcp://127.0.0.1:2375. Is the docker daemon running?
user@hostname:~$ docker -H tcp://<LOCAL_IP>:2375 info
Cannot connect to the Docker daemon at tcp://<LOCAL_IP>:2375. Is the docker daemon running?
user@hostname:~$
编辑:
运行ps aux | grep -i docker
返回此-
root 3581 0.1 0.2 596800 41540 ? Ssl 04:17 0:35 /usr/bin/dockerd -H fd://
root 3588 0.0 0.0 653576 14492 ? Ssl 04:17 0:18 docker-containerd -l unix:///var/run/docker/libcontainerd/docker-containerd.sock --metrics-interval=0 --start-timeout 2m --state-dir /var/run/docker/libcontainerd/containerd --shim docker-containerd-shim --runtime docker-runc
ps aux
如果有帮助,我已将答案的输出包括在内。
ss -ntl