Port 8080 not listed in MTP
search cancel

Port 8080 not listed in MTP

book

Article ID: 4777

calendar_today

Updated On:

Products

CA Application Delivery Analysis MTP (NetQoS / ADA)

Issue/Introduction

The following list summarizes the firewall ports that must be open to allow communication among CA Application Delivery Analysis components.

From management console

To CA Multi-Port Monitor on TCP 80 and 8080

 

From CA Multi-Port Monitor

To a management console on TCP 80, TCP 3308, and TCP 8381.

 

But the port 8080 is not listed in MTP when we have checked through netstat command.

Environment

MTP and ADA Console.

Cause

HTTPD configuration for port 8080 is missing.

Resolution

1. Netstat should list port 8080 as below.

[netqos@MTPServer ~]$ sudo netstat -nlp | grep 8080

tcp        0      0 0.0.0.0:8080                0.0.0.0:*                   LISTEN      2734/httpd

2. Apachectl command should show the configuration of http as below.

[netqos@ca-mtp conf.d]$ sudo apachectl -S 

VirtualHost configuration: 

wildcard NameVirtualHosts and _default_ servers: 

*:8080 localhost (/etc/httpd/conf.d/netqos-ipa.conf:91) 

_default_:443 localhost (/etc/httpd/conf.d/ssl.conf:81) 

Syntax OK 

 

If 8080 is not present, you have to edit /etc/httpd/conf.d/netqos-ipa.conf (or /etc/httpd/conf.d/netqos-mtp.conf on 10.5 and earlier)

and add the below lines: 

 

Listen 8080 

<VirtualHost *:8080> 

ServerName localhost 

ServerAdmin root@localhost 

DocumentRoot /opt/NetQoS/web/8080 

Alias /getfiles /opt/NetQoS/web/8080/index.php 

Alias /getfile /opt/NetQoS/web/8080/index.php 

Alias /deletefile /opt/NetQoS/web/8080/index.php 

Alias /SuperAgent/SASlaveConsole /opt/NetQoS/web/8080/SAService.php 

Alias /SuperAgent/SAInvestigations /opt/NetQoS/web/8080/SAInvestigations.php 

</VirtualHost> 

 

3. Restart httpd service after this. 

sudo service httpd restart 

4. After this, check with "sudo netstat -nlp | grep 8080" command to see if port 8080 is listed.

 

Additional Information

https://techdocs.broadcom.com/us/en/ca-enterprise-software/it-operations-management/application-delivery-analysis/11-2/installing/pre-installation-planning/firewall-requirements.html