标签:site lin cert 配置 执行 需要 gen 两台 防火墙
os centos7.6
puppet version: 3.6.2
两台机器:s0是master,s1是agent
安装前准备:
准备好yum源,关闭selinux和防火墙,puppet master上防火墙需要开启tcp 8140端口
s0安装 yum install puppet-master puppet facter
s1: yum install puppetagent puppet facter
安装完毕后,
s0创建站点文件,编辑配置文件
touch /data/puppet/test_site.pp
vim /etc/puppet/puppet.conf,添加以下内容:
[agent]模块下添加内容:
server = s0
certname = cert.s0
添加[master]模块,编辑下列内容
[master]
certname = s0
s1修改/etc/puppet/puppet.conf
[agent]下添加
server = s0
certname = cert.s1
申请证书:
s1执行 puppet agent -t
标签:site lin cert 配置 执行 需要 gen 两台 防火墙
原文地址:https://www.cnblogs.com/ValyrianSteel/p/12938014.html