Page 1 of 1
Launcher not starting
Posted: 2020-05-28 18:26
by Lykes
i got" error binding LoginServer" when i start the launcher
Re: Launcher not starting
Posted: 2020-05-28 19:47
by Mats391
Please check PRLauncher.log next to the PRLauncher.exe for further errors.
Re: Launcher not starting
Posted: 2020-05-28 21:37
by AlonTavor
You have something blocking socket binding
Re: Launcher not starting
Posted: 2020-05-29 07:08
by Lykes
Code: Select all
Project Reality Log File
PRLauncher.exe started at: 2020-05-29T09:02:46
Critical Error: Error binding LoginServer
> System.Net.Sockets.SocketException (0x80004005): Der Zugriff auf einen Socket war aufgrund der Zugriffsrechte des Sockets unzulässig
bei System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
bei System.Net.Sockets.Socket.Bind(EndPoint localEP)
bei ??.(UInt16 )
Re: Launcher not starting
Posted: 2020-05-29 07:35
by Mats391
Make sure you are running PRLauncher as administrator and check that no other application is binding on localhost TCP port 29900.
You can check if another application is using that port with this powershell command:
Code: Select all
Get-Process -Id (Get-NetTCPConnection -LocalPort 29900).OwningProcess
Other ways of checking can be found here:
https://stackoverflow.com/a/48199/3506081
Re: Launcher not starting
Posted: 2020-05-29 08:22
by Lykes
Handles NPM(K) PM(K) WS(K) CPU(s) Id SI ProcessName
------- ------ ----- ----- ------ -- -- -----------
1541 961 6712 15112 5276 0 svchost
das spuckt er aus
Re: Launcher not starting
Posted: 2020-05-29 10:59
by Mats391
That means some windows service is blocking the port and we need to find its name. For that open your task manager go to "Services" tab and then search a service that uses the Id reported by the command above (e.g. 5276 in what you posted).
Re: Launcher not starting
Posted: 2020-05-29 11:28
by Lykes
it the WpnService 5276 Windows-Pushbenachrichtigungssystemdienst
i stoped it now it working again
thx for the help
Re: Launcher not starting
Posted: 2020-05-29 11:43
by Mats391
I cannot find any documentation that this service requires the 29900 port. Maybe it just grabs a random port on startup. Please try restarting your PC or the service and then launch PR again.
If that does not work, I suggest to disable the service when you want to play PR and I will continue to look why it is blocking this port.