运维工具


Puppet安装配置
获取所支持的所有资源类型:
资源
[root@localhost ~]# cd manifests/
[root@localhost manifests]# vim test.pp
group{'distro':
gid => 2000,
ensure => present,
before => User['redhat'],
}
user{'redhat':
uid => '2000',
gid => '2000',
shell => '/bin/bash',
home => '/bin/redhat',
ensure => present,
require => Group['ditro'],
}
[root@localhost manifests]# puppet apply -v test.pp
Notice: Compiled catalog for localhost.lan in environment production in 0.22 seconds
Info: Applying configuration version '1493142235'
Notice: /Stage[main]/Main/Group[distro]/ensure: created
Notice: /Stage[main]/Main/User[redhat]/ensure: created
Info: Creating state file /var/lib/puppet/state/state.yaml
Notice: Finished catalog run in 0.10 seconds
[root@localhost manifests]# tail /etc/passwd|grep redhat
redhat:x:2000:2000::/bin/redhat:/bin/bash
file{'/tmp/mydir':
ensure => directory,
}
file{'/tmp/puppet.file':
content => 'puppet testing',
ensure => file,
mode => 0600,
owner => root,
group => root,
}
file{'/tmp/fstab.puppet':
source => '/etc/fstab',
ensure => file,
}
file{'/tmp/puppet.link':
ensure => link,
target => '/tmp/puppet.file'
}
[root@localhost manifests]# puppet apply -v file.pp
Notice: Compiled catalog for localhost.lan in environment production in 0.08 seconds
Info: Applying configuration version '1493144452'
Notice: /Stage[main]/Main/File[/tmp/fstab.puppet]/ensure: defined content as '{md5}03e599f455aed424ce17656764437a96'
Notice: /Stage[main]/Main/File[/tmp/mydir]/ensure: created
Notice: /Stage[main]/Main/File[/tmp/puppet.file]/ensure: defined content as '{md5}1049fff3799b9ec7da193d9eb36ae32e'
Notice: /Stage[main]/Main/File[/tmp/puppet.link]/ensure: created
Notice: Finished catalog run in 0.05 seconds
<4>exec:
exec{'/etc/init.d/httpd start':
user => root,
group => root,
path => '/usr/bin',
refresh => 'lsof -i :80 && /etc/init.d/httpd start',
timeout => 10,
tries => 2,
}
cron{'cron time':
command => '/usr/sbin/ntpdate ntp.sjtu.edu.cn',
user => 'root',
hour => ['2-5'],
minute => '*/10',
}
notify{"hello,world":
}
package{'nmap':
ensure => latest,
provider => yum,
}
package{'zsh':
ensure => installed,
source => '/usr/local/src/zsh-4.3.10-7.el6.x86_64.rpm',
provider => rpm,
}
[root@localhost manifests]# puppet apply -v packages.pp
Notice: Compiled catalog for localhost.lan in environment production in 0.24 seconds
Info: Applying configuration version '1493154486'
Notice: /Stage[main]/Main/Package[zsh]/ensure: created
Notice: /Stage[main]/Main/Package[nmap]/ensure: created
Notice: Finished catalog run in 9.46 seconds
<8>service
package{"nginx":
ensure => latest,
}
service{"nginx":
ensure => running,
enable => true,
hasrestart => true,
hasstatus => true,
restart => '/etc/init.d/nginx reload',
}
[root@localhost manifests]# puppet apply service.pp -v
Notice: Compiled catalog for localhost.lan in environment production in 0.36 seconds
Info: Applying configuration version '1493155762'
Notice: /Stage[main]/Main/Package[nginx]/ensure: created
Notice: /Stage[main]/Main/Service[nginx]/ensure: ensure changed 'stopped' to 'running'
Info: /Stage[main]/Main/Service[nginx]: Unscheduling refresh on Service[nginx]
Notice: Finished catalog run in 52.73 seconds
group{'distro':
gid => 2000,
ensure => present,
before => User['redhat'], ##依赖方式1 :该资源必须先于 redhat 存在
} -> ##依赖方式2:链式执行
user{'redhat':
uid => '2000',
gid => '2000',
shell => '/bin/bash',
home => '/bin/redhat',
ensure => present,
require => Group['ditro'], ##依赖方式3: 该资源需要ditro资源先运行
}
notify和subscribe是其他文件改变去执行某个动作。用在改变了配置文件就重启最好。
file{'/etc/nginx/conf.d/default.conf':
ensure => file,
mode => 644,
source => '/etc/nginx/conf.d/default.conf',
notify => Service['nginx'],
}
service{'nginx':
ensure => running,
enable => true,
hasstatus => true,
hasrestart => true,
}
变量
puppet的变量都是以$开头
puppet复制符号 =
Top scope(全局有效的变量),Node scope(仅在节点有效),Class scope(在类中有效)
puppet的变量名称必须有两个名字,简短名称和长格式名称
puppet语言支持多种数据类型以用于变量和属性的值,以及函数的参数。
字符型:
1.非结构化的字符串,可以使用引号也可以不使用
2.单引号中的变量不会替换,而双引号中的能够进行变量替换
3.字符型值也支持使用转义
数组:
1.数组值为中括号[]中以逗号分隔的项目列表,最后一个项目后面可以有逗号。
2.数组中的元素可以为任意可用数据类型,包括hash或其他数组
3.数组引索以0开始,也可以使用负数
布尔型:
1.true和false
undef:
1.从未声明的变量的值为undef。
2.也可手动为某变量赋予undef,
hash:
1.键值对定义在{}中,彼此使用逗号分隔。{'1' => 'red','2' => 'blue','3' => 'yellow'}
正则表达式:
不能复制给变量,仅能用于有限的几个接收正则的地方。
(?<ENABLED OPTION>:<SUBPATTERN>)和(?-<ENABLED OPTION>:<SUBPATTERN>)
OPTION:
i:忽略字符的大小写
m:把.当换行符
x:忽略模式中的空白和注释
表达式:
and or !,+,-,*,/,%,>>,<<
puppet中的变量
自定义变量
facter变量,可直接引用:(主机的环境)
facter -p去查看
客户端内置
$clientcert
$clientversion
服务器端内置
$servername
$serverip
$serverversion
条件判断
if,case,selector
if例子:(因为selinux是facter中的变量)
if $selinux == 'true'{
notice("SeLinux on")
}
else{
notice("SeLinux off")
}
根据Linux 的发行版本去改变欢迎语
if $operatingsystem =~ /^(?i-mx:(centos|redhat))/ {
notice("Welcome ro $1 Linux server")
}
case例子
case $operatingsystem {
'Solaris': {notice("Welcome to Solaris")}
'CentOS','redhat': {notice("Welcome to RedHat OSFamly")}
/^(Debian|Ubuntu)$/: {notice("Welcome to $1 Linux")}
default: {notice("Not Welcome Windows")}
}
case后面可以跟字符串,变量,有返回值的函数等等。
selector直接返回一个值,和case类似。但不是去执行一个代码块,常用作变量赋值
$webserver = $operatingsystem ? {
/(?i-mx:ubuntu|debian)/ => 'apache2',
/(?i-mx:centos|redhat)/ => 'httpd',
}
类:Class
}
}
class nginx {
$webserver=nginx
package{$webserver:
ensure => latest,
}
file{'/etc/nginx/conf.d/default.conf':
ensure => file,
mode => 644,
source => '/etc/nginx/conf.d/default.conf',
require => Package['nginx'],
notify => Service['nginx'],
}
service{'nginx':
ensure => running,
enable => true,
hasstatus => true,
hasrestart => true,
}
}
include nginx
}
class nginx($webserver=nginx) {
package{$webserver:
ensure => latest,
}
.......
}
include nginx
class nginx {
package{'nginx':
ensure => latest,
} ->
service{'nginx':
enable => true,
ensure => running,
hasrestart => true,
hasstatus => true,
restart => 'service nginx reload',
}
}
class nginx::webserver inherits nginx{
file{'/etc/nginx/nginx.conf':
source => '/root/modules/nginx/files/nginx_web.conf',
ensure => file,
notify => Service['nginx'],
}
}
class nginx::proxy inherits nginx {
file{'/etc/nginx/nginx.conf':
source => '/root/modules/nginx/files/nginx_proxy.conf',
ensure => file,
notify => Service['nginx'],
}
}
include nginx::webserver
子类的重写
class nginx {
package{'nginx':
ensure => latest,
} ->
service{'nginx':
enable => true,
ensure => running,
hasrestart => true,
restart => 'service nginx reload',
}
}
class nginx::webserver inherits nginx{
Package['nginx'] {
name => httpd,
}
file{'/etc/nginx/nginx.conf':
source => /root/modules/nginx/files/nginx_web.conf,
ensure => file,
notify => Service['nginx'],
}
}
include webserver
模板:
.....
file{'/etc/nginx/nginx.conf':
content => template('/root/modules/nginx/files/nginx_web.conf'),
ensure => file,
notify => Service['nginx'],
}
......
模块:
[root@localhost puppet]# ls
auth.conf modules puppet.conf
[root@localhost puppet]# mkdir -pv /etc/puppet/modules/nginx/{manifests,files,templates,tests,lib,spec}
mkdir: created directory `/etc/puppet/modules/nginx'
mkdir: created directory `/etc/puppet/modules/nginx/manifests'
mkdir: created directory `/etc/puppet/modules/nginx/files'
mkdir: created directory `/etc/puppet/modules/nginx/templates'
mkdir: created directory `/etc/puppet/modules/nginx/tests'
mkdir: created directory `/etc/puppet/modules/nginx/lib'
mkdir: created directory `/etc/puppet/modules/nginx/spec'
[root@localhost puppet]# puppet module list
/etc/puppet/modules
└── nginx (???)
/usr/share/puppet/modules (no modules installed)