已下载 graphiteapp/graphite-statsd:latest 的较新图像
Downloaded newer image for graphiteapp/graphite-statsd:latest
我想按照给定的步骤 here
在 docker 上安装 Graphite
docker run -d\
--name graphite\
--restart=always\
-p 80:80\
-p 2003-2004:2003-2004\
-p 2023-2024:2023-2024\
-p 8125:8125/udp\
-p 8126:8126\
graphiteapp/graphite-statsd
起初给了我以下警告
Unable to find image 'graphiteapp/graphite-statsd:latest' locally
latest: Pulling from graphiteapp/graphite-statsd
完成所有拉动后出现以下错误
Digest: sha256:3136b19fcdb9162c642cc1d2821172948346651a46b41ab63cc05c2962ea85c9
Status: Downloaded newer image for graphiteapp/graphite-statsd:latest
7af4b99efeb4bb7d0bc1ba1d8b4556d812adc87bc720c035998eeb54116e57f4
docker: Error response from daemon: driver failed programming external connectivity on endpoint graphite (de38efe3b7ee88976d044ffe9948839c8058b06408f46f9857e4e689d9883ce9): Error starting userland proxy: Bind for 0.0.0.0:80: unexpected error (Failure EADDRINUSE).
警告消息只是告诉你本地没有这样的图像,它开始下载它。
你得到一个错误,因为你有一些服务在你主机的 80 端口上工作。 graphite
容器无法启动,因为它也需要使用80端口。因此,您可以停止使用端口 80 的服务或使用另一个端口启动 graphite
,例如 81 并在端口 81 上访问它:
docker run -d\
--name graphite\
--restart=always\
-p 81:80\
-p 2003-2004:2003-2004\
-p 2023-2024:2023-2024\
-p 8125:8125/udp\
-p 8126:8126\
graphiteapp/graphite-statsd
我想按照给定的步骤 here
在 docker 上安装 Graphite docker run -d\
--name graphite\
--restart=always\
-p 80:80\
-p 2003-2004:2003-2004\
-p 2023-2024:2023-2024\
-p 8125:8125/udp\
-p 8126:8126\
graphiteapp/graphite-statsd
起初给了我以下警告
Unable to find image 'graphiteapp/graphite-statsd:latest' locally
latest: Pulling from graphiteapp/graphite-statsd
完成所有拉动后出现以下错误
Digest: sha256:3136b19fcdb9162c642cc1d2821172948346651a46b41ab63cc05c2962ea85c9
Status: Downloaded newer image for graphiteapp/graphite-statsd:latest
7af4b99efeb4bb7d0bc1ba1d8b4556d812adc87bc720c035998eeb54116e57f4
docker: Error response from daemon: driver failed programming external connectivity on endpoint graphite (de38efe3b7ee88976d044ffe9948839c8058b06408f46f9857e4e689d9883ce9): Error starting userland proxy: Bind for 0.0.0.0:80: unexpected error (Failure EADDRINUSE).
警告消息只是告诉你本地没有这样的图像,它开始下载它。
你得到一个错误,因为你有一些服务在你主机的 80 端口上工作。 graphite
容器无法启动,因为它也需要使用80端口。因此,您可以停止使用端口 80 的服务或使用另一个端口启动 graphite
,例如 81 并在端口 81 上访问它:
docker run -d\
--name graphite\
--restart=always\
-p 81:80\
-p 2003-2004:2003-2004\
-p 2023-2024:2023-2024\
-p 8125:8125/udp\
-p 8126:8126\
graphiteapp/graphite-statsd