<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>article How to check which program is using a specific port in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-check-which-program-is-using-a-specific-port/ta-p/1713742</link>
    <description>&lt;P&gt;Or: How to&amp;nbsp;find if a port is used by a different service&lt;/P&gt;
&lt;P&gt;It may be necessary to verify what ports are being used by what product (Qlik product or 3rd party). There are different methods to check currently bound ports, most using 3rd party products native to Windows. Note that there are different methods to verify what ports are in use, from 3rd party tools to native Windows such as &lt;STRONG&gt;netsh&lt;/STRONG&gt; or various &lt;STRONG&gt;PowerShell&lt;/STRONG&gt; commands.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We've collected a few commonly used methods.&lt;/P&gt;
&lt;P&gt;Alternatively, Qlik Sense comes shipped with Qlik Sense Utility,&amp;nbsp;which includes a&amp;nbsp;&lt;I&gt;Port Checker.&amp;nbsp;&lt;/I&gt;See&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Knowledge/Qlik-Sense-Utility-Functions-and-Features/ta-p/1711747" target="_blank" rel="noopener" data-cke-saved-href="/articles/Basic/Qlik-Sense-Utility-Functions-and-Features"&gt;Qlik Sense Utility - Functions and Features&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;For more information about required ports for Sense and QlikView:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://help.qlik.com/en-US/sense/Subsystems/PlanningQlikSenseDeployments/Content/Deployment/Ports.htm" target="_blank" rel="noopener" data-cke-saved-href="https://help.qlik.com/en-US/sense/February2018/Subsystems/PlanningQlikSenseDeployments/Content/Deployment/Ports.htm"&gt;Qlik Sense Enterprise - Port Overview&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://community.qlik.com/articles/Basic/Firewall-TCP-and-UDP-ports-used-by-QlikView" target="_blank" rel="noopener" data-cke-saved-href="/articles/Basic/Firewall-TCP-and-UDP-ports-used-by-QlikView"&gt;Firewall TCP and UDP ports used by QlikView&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;Method 1&amp;nbsp;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;&lt;BR /&gt;As an administrator, open the Windows command prompt and execute the following command:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;C:\&amp;gt;netstat -noab&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will return information in this format:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt; TCP   0.0.0.0:7680   0.0.0.0:0   LISTENING   1028  DoSvc  [svchost.exe]&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;Method 2&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;&lt;BR /&gt;As an administrator, open the Windows command prompt and execute the following command:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;C:\&amp;gt;netstat -noa&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This lists active connections including the port numbers, but will not show the program:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt; Proto  Local Address          Foreign Address        State           PID
  ...
  TCP    [::]:5151             [::]:0                 LISTENING       1688
  ...&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To identify what program uses the port, use the PID from the first output and run this command&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;tasklist /fi "pid eq 1688"&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;"tasklist | find "[PID_number]"&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will return the service name:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;anothersoftware.exe    1688 Services    0     66,192 K&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;BR /&gt;Using PowerShell:&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;The same can be accomplished using PowerShell.&lt;BR /&gt;Open PowerShell and execute:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;PS&amp;gt; netstat -noa | sls 443&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will return:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;TCP   0.0.0.0:443       0.0.0.0:0        LISTENING       4&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Where the last number (in our cases 4) is the Process ID (PID).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;Method 3&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;The same can be accomplished using Command prompt.&lt;BR /&gt;&lt;SPAN&gt;1. Open a command prompt as an administrator.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Create a text file named file.txt with the netstat command.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Type: netstat -naob &amp;gt; c:\file.txt&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4. Open the text file with the following command: C:\file.txt&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Note:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;If ports are enabled it provides you an information that it is listening on port 443 and its service name.&lt;BR /&gt;For example:&lt;BR /&gt;TCP&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.0.0.0:443&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.0.0.0:0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; LISTENING&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;7036&lt;BR /&gt;[Proxy.exe]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;Related Content:&lt;/STRONG&gt;&lt;/H4&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://community.qlik.com/t5/Knowledge/Qlik-Sense-Utility-Functions-and-Features/ta-p/1711747" target="_blank" rel="noopener" data-cke-saved-href="/articles/Basic/Qlik-Sense-Utility-Functions-and-Features"&gt;Qlik Sense Utility - Functions and Features&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://community.qlik.com/t5/Support-Knowledge-Base/How-To-Check-Open-Ports-Using-PowerShell/ta-p/1714308" target="_self"&gt;How To Check Open Ports Using PowerShell&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 08 Feb 2022 12:40:55 GMT</pubDate>
    <dc:creator>Damien_V</dc:creator>
    <dc:date>2022-02-08T12:40:55Z</dc:date>
    <item>
      <title>How to check which program is using a specific port</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-check-which-program-is-using-a-specific-port/ta-p/1713742</link>
      <description>&lt;P&gt;Or: How to&amp;nbsp;find if a port is used by a different service&lt;/P&gt;
