How to Check and Identify Which Application is Listening or Opening Port 80 and 443 on Windows Wie zu überprüfen und herauszufinden, welche Anwendung ist Hören oder Eröffnung Port 80 und 443 unter Windows

After installing Apache HTTPD web server or Microsoft IIS Internet Information Services web server, or any other application software or service and daemon that requires to open and listen to port 80 (HTTP) or port 443 (HTTPS SSL), it’ll be a surprise if some other application or processes have stolen, used and occupied port 80 and/or 443. Nach der Installation von Apache HTTPD Web-Server IIS oder Microsoft Internet Information Services Web-Server, oder jeder anderen Software-Anwendung oder eine Dienstleistung und Dämon, der verlangt zu öffnen und auf Port 80 (HTTP) oder Port 443 (HTTPS-SSL), es wird eine Überraschung wenn eine andere Anwendung oder Prozesse haben gestohlen, genutzt und bespielt Port 80 und / oder 443. No web server has been running on the Windows system before, so what’s the process that uses port 80 or 443 on the system? Keine Web-Server wurde auf dem Windows-System vor, so was ist der Prozess, der verwendet Port 80 oder 443 auf das System?

For example, after installing Apache web server using Zum Beispiel, nach der Installation von Apache Web-Server mit XAMPP , the following error message may appear: , Wird möglicherweise die folgende Fehlermeldung angezeigt:

(OS 10048) Only one usage of each socket address (protocol/network address/port) is normally permitted. (OS 10048) Nur ein Verbrauch der einzelnen Socket-Adresse (protocol / Netzwerk-Adresse / Port) ist in der Regel zulässig. : make_sock: could not bind to address 0.0.0.0:80 : Make_sock: konnte nicht binden, um 0.0.0.0:80
no listening sockets available, shutting down Hören keine Anschlüsse vorhanden, Herunterfahren

Here’sa few built-in commands and how to guide that can help users to find out and identify which application or process that is already using, opening and listening on port 80 or 443 on the Winodws operating system such as Windows Vista, Windows XP, Windows 7, Windows Server 2003 and 2008. Hier einige Einbau-Befehle und wie zu führen, die dazu beitragen können Nutzer, um herauszufinden, und herauszufinden, welche Anwendung oder Prozess, der bereits mit, die Eröffnung und das Lauschen auf Port 80 oder 443 auf dem Winodws Betriebssystem wie Windows Vista, Windows XP , Windows 7, Windows Server 2003 und 2008.

  1. Open Command Prompt window by typing Cmd in Run command box or Start Search, and hit Enter. Öffnen Command Prompt-Fenster, indem Sie cmd in Ausführen Befehl Feld oder Suche starten, und drücken Sie Enter.
  2. Type in the following netstat command: Geben Sie den folgenden Befehl netstat:

    netstat -o -n -a | findstr 0.0:80 netstat-o-n-a | findstr 0.0:80

    or oder

    netstat -o -n -a | findstr 0.0:443 netstat-o-n-a | findstr 0.0:443

    or simply, oder einfach,

    netstat -aon netstat-AON

    Note: The last command will list all connection that is listening, established, starting, closing and all other states, so the list is long, and user has to manually search for rows that has connection originating or targeting to 1270.0.1:80/443 or 0.0.0.0.80/443. Hinweis: Der letzte Befehl listet alle Verbindung, die zuhört, der, beginnend, zum Abschluss und alle anderen Staaten, so dass die Liste ist lang, und der Benutzer hat die manuelle Suche nach Zeilen, die Verbindung mit Ursprung oder Ziel zu 1270.0.1:80 / 443 oder 0.0.0.0.80/443.

  3. The following line(s) of results should be returned: Die folgende Zeile (n) der Ergebnisse zurückgegeben werden sollten:

    TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 8704 TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 8704

    The last column of each row is the process identified (process ID or PID). Die letzte Spalte in jeder Zeile ist der Prozess identifiziert (Prozess-ID oder PID).

  4. Identify which process or application is using the port by matching the PID against Herauszufinden, welche Anwendung oder Prozess ist mit dem Hafen durch die Zusammenführung der PID gegen PID number in Task Manager PID-Nummer im Task-Manager .

