lshboo 发表于 2018-8-2 12:08:09

puppet客户端认证

  测试解析与puppetmaster端口是否畅通
  telnet server.puppet.com 8140
  如果不通,可以把server.puppet.com换成服务端的IP地址试试
  Connection closed by foreign host
  出现上面的提示,说明是通的
  在客户端执行命令:puppetd --test --server server.puppet.com
  # puppetd --test --server server.viong.com命令是指puppetd 从 server.viong.com去读取
  puppet配置文件. 第一次连接,双方会进行ssl证书的验证,这是一个新的客户端,在服务器端那里还没有被认证,因此需要在服务器端进行证书认证
  以下这步批准证书是在服务端操作
  查看当前待批准证书列表
  # puppetca –l
  server.log.com (B0:85:72:E6:7D:63:EA:CC:BD:0C:E4:F1:70:89:24:70)
  批准当前证书
  # puppetca -s server.log.com
  notice: Signed certificate request for server.log.com
  notice: Removing file Puppet::SSL::CertificateRequest server.log.com at
  '/var/lib/puppet/ssl/ca/requests/client1.viong.com.pem'
  查看验证签名,注意前面的+号,说明已经签名
  # puppetca -a --list
  + server.viong.com (43:33:D3:A0:26:C4:E9:89:66:A6:DC:54:20:90:E9:4D) (alt names:
  DNS:puppet, DNS:puppet.viong.com, DNS:server.viong.com)
  --------------------------------------------------------------------------------------------------
  如果要批准全部证书
  puppetca -s -a
  也可以在puppetmaster端的puppet.conf加入这行:
  autosign = true
  服务端就自动签证书
  回到客户端操作,从服务端取回已批准的证书
  # puppetd --test --server server.viong.com
  warning: peer certificate won't be verified in this SSL session
  info: Caching certificate for client1.viong.com
  info: Caching certificate_revocation_list for ca
  info: Caching catalog for client1.viong.com
  info: Applying configuration version '1338897814'
  info: Creating state file /var/lib/puppet/state/state.yaml
  notice: Finished catalog run in 0.02 seconds
  验证证书是否正确
  服务端:
  # md5sum /var/lib/puppet/ssl/ca/signed/client1.viong.com.pem
  8529a6f2d42c1b492c016fe870b744b6 /var/lib/puppet/ssl/ca/signed/client1.viong.com.pem
  客户端:
  # md5sum /var/lib/puppet/ssl/certs/client1.viong.com.pem
  8529a6f2d42c1b492c016fe870b744b6 /var/lib/puppet/ssl/certs/client1.viong.com.pem
  ------------------------------------------------------------------------------------------------
  出现修改主机名问题引起无法认证,需要重新申请证书,操作以下两个步骤:
  服务端:
  # rm -rf /var/lib/puppet/ssl/ca/signed/client1.viong.com.pem
  客户端:
  # rm -rf /var/lib/puppet/ssl/
  ------------------------------------------------------------------------------------------------
  功能测试
  服务端:
  建立pp文件测试
  puppet的第一个执行的代码是在/etc/puppet/manifest/site.pp
  因此这个文件必须存在,而且其他的代码也要通过代码来调用.
  # vim /etc/puppet/manifests/site.pp
  node default {
  file {"/tmp/viong.txt":
  content=>"good,test pass!\n";}
  上面的代码对默认连入的puppet客户端执行一个操作,在/tmp目录生成一个viong.txt文件,内容是good,test pass! 并自动回车换行
  初次创建pp文件,需要重启puppetmaster
  # service puppetmaster restart
  停止 puppetmaster:                                        [确定]
  启动 puppetmaster:                                        [确定]
  客户端:
  # puppetd --test --server server.puppet.com
  info: Caching catalog for client1.viong.com
  info: Applying configuration version '1338897814'
  notice: /Stage//Node/File/ensure: defined content as '{md5}9a3f5438e1d35a72d853974203de4254'
  notice: Finished catalog run in 0.03 seconds
  成功的话就会显示puppet反馈一些调试信息,并在/tmp目录下创建了 /tmp/viong.txt文件.
  # cat /tmp/viong.txt
  good,test pass!
  ==============================================================
  设置客户端的守护进程
  # puppetd --test --server server.puppet.scom --verbose --waitforcert 100
  info: Caching catalog for client1.viong.com
  info: Applying configuration version '1338897814'
  notice: Finished catalog run in 0.03 seconds
  --server 服务端FQDN –-verbose 输出冗余信息 –-waitforcert 超时100
页: [1]
查看完整版本: puppet客户端认证