WslRegisterDistribution failed with error: 0xffffffff
While setting up WSL2 I came across this error. This seems like a scary error "WslRegisterDistribution failed with error: 0xffffffff", but all it means is port 53 is taken.
The solution for me was to run this in cmd:
netstat -aon | findstr ":53"
And then find the PID that was using port 53, go to the task manager and kill it.
I also stopped the Docker services just in case (in the Windows "Services" UI).
No comments:
Post a Comment