在浏览器中打开 localhost 引用另一台机器

在浏览器中打开 localhost 引用另一台机器

我目前在 Centos 机器上的本地主机上运行一项服务。我无法改变它。

我想在本地计算机上打开 Firefox 来打开该 URL,因为 Centos 计算机没有用户界面,而我的本地计算机有。

我尝试使用这个但它不起作用:

ssh -Y <user>@<centos_machine> firefox --no-remote

Error: GDK_BACKEND does not match available displays

Firefox 安装在 Centos 机器上。

答案1

ssh -L 8080:localhost:80 centos_machine

启动浏览器http://本地主机:8080

它指向 centos_machine:80

相关内容