Another alternative to determine and identify which application is using port 80 or 443 is by using Telnet application. Eine weitere Alternative zu ermitteln und herauszufinden, welche Anwendung verwendet Port 80 oder 443 ist die Verwendung von Telnet-Anwendung. Just type the following command to Telnet to the system in port 80 or 443: Geben Sie einfach den folgenden Befehl ein, um Telnet auf das System in Port 80 oder 443:

telnet localhost 80 telnet localhost 80

or, oder,

telnet localhost 443 telnet localhost 443

If the Telnet connection can be opened, normally the banner of the application which opens the port will be shown, and help user to identify which process that actually listening on the port. Wenn die Telnet-Verbindung geöffnet werden kann, in der Regel dem Banner der Anmeldung, öffnet den Port wird, und helfen, Benutzer zu identifizieren, die Prozess, der tatsächlich das Lauschen auf den Hafen.

Tip: The command above can be used to identify and check what processes is using any other ports too, such as 7 (Echo), 21 (FTP), 23 (Telnet), 25 (SMTP), 53 (DNS), 70 (Gopher), 79 (Finger), 107 (RTelnet), 110 (POP3), 119 (NNTP), 139 (NetBIOS), 143 (IMAP), 194 (IRC), 3128, 8080, 10000, and etc. Tipp: Der Befehl oben kann verwendet werden, zu identifizieren und zu prüfen, welche Prozesse ist die Benutzung jeder anderen Häfen zu, wie zum Beispiel 7 (Echo), 21 (FTP), 23 (Telnet), 25 (SMTP), 53 (DNS), 70 ( Gopher), 79 (Finger), 107 (RTelnet), 110 (POP3), 119 (NNTP), 139 (NetBIOS), 143 (IMAP); 194 (IRC), 3128, 8080, 10000, und etc.

IMPORTANT : This is a machine translated page which is provided "as is" without warranty. WICHTIG: Dies ist eine Maschine übersetzt, die Seite wird "as is" ohne Garantie. Machine translation may be difficult to understand. Maschinelle Übersetzung Mai nur schwer zu verstehen. Please refer to Bitte wenden Sie sich an original English article Original Englisch Artikel whenever possible. wann immer dies möglich ist.

Share and contribute or get technical support and help at Aktie und einen Beitrag oder erhalten technische Unterstützung und Hilfe bei My Digital Life Forums My Digital Life Foren .



One Response to “How to Check and Identify Which Application is Listening or Opening Port 80 and 443 on Windows” One Response to "Wie zu überprüfen und herauszufinden, welche Anwendung ist Hören oder Eröffnung Port 80 und 443 auf Windows"

  1. Disable Skype from Using, Opening and Listening on Port 80 and 443 on Local Computer » My Digital Life Deaktivieren Sie Verwendung von Skype, Eröffnung und Hören auf Port 80 und 443 auf dem lokalen Computer »Ihr Digital Life
    December 3rd, 2008 03:27 3. Dezember 2008 03:27
    1

    [...] Service) is currently installed or running on the system. [...] Service) ist derzeit installiert oder läuft über das System. If you investigates to the root by identifying which application is using the port 80, the cause of the problem is due to Skype. Wenn Sie untersucht, um die Wurzel, indem die Anwendung ist mit dem Port 80, die Ursache des Problems lag darin, durch Skype. Skype allows users to use port 80 and 443 as an [...] Skype erlaubt es Benutzern, Verwendung von Port 80 und 443 als [...]

Leave a Reply Lassen Sie eine Antwort

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> Sie können diese Tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime = ""> <em> <i> <q Cite=""> <strike> <strong>

Subscribe to comments feature has been disabled. Abonnieren Sie Kommentare Feature deaktiviert wurde. To receive notification of latest comments posted, subscribe to Um eine Benachrichtigung zu erhalten neuesten Kommentare gepostet, abonnieren Sie My Digital Life Comments RSS feed My Digital Life Kommentare RSS-Feed or oder register to receive Register zu erhalten new comments in daily email digest. Neue Kommentare in der täglichen E-Mail-Digest.
Custom Search

New Articles Neue Artikel

Incoming Search Terms for the Article Eingehende Suche Nutzungsbedingungen für die Artikel