Update the Firewall

Ensure that the HTTPS port for security provider is open. Security Provider uses port 9099 for HTTP and 9043 for HTTPS. If User is using HTTPS then enable port 9043:
For CentOS and RHEL:
List the active zones:
$ firewall-cmd --get-active-zones
Open port 9043:
$ sudo firewall-cmd --zone=public --add-port=9043/tcp --permanent
Reload the firewall configuration:
$ sudo firewall-cmd --reload
For SUSE:
Login as root user.
Go to the /etc/sysconfig folder and open the SuSEfirewall2 file:
  • Replace the following line:
    FW_SERVICES_EXT_TCP=""
  • With the following line:
    FW_SERVICES_EXT_TCP="9043"
Reload the firewall configuration:
$ sudo rcSuSEfirewall2 restart
Provide Feedback
Have questions or feedback about this documentation? Please submit your feedback here.