微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Ubuntu 16.04搭建puppet服务

Ubuntu 16.04搭建puppet服务:

Puppet是一种配置管理工具,可帮助系统管理员自动执行服务器基础架构的配置和管理。

一、安装软件

master:

curl -O https://apt.puppetlabs.com/puppetlabs-release-pc1-xenial.deb

dpkg -i puppetlabs-release-pc1-xenial.deb

apt-get update

apt-get install puppetserver

ln -s /opt/puppetlabs/bin/puppet /usr/bin/

systemctl start puppetserver

systemctl enable puppetserver

agent:

curl -O https://apt.puppetlabs.com/puppetlabs-release-pc1-xenial.deb

dpkg -i puppetlabs-release-pc1-xenial.deb

apt-get update

apt-get install puppet-agent

ln -s /opt/puppetlabs/bin/puppet /usr/bin/

systemctl start puppet

systemctl enable puppet

二、证书签名

agent:

vi /etc/hosts

10.0.0.2 puppet (puppet master服务器)
:wq

puppet agent -t

master:

puppet cert list

puppet cert sign puppeta.ming.com (根据上1步的显示

1次性部署所有请求:

puppet cert sign --all

三、推送验证

master:

vi /etc/puppetlabs/code/environments/production/manifests/site.pp

file {'/tmp/it_works.txt':
ensure => present,
mode => '0644',
content => "It works on ${ipaddress_eth0}!\n",
}
:wq

agent:

puppet agent -t

cat /tmp/it_works.txt

原文地址:https://www.jb51.cc/ubuntu/349265.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