RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Listener Failed???

espcevan

Sorceror
Listener Failed???

Code:
RunUO - [www.runuo.com] Version 2.0, Build 3567.2838
Core: Running on .NET Framework Version 2.0.50727
Scripts: Compiling C# scripts...done (cached)
Scripts: Skipping VB.NET Scripts...done (use -vb to enable)
Scripts: Verifying...done (2215 items, 524 mobiles)
Regions: Loading...done
World: Loading...done (100014 items, 2419 mobiles) (8.34 seconds)
Listener Failed: 0.0.0.0:2593 (In Use)


I have been messing around with RunUO for a few years making servers and helping others out. Not one time have i ever seen this error and i have no idea where to look or what to do to fix it.


If anyone ealse has come across this and know how to fix please help.
 

Morxeton

Sorceror
Something on your system is already listening on port 2593.

EDIT:

Type netstat -ab to find out which process is listening on that port. You only need to worry about the line items that have a state of "listening." You could also try typing this in: netstat -ao | find /i "listening" and when the netstat process completes, any line items with a state of listening will just be shown, but you have to use the -ao switch which shows the PID of the process instead of the process name. The -ab switch shows the process name on a separate line and won't be picked up by the find command.
 
Top