通常只允许每个套接字地址(protocol/network address/port)使用一次?

Only one usage of each socket address (protocol/network address/port) is normally permitted?

我一直在 google 上寻找认真的解决方案,但我只得到“注册表解决方案”之类的东西,我认为它们甚至与我的问题无关。

出于某种原因,我收到此错误,而我只启动了 TcpListner 一次,如果失败,我将停止服务器。

这是我的代码:

class Program
    {
        private static string ServerName = "";
        private static string UserName = "";
        private static string Password = "";
        private static string dbConnectionSring = "";
        private static X509Certificate adminCertificate;
        private  static byte[] readBuffer = new byte[4096];
        static void Main(string[] args)
        {
            Console.WriteLine("Please grant SQL Server access to the Admin Server:\n");
            Console.Write("Server Name: ");
            ServerName = Console.ReadLine();
            Console.Write("\nUser Name: ");
            UserName = Console.ReadLine();
            Console.Write("\nPassword: ");
            Password = PasswordMasker.Mask(Password);
            dbConnectionSring = SQLServerAccess.CreateConnection(ServerName, UserName, Password);
            adminCertificate = Certificate.GenerateOrImportCertificate("AdminCert.pfx", "randomPassword");
            try
            {
                Console.WriteLine("Initializing server on the WildCard address on port 443...");
                TcpListener listener = new TcpListener(IPAddress.Any, 443);
                try
                {
                    Console.WriteLine("Starting to listen at {0}: 443...", IPAddress.Any);
                    
                    //the backlog is set to the maximum integer value, but the underlying network stack will reset this value to its internal maximum value
                    listener.Start(int.MaxValue);
                    Console.WriteLine("Listening... Waiting for a client to connect...");
                    int ConnectionCount = 0;

                    while (true)
                    {
                        try
                        {

                            listener.BeginAcceptTcpClient(new AsyncCallback(AcceptCallback), listener);
                            ConnectionCount++;
                            Console.WriteLine(
                                " Accepted connection #" + ConnectionCount.ToString());


                        }
                        catch (SocketException err)
                        {
                            Console.WriteLine("Accept failed: {0}", err.Message);
                        }
                    }
                }
                catch (Exception ex)
                {
                    Console.WriteLine("Listening failed to start.");
                    listener.Stop();
                    
                    Console.WriteLine(ex.Message);
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine("Initialiazing server Failed.");
                Console.WriteLine(ex.Message);
            }
        }
  1. 打开CMD并输入:netstat -a
  2. 查看“本地地址”列。
  3. 查看端口部分。
  4. 如果您程序中的端口已经在另一个程序中处于活动状态(正在使用),您应该使用另一个端口或终止活动进程以使端口空闲。
  5. 我将程序中的端口更改为其他端口。

成功了!

非常感谢:@DavidSchwartz、@Gusman

  1. 打开cmd
  2. 键入 netstat –ano
  3. 进程列表及其端口将被打开
  4. 搜索您无法使用的端口的“进程 ID”(在我的例子中是端口 11020)
  5. 打开任务管理器并停止该进程
  6. 现在您的端口可以使用了:)

选项 1

  1. 打开命令提示符。
  2. 键入 netstat -ano | findstr ":80" - 其中“80”是您要搜索的端口号。
  3. 查看结果中的最后一列 - PID。
  4. 对于每个要杀死的PID 运行,在命令提示符window中执行taskkill /PID <PID> /F(其中<PID>是需要杀死的PID) .

选项 2

如果上面的选项 1 不起作用,请尝试重新启动您的计算机。

为了找到进程,使用 PowerShell 很容易:

$theCulpritPort="8001"
Get-NetTCPConnection -LocalPort $theCulpritPort `
| Select-Object -Property "OwningProcess", @{'Name' = 'ProcessName';'Expression'={(Get-Process -Id $_.OwningProcess).Name}} `
| Get-Unique

继续前进,如果您需要终止进程,则在最后通过管道发送一个 Stop-Process:

$theCulpritPort="8001"
Get-NetTCPConnection -LocalPort $theCulpritPort -ErrorAction Ignore `
| Select-Object -Property  @{'Name' = 'ProcessName';'Expression'={(Get-Process -Id $_.OwningProcess).Name}} `
| Get-Unique `
| Stop-Process -Name {$_.ProcessName} -Force