Network requirements

ADPS network port mapping

Service Component/Server Port Protocol Description

ADCM

ADCM

22

TCP

ADCM connection port

Arenadata PostgreSQL

Arenadata PostgreSQL

5432

TCP

PostgreSQL DB connection port

Knox

Knox Gateway

8443

HTTPS

Gateway port

MariaDB

MariaDB Master Server

3306

TCP

MariaDB connection port

Ranger

Ranger Admin

6080/6182

HTTP/HTTPS

Ranger Admin web UI and API port

Ranger

Ranger Admin

6085

TCP (local)

Ranger Shutdown port

Ranger

Ranger Usersync

5151

TCP/SSL

Port for UNIX Auth service

Ranger

Ranger KMS

9292/9393

HTTP/HTTPS

Port for Ranger KMS

Ranger

Ranger KMS

7085

TCP (local)

Ranger KMS Shutdown port

Solr

Solr Server

8983

HTTP

Solr web UI and API port

Solr

Jetty

7983

TCP (local)

Jetty Shutdown port for Solr

Zookeeper

Zookeeper

2888

TCP

Port for cluster coordinating (internal cluster use only)

Zookeeper

Zookeeper

3888

TCP

Port for cluster coordinating (internal cluster use only)

Zookeeper

Zookeeper

2181

TCP

Port for clients connection

Zookeeper

Zookeeper (Admin Server)

5181

HTTP/HTTPS

Zookeeper HTTP REST API interface

Local ports are ports of loopback addresses, with local access only. These ports are marked as local in the Protocol column.

Client ports

Client ports are generated in the local port range. You can determine a specific port from this range using a known service port. Use the lsof command as follows:

$ sudo lsof -i -P -n | grep <known port number>

For example, the Ranger client runs on a local random port and connects to MariaDB that listens to the 3306 port.

$ sudo lsof -i -P -n | grep 3306
java  21227  ranger  59u  IPv6 43665098  0t0  TCP 10.92.16.192:40388->10.92.16.192:3306 (ESTABLISHED)
Examples of client ports in the local port range
Component Port Protocol Description

Curl

45866 or another random port from the local port range

HTTPS

Curl client starts on port 45866 in service checks for sending request to Knox Admin Web UI:

10.92.16.192:45866→10.92.16.192:8443

Ranger

45832 or another random port from the local port range

TCP

The Ranger client connects to MariaDB:

10.92.16.192:45832→10.92.16.192:3306

Solr

43162 or another random port from the local port range

TCP

The Solr client and Solr Server connect to each other:

10.92.16.192:49764→10.92.16.192:8983

10.92.16.192:8983→10.92.16.192:49764

Found a mistake? Seleсt text and press Ctrl+Enter to report it