Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | 51CTO学院 | CSDN程序员研修院 | OSChina 博客 | 腾讯云社区 | 阿里云栖社区 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏多维度架构

第 26 章 Puppet

目录

26.1. Installing Puppet CentOS 6.3
26.2. Puppet 签名
26.2.1. Agent 节点
26.2.2. Master 服务器
26.3. test
26.3.1. Master
26.3.2. Agent
26.4. 配置文件
26.4.1. /etc/sysconfig/puppet
26.4.2. /etc/puppet/fileserver.conf
26.5. manifests
26.5.1. node
26.5.2. group, user 用户组管理
26.5.3. file
26.5.4. package
26.5.5. service
26.5.6. exec
26.5.7. cron
26.6. modules
26.7. firewall 配置
26.8. debug
26.8.1. master
26.8.2. node
26.9. FAQ
26.9.1. err: Could not request certificate: No route to host - connect(2)
26.9.2. No help available unless you have RDoc::usage installed

http://www.puppetlabs.com

Puppet is the leading open source platform for IT systems management

26.1. Installing Puppet CentOS 6.3

Choose a Package Source http://yum.puppetlabs.com/

# rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-7.noarch.rpm
# lokkit --disabled --selinux=disabled
		

Install the Puppet Master

yum install puppet-server -y
service puppetmaster start

chkconfig puppetmaster on
		

Install Puppet on Agent Nodes

yum install puppet -y
service puppet start

chkconfig puppet on