Puppet批量管理Nginx服务器

简介:

开发环境和测试环境均是CentOS6.4 x86_64,ngxin的模板文件是在puppet模块下面templates目录中以”.erb”结尾的文件,puppet模板主要用于文件,例如各种服务的配置文件,相同的服务,不同的配置就可以考虑使用模板文件,例如Nginx和Apache的虚拟主机配置就可以考虑采用ERB模板,nginx的安装在这里建议用第三方yum源来安装,如果是用Nginx的官方源来安装nginx的话,我们可以查看下/etc/yum.repos.d/nginx.repo文件内容,如下所示:

1
2
3
4
5
[nginx]
name=nginx repo
baseurl=http: //nginx .org /packages/centos/ $releasever/$basearch/
gpgcheck=0
enabled=1

第二种方式就是通过createrepo自建自己的YUM源,这种方式更加宁活,我们可以在nginx官网去下载适合自己的rpm包,然后添加进自己的YUM源,在自动化运维要求严格的定制环境中,绝大多数运维同学都会选择这种方法。大家通过此种方式安装nginx以后会发现,确实比源码安装Nginx方便多了,像自动分配了运行nginx的用户nginx:nginx,Nginx的日志存放会自动保存在/var/log/nginx下,其工作目录为/etc/nginx,这一点跟源码编译安装的nginx区别很大,请大家在实验过程也注意甄别。

我比较关心的是ruby的版本和puppet的版本,结果显示如下:

1
2
3
4
[root@server manifests] # ruby -v
ruby 1.8.7 (2013-06-27 patchlevel 374) [x86_64-linux]
[root@server manifests] # puppet -V
3.7.4