&lt;P&gt;It may be necessary to verify what ports are being used by what product (Qlik product or 3rd party). There are different methods to check currently bound ports, most using 3rd party products native to Windows. Note that there are different methods to verify what ports are in use, from 3rd party tools to native Windows such as &lt;STRONG&gt;netsh&lt;/STRONG&gt; or various &lt;STRONG&gt;PowerShell&lt;/STRONG&gt; commands.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We've collected a few commonly used methods.&lt;/P&gt;
&lt;P&gt;Alternatively, Qlik Sense comes shipped with Qlik Sense Utility,&amp;nbsp;which includes a&amp;nbsp;&lt;I&gt;Port Checker.&amp;nbsp;&lt;/I&gt;See&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Knowledge/Qlik-Sense-Utility-Functions-and-Features/ta-p/1711747" target="_blank" rel="noopener" data-cke-saved-href="/articles/Basic/Qlik-Sense-Utility-Functions-and-Features"&gt;Qlik Sense Utility - Functions and Features&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;For more information about required ports for Sense and QlikView:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://help.qlik.com/en-US/sense/Subsystems/PlanningQlikSenseDeployments/Content/Deployment/Ports.htm" target="_blank" rel="noopener" data-cke-saved-href="https://help.qlik.com/en-US/sense/February2018/Subsystems/PlanningQlikSenseDeployments/Content/Deployment/Ports.htm"&gt;Qlik Sense Enterprise - Port Overview&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://community.qlik.com/articles/Basic/Firewall-TCP-and-UDP-ports-used-by-QlikView" target="_blank" rel="noopener" data-cke-saved-href="/articles/Basic/Firewall-TCP-and-UDP-ports-used-by-QlikView"&gt;Firewall TCP and UDP ports used by QlikView&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;Method 1&amp;nbsp;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;&lt;BR /&gt;As an administrator, open the Windows command prompt and execute the following command:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;C:\&amp;gt;netstat -noab&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will return information in this format:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt; TCP   0.0.0.0:7680   0.0.0.0:0   LISTENING   1028  DoSvc  [svchost.exe]&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;Method 2&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;&lt;BR /&gt;As an administrator, open the Windows command prompt and execute the following command:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;C:\&amp;gt;netstat -noa&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This lists active connections including the port numbers, but will not show the program:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt; Proto  Local Address          Foreign Address        State           PID
  ...
  TCP    [::]:5151             [::]:0                 LISTENING       1688
  ...&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To identify what program uses the port, use the PID from the first output and run this command&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;tasklist /fi "pid eq 1688"&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;"tasklist | find "[PID_number]"&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will return the service name:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;anothersoftware.exe    1688 Services    0     66,192 K&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;BR /&gt;Using PowerShell:&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;The same can be accomplished using PowerShell.&lt;BR /&gt;Open PowerShell and execute:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;PS&amp;gt; netstat -noa | sls 443&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will return:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;TCP   0.0.0.0:443       0.0.0.0:0        LISTENING       4&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Where the last number (in our cases 4) is the Process ID (PID).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;Method 3&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;The same can be accomplished using Command prompt.&lt;BR /&gt;&lt;SPAN&gt;1. Open a command prompt as an administrator.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Create a text file named file.txt with the netstat command.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Type: netstat -naob &amp;gt; c:\file.txt&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4. Open the text file with the following command: C:\file.txt&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Note:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;If ports are enabled it provides you an information that it is listening on port 443 and its service name.&lt;BR /&gt;For example:&lt;BR /&gt;TCP&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.0.0.0:443&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.0.0.0:0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; LISTENING&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;7036&lt;BR /&gt;[Proxy.exe]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;Related Content:&lt;/STRONG&gt;&lt;/H4&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://community.qlik.com/t5/Knowledge/Qlik-Sense-Utility-Functions-and-Features/ta-p/1711747" target="_blank" rel="noopener" data-cke-saved-href="/articles/Basic/Qlik-Sense-Utility-Functions-and-Features"&gt;Qlik Sense Utility - Functions and Features&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://community.qlik.com/t5/Support-Knowledge-Base/How-To-Check-Open-Ports-Using-PowerShell/ta-p/1714308" target="_self"&gt;How To Check Open Ports Using PowerShell&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Feb 2022 12:40:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-check-which-program-is-using-a-specific-port/ta-p/1713742</guid>
      <dc:creator>Damien_V</dc:creator>
      <dc:date>2022-02-08T12:40:55Z</dc:date>
    </item>
  </channel>
</rss>

