Installation of Puppet Enterprise on Centos 7 is failing due to the following error:
"2017-06-21 07:11:41,242 - [Error]: Failed to apply catalog: Connection refused - connect(2) for "abc.xyz.com" port 4433"
I have done the following steps:
Install firewalld: yum install firewalld
Start firewalld service: sudo systemctl start firewalld.service
Get firewall zones: firewall-cmd --get-active-zones --> This did not return anything
Add port 4433 to public zone:
firewall-cmd --zone=public --add-port=4433/tcp --permanent --> This did returned "success" message
Reload : firewall-cmd --reload
Search of 4433 port: netstat -tulpn | grep 4433 --> This did not return anything
Check port 4433: curl -v abc.xyz.com:4433 --> This still return " Connection refused" error.
What am I missing here ?