像Puppet的安装和其它初级知识点我这里就略过了,我直接贴上文件内容,/etc/puppet的文件结构如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|-- auth.conf
|-- fileserver.conf
|-- manifests
|   |-- nodes
|   |   |-- client.cn7788.com.pp
|   |   `--  test .cn7788.com.pp
|   `-- site.pp
|-- modules
|   `-- nginx
|       |-- files
|       |-- manifests
|       |   `-- init.pp
|       `-- templates
|           |-- nginx.conf.erb
|           `-- nginx_vhost.conf.erb
`-- puppet.conf

site.pp的文件内容如下:

1
2
3
4
import  "nodes/*.pp"
Package {
allow_virtual =>  false ,
}

client.cn7788.com.pp的文件内容如下所示:

1
2
3
4
5
6
7
node  'client.cn7788.com'  {
   include nginx
   nginx::vhost { 'client.cn7788.com' :
   sitedomain =>  "client.cn7788.com"  ,
   rootdir =>  "client" ,
}
}

test.cn7788.com.pp的文件内容如下所示:

1
2
3
4
5
6
7
node  'test.cn7788.com'  {
   include nginx
   nginx::vhost { 'test.cn7788.com' :
   sitedomain =>  "test.cn7788.com"  ,
   rootdir =>  "test" ,
}
}

/etc/puppet/modules/nginx/manifests/init.pp文件内容如下所示:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class nginx{
         package{ "nginx" :
         ensure          =>present,
}
         service{ "nginx" :
         ensure          =>running,
         require         =>Package[ "nginx" ],
}
file { "nginx.conf" :
ensure => present,
mode => 644,owner => root,group => root,
path =>  "/etc/nginx/nginx.conf" ,
content=> template( "nginx/nginx.conf.erb" ),
require=> Package[ "nginx" ],
}
}
define nginx::vhost($sitedomain,$rootdir) {
     file "/etc/nginx/conf.d/${sitedomain}.conf" :
         content => template( "nginx/nginx_vhost.conf.erb" ),
         require => Package[ "nginx" ],
     }
}

/etc/puppet/modules/nginx/templates/nginx.conf.erb文件内容如下所示:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
user  nginx;
worker_processes  8;
error_log   /var/log/nginx/error .log warn;
pid         /var/run/nginx .pid;
events {
     use epoll; 
     worker_connections  51200;
}
http {
     include        /etc/nginx/mime .types;
     default_type  application /octet-stream ;
     log_format  main   '$remote_addr - $remote_user [$time_local] "$request" '
                       '$status $body_bytes_sent "$http_referer" '
                       '"$http_user_agent" "$http_x_forwarded_for"' ;
     access_log   /var/log/nginx/access .log  main;
     sendfile        on;
     #tcp_nopush     on;
     keepalive_timeout  65;
     #gzip  on;
     include  /etc/nginx/conf .d/*.conf;
}

/etc/puppet/modules/nginx/templates/nginx_vhost.conf.erb文件内容如下所示:

1
2
3
4
5
6
7
8
9
server {
     listen        80 ;
server_name  <%= sitedomain %>;
access_log / var /log/nginx/<%= sitedomain %>.access.log;
location / {
root / var /www/<%= rootdir %>;
index    index.php index.html index.htm;
}
}

最后我们可以在节点名为client.cn7788.com和test.cn7788.com的机器验证效果,命令如下所示

1
puppet agent -- test  --server server.cn7788.com

部分执行命令结果如下:

1
2
3
4
5
Info: Computing checksum on  file  /etc/nginx/nginx .conf
Info: FileBucket got a duplicate  file  {md5}f7984934bd6cab883e1f33d5129834bb
Info:  /Stage [main] /Nginx/File [nginx.conf]: Filebucketed  /etc/nginx/nginx .conf to puppet with  sum  f7984934bd6cab883e1f33d5129834bb
Notice:  /Stage [main] /Nginx/File [nginx.conf] /content : content changed  '{md5}f7984934bd6cab883e1f33d5129834bb'  to  '{md5}6f57d21ca18f7256ef6c6ccd068505dc'
Notice: Finished catalog run  in  15.47 seconds

为了方便大家下载和阅读,此模块我特的收录进了我的github仓库,地址为https://github.com/yuhongchun/avaliablity/








本文转自 抚琴煮酒 51CTO博客,原文链接:http://blog.51cto.com/yuhongchun/1624871,如需转载请自行联系原作者
目录
相关文章
|
7天前
|
弹性计算 负载均衡 网络协议
ECS中实现nginx4层7层负载均衡和ALB/NLB原SLB负载均衡
通过本文的介绍,希望您能深入理解并掌握如何在ECS中实现Nginx四层和七层负载均衡,以及如何使用ALB和NLB进行高效的负载均衡配置,以提高系统的性能和可靠性。
43 9
|
20天前
|
存储 编解码 应用服务中间件
使用Nginx搭建流媒体服务器
本文介绍了流媒体服务器的特性及各种流媒体传输协议的适用场景,并详细阐述了使用 nginx-http-flv-module 扩展Nginx作为流媒体服务器的详细步骤,并提供了在VLC,flv.js,hls.js下的流媒体拉流播放示例。
92 1
|
28天前
|
负载均衡 监控 应用服务中间件
配置Nginx反向代理时如何指定后端服务器的权重?
配置Nginx反向代理时如何指定后端服务器的权重?
49 4
|
4月前
|
Ubuntu 应用服务中间件 Linux
在Linux中,如何配置Web服务器(如Apache或Nginx)?
在Linux中,如何配置Web服务器(如Apache或Nginx)?
|
4月前
|
负载均衡 应用服务中间件 Linux
"揭晓nginx的神秘力量:如何实现反向代理与负载均衡,拯救服务器于水火?"
【8月更文挑战第20天】在Linux环境下,nginx作为高性能HTTP服务器与反向代理工具,在网站优化及服务器负载均衡中扮演重要角色。本文通过电商平台案例,解析nginx如何解决服务器压力大、访问慢的问题。首先介绍反向代理原理,即客户端请求经由代理服务器转发至内部服务器,隐藏真实服务器地址;并给出配置示例。接着讲解负载均衡原理,通过将请求分发到多个服务器来分散负载,同样附有配置实例。实践表明,采用nginx后,不仅服务器压力得到缓解,还提升了访问速度与系统稳定性。
105 3
|
4月前
|
应用服务中间件 Linux 网络安全
在Linux中,如何配置Apache或Nginx Web服务器?
在Linux中,如何配置Apache或Nginx Web服务器?
|
4月前
|
存储 负载均衡 应用服务中间件
FastDFS+Nginx:轻松搭建本地文件服务器
【8月更文挑战第19天】在现今互联网快速发展的时代,文件服务器作为支撑各种在线服务的重要基础设施,其稳定性和性能显得尤为关键。FastDFS作为一款开源的轻量级分布式文件系统,凭借其高效的文件管理功能,特别适合用于构建相册网站、视频网站等以文件为载体的在线服务。本文将详细介绍如何利用FastDFS和Nginx快速搭建一个本地文件服务器,为您的工作和学习提供技术支持。
398 0
|
2月前
|
运维 Linux Apache
Puppet 作为一款强大的自动化运维工具,被广泛应用于配置管理领域。通过定义资源的状态和关系,Puppet 能够确保系统始终处于期望的配置状态。
Puppet 作为一款强大的自动化运维工具,被广泛应用于配置管理领域。通过定义资源的状态和关系,Puppet 能够确保系统始终处于期望的配置状态。
70 3
|
安全 Linux 网络协议
puppet yum模块、配置仓储、mount模块
转载:http://blog.51cto.com/ywzhou/1577335 作用:自动为客户端配置YUM源,为使用yum安装软件包提供便捷。 1、服务端配置yum模块 (1)模块清单 [root@puppet ~]# tree /etc/puppe...
1119 0

推荐镜像

更多
下一篇
DataWorks