為什麼我只能使用 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 表示無法存取。我的所有開發網域都指向主機中的 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"

相關內容