puppet使用rsync模块
OS : CentOS5.4 i686
puppet版本: 2.7.14
puppetmaster.manzuoinfo.com 192.168.0.12
puppet1.manzuoinfo.com 192.168.0.64
rsync server 192.168.0.12
同步需求简介:
需要把 rsync server 192.168.0.12 上的 /tmp/default 和 /tmp/test 目录 分别同步到 puppet1.manzuinfo.com 192.168.0.12 上的 /tmp/test1 下和/tmp/test。
点击(此处)折叠或打开
- [root@puppetmaster test]# cd /tmp/
- [root@puppetmaster tmp]# ls
- default test
- [root@puppetmaster tmp]# cd test
- /tmp/test
- [root@puppetmaster test]# ls -l
- total 4
- -rw-r--r-- 1 root root 0 Sep 22 17:32 10.txt
- -rw-r--r-- 1 root root 0 Sep 22 17:32 1.txt
- -rw-r--r-- 1 root root 0 Sep 22 17:32 2.txt
- -rw-r--r-- 1 root root 0 Sep 22 17:32 3.txt
- -rw-r--r-- 1 root root 0 Sep 22 17:32 4.txt
- -rw-r--r-- 1 root root 0 Sep 22 17:32 5.txt
- -rw-r--r-- 1 root root 0 Sep 22 17:32 6.txt
- -rw-r--r-- 1 root root 0 Sep 22 17:32 7.txt
- -rw-r--r-- 1 root root 0 Sep 22 17:32 8.txt
- -rw-r--r-- 1 root root 0 Sep 22 17:32 9.txt
- -rw-r--r-- 1 root root 17 Sep 22 17:32 test.txt
- [root@puppetmaster default]# pwd
- /tmp/default
- [root@puppetmaster default]# ls
- de.txt
一、下载安装rsync 模块
puppet 的rsync 模块在GitHub位置 https://github.com/onyxpoint/pupmod-rsync ,大家可以上去查看。
点击(此处)折叠或打开
- [root@puppetmaster ~]# cd /etc/puppet/modules/
- [root@puppetmaster modules]# git clone https://github.com/onyxpoint/pupmod-concat && mv pupmod-concat concat
- [root@puppetmaster modules]# git clone https://github.com/onyxpoint/pupmod-rsync && mv pupmod-rsync rsync
说明:我这里是使用git,如果机器没有安装,可以使用yum -y install git 来安装,如不想安装git可以下载zip压缩包.解压到相应目录.
注意:在server, clent 端都下载安装concat 和rsync 模块。
二、服务端配置文件
1). 新建node.pp
点击(此处)折叠或打开
- [root@puppetmaster manifests]# pwd
- /etc/puppet/manifests
- [root@puppetmaster manifests]# cat node.pp
- node 'puppetmaster.manzuoinfo.com' {
- include 'rsync::server'
- rsync::server::global { 'global':
- address => '192.168.0.12'
- }
- rsync::server::section { 'default':
- comment => 'The default file path',
- path => '/tmp/default',
- hosts_allow => '192.168.0.64'
- }
- rsync::server::section { 'test':
- # auth_users => 'testuser',
- comment => 'Test comment',
- path => '/tmp/test',
- hosts_allow => '192.168.0.64',
- outgoing_chmod => 'o-w'
- }
- }
- node 'puppet1.manzuoinfo.com' {
- include 'rsync'
- }
2). 新建modules.pp 载入rsync 模块
点击(此处)折叠或打开
- [root@puppetmaster manifests]# pwd
- /etc/puppet/manifests
- [root@puppetmaster manifests]# cat modules.pp
- import "rsync"
3). 把 node.pp modules.pp 包进site.pp
点击(此处)折叠或打开
- [root@puppetmaster test]# cat /etc/puppet/manifests/site.pp
- import 'node.pp'
- import 'modules.pp'
4). 测试配置文件
点击(此处)折叠或打开
- [root@puppetmaster manifests]# puppet agent --server=puppetmaster.manzuoinfo.com --test -v
- info: Caching catalog for puppetmaster.manzuoinfo.com
- info: /Stage[main]/Rsync/Tidy[/etc/rsync]: File does not exist
- info: Applying configuration version '1379830750'
- notice: /Stage[main]/Rsync/File[/etc/rsync]/ensure: created
- notice: /Stage[main]//Node[puppetmaster.manzuoinfo.com]/Rsync::Server::Section[default]/Concat_fragment[rsync+default.section]/content: content changed '' to '[default]
- comment = The default file path
- path = /home/sky
- use chroot = false
- max connections = 0
- max verbosity = 1
- lock file = /var/run/rsyncd.lock
- read only = true
- write only = false
- list = false
- uid = root
- gid = root
- outgoing chmod = o-w
- ignore nonreadable = true
- transfer logging = true
- log format = "%o %h [%a] %m (%u) %f %l"
- dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz *.rar *.jar *.pdf *.sar *.war
- hosts allow = 192.168.0.64
- hosts deny = *
- '
- notice: /Stage[main]//Node[puppetmaster.manzuoinfo.com]/Rsync::Server::Global[global]/Concat_fragment[rsync+global]/content: content changed '' to 'pid file = /var/run/rsyncd.pid
- syslog facility = daemon
- port = 873
- address = 192.168.0.12
- '
- notice: /Stage[main]//Node[puppetmaster.manzuoinfo.com]/Rsync::Server::Section[test]/Concat_fragment[rsync+test.section]/content: content changed '' to '[test]
- comment = Test comment
- path = /home/skywu
- use chroot = false
- max connections = 0
- max verbosity = 1
- lock file = /var/run/rsyncd.lock
- read only = true
- write only = false
- list = false
- uid = root
- gid = root
- outgoing chmod = o-w
- ignore nonreadable = true
- transfer logging = true
- log format = "%o %h [%a] %m (%u) %f %l"
- dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz *.rar *.jar *.pdf *.sar *.war
- hosts allow = 192.168.0.64
- hosts deny = *
- '
- notice: /Stage[main]/Rsync::Server/Concat_build[rsync]/target: global*.section used for ordering
- notice: /Stage[main]/Rsync::Server/File[/etc/rsyncd.conf]/mode: mode changed '0644' to '0400'
- notice: /Stage[main]/Rsync::Server/File[/etc/rsyncd.conf]/content: audit change: newly-recorded value {md5}2148062cf8d2f7220279fd0ca07b9329
- info: /Stage[main]/Rsync::Server/File[/etc/rsyncd.conf]: Scheduling refresh of Service[rsync]
- notice: /Stage[main]/Rsync::Server/Service[rsync]/ensure: ensure changed 'stopped' to 'running'
- err: /Stage[main]/Rsync::Server/Service[rsync]: Failed to call refresh: Could not stop Service[rsync]: Execution of '/bin/kill `cat \`grep "pid file" /etc/rsyncd.conf | cut -f4 -d' '\``' returned 1: at /etc/puppet/modules/rsync/manifests/server.pp:56
- info: Creating state file /var/lib/puppet/state/state.yaml
- notice: Finished catalog run in 2.70 seconds
- [root@puppetmaster manifests]#
注意:err: 这里出现了一个错误,请根据自己的情况来修改停止rsync,例如:
stop => "ps -ef | grep [r]sync |awk '{print $2}'|xargs kill -9",
5). 在server 端生成rsync配置
点击(此处)折叠或打开
- [root@puppetmaster manifests]# puppetd --test --server puppetmaster.manzuoinfo.com
- info: Caching catalog for puppetmaster.manzuoinfo.com
- notice: /Stage[main]/Rsync/Tidy[/etc/rsync]: Tidying File[/etc/rsync]
- info: /File[/etc/rsync]: Duplicate generated resource; skipping
- info: Applying configuration version '1379837152'
- notice: /Stage[main]//Node[puppetmaster.manzuoinfo.com]/Rsync::Server::Section[default]/Concat_fragment[rsync+default.section]/content: content changed '[default]
- comment = The default file path
- path = /home/sky
- use chroot = false
- max connections = 0
- max verbosity = 1
- lock file = /var/run/rsyncd.lock
- read only = true
- write only = false
- list = false
- uid = root
- gid = root
- outgoing chmod = o-w
- ignore nonreadable = true
- transfer logging = true
- log format = "%o %h [%a] %m (%u) %f %l"
- dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz *.rar *.jar *.pdf *.sar *.war
- hosts allow = 192.168.0.64
- hosts deny = *
- ' to '[default]
- comment = The default file path
- path = /tmp/default
- use chroot = false
- max connections = 0
- max verbosity = 1
- lock file = /var/run/rsyncd.lock
- read only = true
- write only = false
- list = false
- uid = root
- gid = root
- outgoing chmod = o-w
- ignore nonreadable = true
- transfer logging = true
- log format = "%o %h [%a] %m (%u) %f %l"
- dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz *.rar *.jar *.pdf *.sar *.war
- hosts allow = 192.168.0.64
- hosts deny = *
- '
- notice: /Stage[main]//Node[puppetmaster.manzuoinfo.com]/Rsync::Server::Section[test]/Concat_fragment[rsync+test.section]/content: content changed '[test]
- comment = Test comment
- path = /home/skywu
- use chroot = false
- max connections = 0
- max verbosity = 1
- lock file = /var/run/rsyncd.lock
- read only = true
- write only = false
- list = false
- uid = root
- gid = root
- outgoing chmod = o-w
- ignore nonreadable = true
- transfer logging = true
- log format = "%o %h [%a] %m (%u) %f %l"
- dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz *.rar *.jar *.pdf *.sar *.war
- hosts allow = 192.168.0.64
- hosts deny = *
- ' to '[test]
- comment = Test comment
- path = /tmp/test
- use chroot = false
- max connections = 0
- max verbosity = 1
- lock file = /var/run/rsyncd.lock
- read only = true
- write only = false
- list = false
- uid = root
- gid = root
- outgoing chmod = o-w
- ignore nonreadable = true
- transfer logging = true
- log format = "%o %h [%a] %m (%u) %f %l"
- dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz *.rar *.jar *.pdf *.sar *.war
- hosts allow = 192.168.0.64
- hosts deny = *
- '
- notice: /Stage[main]/Rsync::Server/Concat_build[rsync]/target: global*.section used for ordering
- notice: /Stage[main]/Rsync::Server/File[/etc/rsyncd.conf]/mode: mode changed '0644' to '0400'
- notice: /Stage[main]/Rsync::Server/File[/etc/rsyncd.conf]/content: audit change: previously recorded value {md5}2148062cf8d2f7220279fd0ca07b9329 has been changed to {md5}8063eb4c3129b055fb0106eb2cfd7912
- info: /Stage[main]/Rsync::Server/File[/etc/rsyncd.conf]: Scheduling refresh of Service[rsync]
- info: /Stage[main]/Rsync::Server/File[/etc/rsyncd.conf]: Scheduling refresh of Service[rsync]
- notice: /Stage[main]/Rsync::Server/Service[rsync]/ensure: ensure changed 'stopped' to 'running'
- notice: /Stage[main]/Rsync::Server/Service[rsync]: Triggered 'refresh' from 2 events
- notice: Finished catalog run in 3.66 seconds
注意:/etc/rsyncd.conf 是生成的,而不是手动创建的。
内容如下:
点击(此处)折叠或打开
- [root@puppetmaster manifests]# cat /etc/rsyncd.conf
- pid file = /var/run/rsyncd.pid
- syslog facility = daemon
- port = 873
- address = 192.168.0.12
- [default]
- comment = The default file path
- path = /tmp/default
- use chroot = false
- max connections = 0
- max verbosity = 1
- lock file = /var/run/rsyncd.lock
- read only = true
- write only = false
- list = false
- uid = root
- gid = root
- outgoing chmod = o-w
- ignore nonreadable = true
- transfer logging = true
- log format = "%o %h [%a] %m (%u) %f %l"
- dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz *.rar *.jar *.pdf *.sar *.war
- hosts allow = 192.168.0.64
- hosts deny = *
- [test]
- comment = Test comment
- path = /tmp/test
- use chroot = false
- max connections = 0
- max verbosity = 1
- lock file = /var/run/rsyncd.lock
- read only = true
- write only = false
- list = false
- uid = root
- gid = root
- outgoing chmod = o-w
- ignore nonreadable = true
- transfer logging = true
- log format = "%o %h [%a] %m (%u) %f %l"
- dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz *.rar *.jar *.pdf *.sar *.war
- hosts allow = 192.168.0.64
- hosts deny = *
- [root@puppetmaster manifests]#
6). 启动rsync 服务
点击(此处)折叠或打开
- [root@puppetmaster manifests]# /etc/init.d/xinetd restart
- Stopping xinetd: [ OK ]
- Starting xinetd: [ OK ]
- [root@puppetmaster manifests]# ps -ef | grep rsync
- root 13227 1 0 16:16 ? 00:00:00 /usr/bin/rsync --daemon --config=/etc/rsyncd.conf
- root 13266 3142 0 16:19 pts/0 00:00:00 grep rsync
7). 客户端需要执行rsync类中,我们编辑puppetmaster上的代码文件,添加default 和test。
点击(此处)折叠或打开
- [root@puppetmaster manifests]# vim /etc/puppet/modules/rsync/manifests/init.pp
- class rsync {
- package { "rsync": ensure => "latest" }
- # This define provides a useful abstraction for common rsync client side
- # activities.
- exec { "rsync_stub":
- command => "/bin/true",
- refreshonly => true
- }
- file { '/etc/rsync':
- ensure => 'directory',
- owner => 'root',
- group => 'root',
- mode => '750'
- }
- tidy { '/etc/rsync':
- size => "0b",
- recurse => 'true',
- rmdirs => 'true'
- }
- rsync { 'default':
- source => 'default',
- target => '/tmp/test1',
- server => '192.168.0.12'
- }
- rsync { 'test':
- source => 'test',
- target => '/tmp/test',
- server => '192.168.0.12'
- }
- }
三、puppet1 客户端测试
点击(此处)折叠或打开
- [root@puppet1 tmp]# puppetd --test --server puppetmaster.manzuoinfo.com
- info: Caching catalog for puppet1.manzuoinfo.com
- notice: /Stage[main]/Rsync/Tidy[/etc/rsync]: Tidying File[/etc/rsync]
- info: /File[/etc/rsync]: Duplicate generated resource; skipping
- info: Applying configuration version '1379841152'
- notice: /Stage[main]/Rsync/Rsync[test]/do: executed successfully
- notice: Finished catalog run in 0.75 seconds
- 或者用命令:
- [root@puppet1 tmp]# puppet agent --test --server puppetmaster.manzuoinfo.com
点击(此处)折叠或打开
- [root@puppet1 test1]# pwd
- /tmp/test1
- [root@puppet1 test1]# ls
- de.txt
- [root@puppet1 test]# pwd
- /tmp/test
- [root@puppet1 test]# ls -l
- total 4
- -rw-r--r-- 1 root root 0 Sep 23 11:42 10.txt
- -rw-r--r-- 1 root root 0 Sep 23 11:42 1.txt
- -rw-r--r-- 1 root root 0 Sep 23 11:42 2.txt
- -rw-r--r-- 1 root root 0 Sep 23 11:42 3.txt
- -rw-r--r-- 1 root root 0 Sep 23 11:42 4.txt
- -rw-r--r-- 1 root root 0 Sep 23 11:42 5.txt
- -rw-r--r-- 1 root root 0 Sep 23 11:42 6.txt
- -rw-r--r-- 1 root root 0 Sep 23 11:42 7.txt
- -rw-r--r-- 1 root root 0 Sep 23 11:42 8.txt
- -rw-r--r-- 1 root root 0 Sep 23 11:42 9.txt
- -rw-r--r-- 1 root root 17 Sep 23 11:42 test.txt
在客户端查看/tmp/test 和 /tmp/test1 目录及文件已经同步过来了。
参考文档:http://www.mysqlops.com/2012/02/20/puppet-rsync.html
puppet使用rsync模块的更多相关文章
- puppet使用rsync模块同步目录和文件
puppet使用rsync模块同步目录和文件 2013-09-23 14:28:57 分类: LINUX 环境说明: OS : CentOS5.4 ...
- Puppet主机、模块、类、资源、变量、参数、标签命名规范
Puppet命名规范: 约定说明: 小写字母:"a-z" 大写字母:"A-Z" 数字: "0-9" 句号: "." 下划 ...
- puppet工作原理之模块使用
一.模块介绍 1.什么是模块 通常情况把manifest文件分解成易于理解得结构,例如类文件,配置文件分类存放,并通过某种机制整合使用,这种机制就是模块,有助于结构化.层次化的方式使用puppet,p ...
- 自动化运维工具之Puppet模块
前文我们了解来puppet的变量.流程控制.正则表达式.类和模板的相关话题,回顾请参考https://www.cnblogs.com/qiuhom-1874/p/14079208.html:今天我们来 ...
- Puppet
一个完整的自动化运维包括系统安装.配置管理.服务监控三个方面.那今天咱们大家一起来学习一下Puppet实际运维中的案例.仅供参考,欢迎大家提更多的意见! 一.应用背景 某公司新到500台服务器,需要安 ...
- Puppet的搭建和应用
Puppet的部署与应用 1. 案例概述 作为一名系统管理员,维护服务器正常运行是最基本的职责,在管理几台到几十台服务器时,大部分管理员喜欢自己写小工具来维护,但随着服务器的数量曾多,任务量也逐渐增多 ...
- puppet自动化运维
Puppet实现自动化运维 一.案例分析 1.案例概述: 随着服务器数量的增多,系统管理员任务量也逐渐增加,这时就需要简洁的.强大的框架来完成系统管理任务为实现这一目的,我们将引入一批工具,这批工具是 ...
- Puppet全面详解
1. 概述 puppet是一个开源的软件自动化配置和部署工具,它使用简单且功能强大,正得到了越来越多地关注,现在很多大型IT公司均在使用puppet对集群中的软件进行管理和部署,如google利用p ...
- 运维自动化工具---Puppet
案例环境:-----------------------------------------------------------------主机 操作系统 IP地址 主要软件--------- ...
随机推荐
- Delphi XE2 之 FireMonkey 入门(43) - 控件基础: TStringGrid、TGrid
Delphi XE2 之 FireMonkey 入门(43) - 控件基础: TStringGrid.TGrid TStringGrid.TGrid 都是从 TCustomGrid 继承; 区别有:1 ...
- httpd启动显示Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName'
AH00557: httpd: apr_sockaddr_info_get() failed for masterAH00558: httpd: Could not reliably determin ...
- 测开之路一百二十五:flask之urlencode参数传递和解析
当get请求传参时,用?分隔参数和域名,用&分隔参数,如果参数里面本身就有&符号就会识别不出来,还是会当成分隔符,所以这些数据在传输的时候,就需要转义,现在普遍是转成urlencode ...
- fiddler之编辑请求(composer)-发包
在需要针对接口进行发包操作时,可以使用composer标签,去编辑请求内容,进行请求. 界面显示如下: 1.Parsed 在该分页中,选择请求方法.设置请求地址和协议版本,上部分为请求的头信息.下半部 ...
- 【漏洞学习】slowHTTPtest 慢速 DOS 攻击方法 修复方案
日期:2018-05-28 21:41:59 更新:2019-07-05 23:15:21 作者:Bay0net 介绍:学习一下 slowHTTPtest 的攻击及防御. 0x01. 安装 下载链接 ...
- JVM监控工具之JProfiler
一.简介 JProfiler是一款Java的性能监控工具.可以查看当前应用的对象.对象引用.内存.CPU使用情况,线程运行情况(阻塞.等待等),同时可以查找哪个对象占用的内存比较多.哪个对象占用CPU ...
- 正则表达式断言(Assertions)
一 零宽正向先行断言 x(?=y) 仅匹配被y跟随的x. const regExp = /Jack(?=Sparrow|Dawson)/g; const str = 'JackJones JackSp ...
- text获取元素的文本
1断言 代码 # -*-coding:utf-8-*-from selenium import webdriverimport time as tdriver = webdriver.Chrome() ...
- Redis为什么不能使用一主一从哨兵
哨兵机制 识别挂掉的主节点 quorum(法定人数) 是判定主节点不能访问所需要的最少哨兵数量 执行失效备援perform a failover 其中一个哨兵需要被选为救援的领导,并被授权执行救援,而 ...
- windows10下安装pygame并验证成功
首先要确保网络正常 py -m pip install --upgrade pip python -m pip install pygame --user 然后进行验证: py -m pygame.e ...