SatelliteQE / automation-tools

A set of tools to help to automate testing Foreman with Robottelo (https://github.com/SatelliteQE/robottelo)
GNU General Public License v3.0
16 stars 33 forks source link

Fixes capsule installer and capsule sanity job #854

Closed jameerpathan111 closed 4 years ago

jameerpathan111 commented 4 years ago

capsule installer and capsule sanity job has always been failing. I have investigated failure and noticed that port 5000 was missing in the list.

I referred https://access.redhat.com/documentation/en-us/red_hat_satellite/6.8-beta/html/installing_capsule_server/preparing-environment-for-capsule-installation#capsule-ports-and-firewalls-requirements_capsule for ports required on capsule.

When I ran:

# firewall-cmd --add-port="53/udp" --add-port="53/tcp" \ --add-port="67/udp" --add-port="69/udp" \ --add-port="80/tcp" --add-port="443/tcp" \ --add-port="5000/tcp" --add-port="5647/tcp" \ --add-port="8000/tcp" --add-port="8140/tcp" \ --add-port="8443/tcp" --add-port="9090/tcp"

# firewall-cmd --runtime-to-permanent

capsule installation completed successfully.