我尝试从Mac OS X附加到容器。 我在下面收到消息。
from collections import Counter
from random import randint
main_list = [randint(0, 10) for _ in range(25)]
row_total = [sum(main_list[0+n:3+n]) for n in range(0, len(main_list), 3)]
duplicate_totals = {t: c for t, c in Counter(row_total).items() if c > 1}
print(main_list)
# a dictionary of totals that show up twice or more often
print(duplicate_totals)
似乎无法建立TLS连接。 我检查了容器上相关工具的版本。但我认为它不太旧。
[4, 9, 1, 2, 0, 6, 8, 6, 4, 3, 0, 10, 0, 9, 1, 0, 10, 7, 10, 7, 0, 6, 2, 1, 7]
{17: 2}
接下来我该怎么办?
答案 0 :(得分:0)
这是我的防火墙设置引起的问题。 当我禁用防火墙时,此问题得以解决。