我正在尝试使用下面提到的命令安装docker,但是失败了。
命令:
docker run -it --rm docker/dtr install \
--ucp-node mbk-srv-389-ub \
--ucp-username admin \
--ucp-url https://172.16.217.1 \
--ucp-insecure-tls但它的给予错误
错误:
FATA[0006] Failed to choose ucp node: The UCP node 'mbk-srv-389-ub' has port conflicts, please pick another node or choose a different port. 因此,我尝试添加端口445 **--ucp-url https://172.16.217.1:445**,因为端口443也被UCP使用,但是它显示了另一个错误。
错误:
FATA[0006] Failed to get new conv client: failed to create http client: Failed to get UCP CA: Get https://172.16.217.1:445/ca: dial tcp 172.16.217.1:445: connect: connection refused 信息:端口445在防火墙上打开。端口445上没有其他服务正在运行。
发布于 2020-12-08 20:57:52
DTR需要端口443空闲,如果443没有空闲,安装将失败。
使用--controller-port将UCP安装到443以外的任何端口,然后安装DTR,它将工作。
https://stackoverflow.com/questions/62249974
复制相似问题