Puppet资源管理

简介:
 
  1. Puppet常用资源:  
  2.  
  3. 常用的资源主要有以下几个:  
  4.  
  5. file:主要负责管理文件  
  6.  
  7. package:软件包的安装管理   
  8.  
  9. service:系统服务的管理     
  10.  
  11. cron:配置自动任务计划    
  12.  
  13. exec:远程执行运行命令  
  14.  
  15. 更多资源详细资料,可参见:http://puppet.wikidot.com  
  16.  
  17. 写一个默认配置:vi  /etc/puppet/manifests/site.pp  
  18.  

一、File资源:

 
  1. file {  
  2.  "/tmp/test.txt":  
  3.  content => "hello";  
  4.   }  
  5.  
  6. 意思是在/tmp新建一个test.text文件,文件内容为hello。  
  7.  

二、Package资源:

 
  1. package {  
  2.  
  3.  ["screen","ntp"]:  
  4.  ensure => "installed";  
  5.  
  6.  "pppoe":  
  7.  ensure => "absent";  
  8.   }  
  9.  
  10. 定义的意思是yum install screen 和ntp服务,并且卸载pppoe安装包。  
  11.  

三、Service资源:

 
  1. service {    
  2.  "sshd":    
  3.  ensure => running;    
  4.  "nfs":    
  5.  ensure => stopped;    
  6.    
  7.   }    
  8.    
  9. 意思是定义启动sshd服务,停止nfs服务。 

四、 Cron资源:

 
  1. cron{  
  2.  "ntpdate":  
  3.   command => "/usr/sbin/ntpdate pool.ntp.org",  
  4.   user => root,  
  5.   hour => 0,  
  6.   minute => 0,  
  7.   }  
  8.  
  9. 意思是在客户端写入一个计划任务:0 0  * * *  /usr/sbin/ntpdate pool.ntp.org 自动同步时间!  
  10.  

五、向客户端推送本地脚本:

 
  1. 首先修改vi /etc/puppet/fileserver.conf 文件,添加如下三行:  
  2.  
  3. [files]  
  4. path  /etc/puppet/files  
  5. allow *  
  6.  
  7. 然后cp所需要的脚本到 /etc/puppet/files目录,没有这个目录则新建!  
  8.  
  9. file {  
  10.    "/tmp/nginx_install.sh":  
  11.    source => "puppet://master.puppet.com/files/nginx_install.sh",  
  12.    group => root,  
  13.    owner => root,  
  14.    mode => "755"  
  15. }   
  16.  
  17. 意思是把 /etc/puppet/files/nginx_install.sh这个脚本推送到客户端的/tmp/下!  
  18.  

六、Exec远程执行脚本:

如第五步,我们把nginx_install.sh推送过去后,这时候我们就可以执行了如下:

 
  1. exec {  
  2.   "/tmp/nginx_install.sh":  
  3.   cwd => "/tmp",  
  4.   user => root,  
  5.   path => ["/usr/bin","/usr/sbin","/bin","/bin/sh"],  
  6.   }  
  7.  

这样的配置后,你可以在客户端测试,测试结果已经自动安装完nginx!如下结果

 
  1. [root@master tmp]# puppetd --server=master.puppet.com --test  
  2. info: Caching catalog for master.puppet.com  
  3. info: Applying configuration version '1337450399'  
  4. notice: /Stage[main]//Node[default]/Exec[/tmp/nginx_install.sh]/returns: executed successfully  
  5. notice: Finished catalog run in 49.96 seconds  
  6.  
  7. 但是这里有个地方需要注意,这每次同步都会执行这个脚本,所以我们要设置一个参数,如果nginx_install.sh有更新才执行:  
  8.  
  9. exec {  
  10.   "/tmp/nginx_install.sh":  
  11.   cwd => "/tmp",  
  12.   user => root,  
  13.   path => ["/usr/bin","/usr/sbin","/bin","/bin/sh"],  
  14.  
  15.   subscribe => File["/tmp/nginx_install.sh"],  
  16.  
  17.   refreshonly => true;   
  18.     
  19.   }  
  20.  

七、执行命令:

 
  1. ###更新sysctl.conf  
  2.        file { "/etc/sysctl.conf":  
  3.    source =>     "puppet://master.puppet.com/files/sysctl.conf",  
  4.        owner => "root",  
  5.        group => "root",  
  6.        mode => 644,  
  7.         }  
  8.     
  9.  
  10. exec {  
  11.       "sysctl refresh kernel config":  
  12.        path => ["/usr/bin", "/usr/sbin", "/bin", "/sbin"],  
  13.        command  => "/sbin/sysctl -p",  
  14.        subscribe => File["/etc/sysctl.conf"],  
  15.        refreshonly => true  
  16.      }  
  17.  

有更新才在客户端执行!如果没有更新则不执行!




本文转自 freeterman 51CTO博客,原文链接:http://blog.51cto.com/myunix/1104197,如需转载请自行联系原作者

相关文章
|
29天前
|
运维 Linux Apache
Puppet 作为一款强大的自动化运维工具,被广泛应用于配置管理领域。通过定义资源的状态和关系,Puppet 能够确保系统始终处于期望的配置状态。
Puppet 作为一款强大的自动化运维工具,被广泛应用于配置管理领域。通过定义资源的状态和关系,Puppet 能够确保系统始终处于期望的配置状态。
50 3
|
安全 Linux 网络协议
puppet yum模块、配置仓储、mount模块
转载:http://blog.51cto.com/ywzhou/1577335 作用:自动为客户端配置YUM源,为使用yum安装软件包提供便捷。 1、服务端配置yum模块 (1)模块清单 [root@puppet ~]# tree /etc/puppe...
1113 0
|
网络协议 安全 网络安全
|
Perl 存储 数据挖掘

推荐镜像

更多