为什么我只能使用 localhost 访问我的 WSL2 Ubuntu 虚拟机,而不能使用 127.0.0.1

为什么我只能使用 localhost 访问我的 WSL2 Ubuntu 虚拟机,而不能使用 127.0.0.1

我对虚拟机几乎没有经验。我成功安装了 WSL2 和 ubuntu 20,然后安装了 LAMP 堆栈。一切正常,但当我在 Windows 机器上使用浏览器时,我只能使用 locahost 访问虚拟化 ubuntu 上的 apache。127.0.0.1 说无法访问。我已将所有开发域都指向 hosts 中的 127.0.0.1,因此当然这也不起作用。

Apache 端口配置如下

    Listen 80

<IfModule ssl_module>
        Listen 443
</IfModule>

<IfModule mod_gnutls.c>
        Listen 443
</IfModule> 

虚拟主机是

<VirtualHost *:80>
or <VirtualHost *:443>

但是从日志来看,对 127.0.0.1 的请求甚至没有到达 apache,这对于浏览器中的“无法到达”消息来说是有道理的。

有人能指出我应该看的方向吗?

谢谢。

答案1

谢谢评论。在整个 wsl2 ubuntu 设置指南的末尾找到了解决方案: https://dev.to/aitorsol/wsl2-windows-linux-subsystem-a-guide-to-install-a-local-web-server-ubuntu-20-04-apache-php8-y-mysql8-3bbk

该帖子中包含的脚本与我的系统略有不兼容,因为 ifconfig 已被弃用,所以我使用的版本在第一行使用 ip addr 而不是 ifconfig。从其他地方读到,你的系统可能未使用 eth0,因此你可能需要根据适配器调整第一行

在脚本中编辑您想要转发到虚拟机的端口。

$remoteport = bash.exe -c "ip addr list eth0 | grep 'inet '"
$found = $remoteport -match '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}';

if( $found ){
  $remoteport = $matches[0];
} else{


echo "The Script Exited, the ip address of WSL 2 cannot be found";
  exit;
}

#[Ports]

#All the ports you want to forward separated by coma
$ports=@(80,443,10000,3000,5000,8080);


#[Static ip]
#You can change the addr to your ip config to listen to a specific address
$addr='0.0.0.0';
$ports_a = $ports -join ",";


#Remove Firewall Exception Rules
iex "Remove-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' ";

#adding Exception Rules for inbound and outbound Rules
iex "New-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' -Direction Outbound -LocalPort $ports_a -Action Allow -Protocol TCP";
iex "New-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' -Direction Inbound -LocalPort $ports_a -Action Allow -Protocol TCP";

for( $i = 0; $i -lt $ports.length; $i++ ){
  $port = $ports[$i];
  iex "netsh interface portproxy delete v4tov4 listenport=$port listenaddress=$addr";
  iex "netsh interface portproxy add v4tov4 listenport=$port listenaddress=$addr connectport=$port connectaddress=$remoteport";
}

运行此程序后,您应该能够通过访问 Windows 机器的 LAN IP 来访问虚拟机上的 apache,显然 127.0.0.1 在机器本身上有效

测试之后,我将其设置为从 .profile 运行,以便在虚拟机启动时发生端口转发更改。

/mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe "C:\Users\user\wsl-networking-startup-ip-change.ps1"

相关内容