You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Firewalld needs to be configured to allow communication between hosts otherwise tasks such as below will fail.
Alternatively, inform that firewalld is not supported in your documentation and that the user has to take care of it.
- name: Make sure xray is up and running
ansible.builtin.uri:
url: http://127.0.0.1:8082/router/api/v1/system/health
timeout: 130
status_code: 200
register: result
until: result is succeeded
retries: 25
delay: 5
when:
- not ansible_check_mode
- xray_start_service | bool
The text was updated successfully, but these errors were encountered:
@EmptyByte Can you please share more info what was done in firewalld to allow communication b/w hosts . We internally test but never faced any issues before .
Hi @chukka I had to stop firewalld on all servers before executing the Jfrog Platform Play. Once completed, I started firewalld and allowed connections from the hosts in the inventory.
Firewalld needs to be configured to allow communication between hosts otherwise tasks such as below will fail.
Alternatively, inform that firewalld is not supported in your documentation and that the user has to take care of it.
The text was updated successfully, but these errors were encountered: