Reputation: 41
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 ?
Upvotes: 0
Views: 993
Reputation: 41
The issue I faced was when I was trying to install using the web console "https://abc.xyz.com:3000". The issue was resolved by using pe.conf file for the installation.
{
"console_admin_password": "password",
"puppet_enterprise::puppet_master_host": "abc.xyz.com",
"pe_install::puppet_master_dnsaltnames": [
"puppet",
"master",
"abc"
],
"puppet_enterprise::use_application_services": true
}
Upvotes: 0