您好,登錄后才能下訂單哦!
使用virtualbox 安裝兩臺(tái)虛擬機(jī)來搭建Puppet服務(wù)端和客戶端的測(cè)試環(huán)境。
系統(tǒng)版本: CentOS 7.6 64位
內(nèi)核版本: 3.10.0-957
puppetserver版本: 5.3.10-1.el7
puppet-agent版本: 5.5.17-1.el7
機(jī)器名/IP地址:
服務(wù)端: pp-master / 192.168.31.123
客戶端: pp-agent / 192.168.31.124
【準(zhǔn)備】
關(guān)閉防火墻和SELINUX
將2臺(tái)主機(jī)的IP和主機(jī)名添加到/etc/hosts里,確?;ハ嗫梢詐ing同對(duì)方的主機(jī)名
【安裝】
分別在pp-master,pp-agent下載并安裝puppet repo
rpm -ivh https://yum.puppetlabs.com/puppet5/puppet5-release-el-7.noarch.rpm
生成puppet repo的文件路徑 /etc/yum.repos.d/puppet5.repo
在pp-master上面安裝puppetserver和puppet
yum install puppetserver puppet -y
在pp-agent上面安裝puppet
yum install puppet -y
【配置】
puppet的配置文件 /etc/puppetlabs/puppet/puppet.conf
服務(wù)器端puppet.conf
默認(rèn)配置如下:
[master]
vardir = /opt/puppetlabs/server/data/puppetserver
logdir = /var/log/puppetlabs/puppetserver
rundir = /var/run/puppetlabs/puppetserver
pidfile = /var/run/puppetlabs/puppetserver/puppetserver.pid
codedir = /etc/puppetlabs/code
將如下main配置添加進(jìn)服務(wù)器端puppet.conf
[main]
certname = pp-master
server = pp-master
environment = production
runinterval = 10m
strict_variables = true
certname(證書名)和server(服務(wù)器名)都設(shè)置為 pp-master
environment(環(huán)境)默認(rèn)為production(生產(chǎn)環(huán)境)
runinterval(運(yùn)行間隔時(shí)間)設(shè)置為10分鐘
strict_variables(強(qiáng)制變量)設(shè)定為true
將如下main配置添加進(jìn)客戶端puppet.conf
[main]
certname = pp-agent
server = pp-master
environment = production
runinterval = 10m
證書名為本機(jī)hostname: pp-agent
服務(wù)器端為pp-master
環(huán)境默認(rèn)為production
運(yùn)行間隔時(shí)間為10分鐘
編輯hiera配置 /etc/puppetlabs/puppet/hiera.yaml
---
:backends:
- yaml
:yaml:
:datadir: "/etc/puppetlabs/code/environments/%{environment}/hieradata"
:hierarchy:
- "hosts/%{::trusted.certname}"
- common
:yaml:
# datadir is empty here, so hiera uses its defaults:
# - /etc/puppetlabs/code/environments/%{environment}/hieradata on *nix
# - %CommonAppData%\PuppetLabs\code\environments\%{environment}\hieradata on Windows
# When specifying a datadir, make sure the directory exists.
:datadir:
客戶端host配置存放在路徑/etc/puppetlabs/code/environments/production/hieradata/hosts/pp-agent
配置內(nèi)容:
---
classes:
- helloworld
首先定義一個(gè)叫helloworld的模塊用于測(cè)試
模塊目錄:
/etc/puppetlabs/code/environments/production/modules/helloworld
目錄下有3個(gè)目錄:
helloworld/
├── files
│ └── hw.txt
├── manifests
│ └── init.pp
└── templates
files和templates目錄下存放模板文件,該模板文件為hw.txt
manifests的init.pp文件用于定義模塊需要哪些資源和操作
init.pp
class helloworld {
file { '/tmp/hw.txt':
ensure => 'file',
source => 'puppet:///modules/helloworld/hw.txt',
mode => '0644',
owner => 'root',
group => 'root',
}
}
該模塊定義了一個(gè)helloworld的類,資源為file,其內(nèi)容為"Hello world!".
'/tmp/hw.txt' 為客戶端生成的文件路徑和名稱
ensure 定義該類型為文件,其他還有l(wèi)ink, directory, 或者可以定義為present和absent表示該文件存在或不存在
mode為文件權(quán)限644
owner文件所有者為root
group文件組為root
【服務(wù)】
啟動(dòng)服務(wù)器端服務(wù)
systemctl start puppetserver
systemctl start puppet
啟動(dòng)客戶端服務(wù)systemctl start puppet
客戶端執(zhí)行puppet agent -t 用戶拉取配置
服務(wù)器端需要對(duì)證書簽名,puppet cert sign --all
【測(cè)試】
客戶端執(zhí)行puppet agent -t 命令后,可以看到文件已經(jīng)生成
Notice: /Stage[main]/Helloworld/File[/tmp/hw.txt]/ensure: defined content as '{md5}59ca0efa9f5633cb0371bbc0355478d8'
Notice: Applied catalog in 0.60 seconds
至此,一個(gè)簡(jiǎn)單的Puppet CS環(huán)境搭建完成。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。