For each application or component there is a two digit port prefix defined and for each protocol or service there is a three digit port suffix defined.
The next figure shows the deployment of the CoreMedia DXP 8 components into the boxes and the communication between the components. If you cannot read the text of the figure in the online documentation, right-click the image and select Open image in new tab from the context menu. You can also download the original YEd file from the documentation overview page below Other Documentation named CoreMedia DXP 8 Deployment Diagram.
Component | Port Prefix |
---|---|
Studio | 40 |
Content Management Server | 41 |
Master Live Server | 42 |
Workflow Server | 43 |
Solr Master | 44 |
Solr Slave | 45 |
CAE Feeder Preview | 46 |
CAE Feeder Live | 47 |
Replication Live Server | 48 |
Delivery (Live CAE) | 49 |
Table 9.1. Component Port Prefix
Protocol / Service | Port Suffix |
---|---|
HTTP | 080 |
HTTPS | 443 |
Tomcat Shutdown | 005 |
Tomcat AJP | 009 |
Tomcat JMX Registry Port (RMI) | 099 |
Tomcat JMX Server Port (RMI) | 098 |
Tomcat Debug Port | 777 |
CORBA | 683 |
CORBA SSL | 684 |
Table 9.2. Protocol / Service Port Suffix
Note | |
---|---|
Since the preview is always deployed together with Studio, there is
no extra port prefix reserved. When started with |
Note | |
---|---|
Be advised, that this port schema's port range has its drawback of overlapping with the default ephemeral port range on most operation systems. You can however, decrease the ephemeral port range with the cost of not optimizing your TCP/IP stack. In a setup with just one CAE running per host, decreasing the range will likely not affect your systems performance, but if you are running many CAEs on one host, you should rather adapt the port filtering to use a smaller range of ports below the default ephemeral port range.
Changing the filtering can be done in root To decrease the ephemeral port range for CentOS, you just need to execute the following commands as root on your system: echo "50000 65535" > /proc/sys/net/ipv4/ip_local_port_range echo -e "\n# Increase system IP port limits\nnet.ipv4.ip_local_port_range = 50000 65535" >> /etc/sysctl.conf
|