I'm trying to start clickhouse-server using the official docker container. I pulled the latest one, tried starting it and receive the following error:
Poco::Exception. Code: 1000, e.code() = 0, e.displayText() = Not found: logger, e.what() = Not found
I'm trying to do this on Mac with High Sierra, suspecting this might have something to do with the issue. I'm running the server like that:
docker run --name some-clickhouse-server --ulimit nofile=262144:262144 -v /Users/dmitrysmirnov/clickhouse/config.xml:/etc/clickhouse-server/config.xml yandex/clickhouse-server
Config:
<yandex>
<listen_host>0.0.0.0</listen_host>
<listen_try>1</listen_try>
<!--
<logger>
<level>trace</level>
<console>1</console>
</logger>
-->
</yandex>
Any suggestions / debug ideas are welcome, thank you!