1. ホーム
  2. c#

[解決済み】ソケットのアドレス(プロトコル/ネットワークアドレス/ポート)は、通常1つしか使用できない?

2022-01-31 17:10:31

質問

Googleで深刻な解決策を探しているのですが、私の問題とは関係ないと思われる「Regisrty solutions"」という種類のものしか出てきません。

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 に感謝します。