当 Ubuntu [Virtualbox] 上安装了 prometheus 时,如何在 Windows 上访问 prometheus

当 Ubuntu [Virtualbox] 上安装了 prometheus 时,如何在 Windows 上访问 prometheus

我有一台 Windows 笔记本电脑。在这台笔记本电脑上,我安装了 VirtualBox,并在 VirtualBox 中安装了 ubuntu 服务器。

在ubuntu服务器上,我安装了Prometheus监控工具。我能够在ubuntu服务器的终端中运行prometheus。

这是我的 ubuntu 服务器的 ip 地址 [10.3.10.105],prometheus 在端口 [9090] 上运行。现在我想在 windows 浏览器上查看 prometheus 的 GUI。我该如何查看?

我已经尝试浏览http://10.3.10.105:9090但那不起作用

在此处输入图片描述

答案1

作为弗兰克·托马斯行列显示,目前您的 prometheus 不监听 IPv4 地址。但是提供 IPv6(参见屏幕截图的最后一行)。

检查 prometheus 服务器上的 IPv6 地址,您应该能够通过 IPv6 访问它:

# Check for the IPv6 at the server's terminal:

$  ip -br -f inet6 addr
lo               UNKNOWN        ::1/128 
enp4s0           UP             fe80::a76b:c61::3261/64


# Test the access form the client:

$  curl http://[fe80::a76b:c61::3261]:9090
<!DOCTYPE HTML>
<html>
...

(IPv6 地址仅为示例,请替换为您自己的地址)

相关内容