Centos 7 Puppet Enterprise安装 - 4433端口连接被拒绝

时间:2017-06-21 08:56:51

标签: centos puppet firewall puppet-enterprise

由于以下错误,Centos 7上的Puppet Enterprise安装失败:

" 2017-06-21 07:11:41,242 - [错误]:无法应用目录:拒绝连接 - 连接(2)for" abc.xyz.com"港口4433"

我已完成以下步骤:

  1. 安装firewalld:yum install firewalld

  2. 启动firewalld服务:sudo systemctl start firewalld.service

  3. 获取防火墙区域:firewall-cmd --get-active-zones - >这没有任何回报

  4. 将端口4433添加到公共区域:

  5. firewall-cmd --zone = public --add-port = 4433 / tcp --permanent - >这确实回归了'#34;成功"消息

    1. 重新加载:firewall-cmd --reload

    2. 搜索4433端口:netstat -tulpn | grep 4433 - >这没有任何回报

    3. 检查端口4433:curl -v abc.xyz.com:4433 - >这仍然回归"连接被拒绝"错误。

    4. 我在这里缺少什么?

1 个答案:

答案 0 :(得分:0)

我遇到的问题是当我尝试使用网络控制台" https://abc.xyz.com:3000"进行安装时。通过使用pe.conf文件进行安装解决了该问题。

{
  "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
}