docker include not found: networks

启动clickhouse的docker镜像时,出现了以下错误

include not found: networks

google之后发现是因为可能不支持ipv6导致的解决方法 就是通过设置

/etc/clickhouse-server/config.xml and set value of <listen_host> to 0.0.0.0 to listen wildcard IPv4 address.

https://github.com/yandex/ClickHouse/issues/721

或者启动的设置

https://stackoverflow.com/questions/47203226/clickhouse-connection-refuse

docker run -d --name clickhouse-server --ulimit nofile=262144:262144 -p 8123:8123 yandex/clickhouse-server

猜你喜欢

转载自www.cnblogs.com/tl542475736/p/9560034.html
今日推荐