The Nautilus system admins team has rolled out a web UI application for their backup utility on the Nautilus backup server within the Stratos Datacenter. This application operates on port 8084, and firewalld is active on the server. To meet operational needs, the following requirements have been identified:
Allow all incoming connections on port 8084/tcp. Ensure the zone is set to public.
-
SSH into the Server:
ssh clint@stbkp01
-
Switch to Root User:
sudo su
-
Add Port 8084 to the Public Zone:
firewall-cmd --add-port=8084/tcp --zone=public --permanent
-
Reload firewalld to Apply Changes:
sudo firewall-cmd --reload
-
Check the Open Ports in the Public Zone:
sudo firewall-cmd --zone=public --list-ports
-
Check the Active Zones:
sudo firewall-cmd --get-active-zones