无法在 MacBook Pro M1 上运行公开服务

发布于 2025-01-11 07:18:09 字数 336 浏览 0 评论 0原文

我尝试在我的 Macbook(M1) 上运行公开服务。但是,我无法在本地浏览该服务。根本原因可能是什么? 请参阅附图。

输入图片此处描述输入图片此处描述

I try to run an exposed service on my Macbook(M1). However, I failed to browse the service locally. What could be the root cause?
Please see the attached images.

enter image description here
enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

三寸金莲 2025-01-18 07:18:09

用于获取 minikube IP 和服务 NodePort 的快捷命令不起作用吗?

minikube service --url <service-name>

Is the shortcut command for fetching the minikube IP and a service’s NodePort not working?

minikube service --url <service-name>
寂寞清仓 2025-01-18 07:18:09

在 MacOS 上使用 docker 驱动程序运行 minikube 有一些限制。请参阅此 GitHub 问题

至少有两个选项(更多,但这些都很简单):

  • 使用 minikube 隧道

隧道 用于将运行 minikube 的虚拟机内部的服务公开到主机网络。请参阅访问minikube中的应用程序。

这就是minikube_IP :NodePort 转换为 localhost: different_port

  • 使用 VirtualBox 驱动程序启动 minikube 以获得正确的 IP(如果您
    确实需要访问 NodePort 上的服务),位于命令下方
    如何使用 VirtualBox 驱动程序启动它(这应该安装在
    你的机器):

     minikube start --driver=VirtualBox
    

There are some limitations with minikube running with docker driver on MacOS. Please see this GitHub issue.

There are two options at least (more, but these are simple to do):

  • use the minikube tunnel

Tunnel is used to expose the service from inside of the VM where minikube is running to the host machine's network. Please refer to access applications in minikube.

This is how minikube_IP:NodePort transforms to localhost:different_port.

  • start minikube with VirtualBox driver to get a proper IP (if you
    really need to access your service on NodePort), below the command
    how to start it with VirtualBox driver (this should be installed on
    your machine):

      minikube start --driver=VirtualBox
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文