saltstack 系列(四)centos7使用saltstack源码安装nginx

使用saltstack源码安装nginx,首先先看一下我nginx的目录  tree一下,我们只需要关系nginx-install.sls 和nignx-service.sls。clu-vhost是我用python写的自动添加集群和自动更新踢出集群,后面会讲到。

nginx

├── files

│   ├── clu-vhost

│   │   ├── 11.py

│   │   ├── content.txt

│   │   ├── epel-release-latest-7.noarch.rpm

│   │   ├── inputcluster.py

│   │   ├── nginx-user.conf

│   │   ├── nginx-web.conf

│   │   ├── pycurlcheck.py

│   │   ├── pycurlcheck.pyc

│   │   ├── pycurltest.py

│   │   ├── testfor2.py

│   │   ├── testforfun.py

│   │   ├── testforfunuserdel.py

│   │   ├── testforfunuserdel.pyc

│   │   ├── testforfunuser.py

│   │   ├── testforfunuser.pyc

│   │   ├── testforfunweb.py

│   │   ├── testgroup.py

│   │   └── updatecluster.py

│   ├── nginx-1.9.1.tar.gz

│   ├── nginx.conf

│   └── nginx.service

├── nginx-install.sls

└── nginx-service.sls

由于需要nginx 支持正则,所以需要安装pcre,我们tree一下pcre的目录:

pcre/

├── files

│   └── pcre-8.37.tar.gz

└── pcre-install.sls

首先我们先安装pcre,pcre-install.sls:

pcre-source:

file.managed:

- name: /opt/pcre-8.37.tar.gz

- source: salt://pcre/files/pcre-8.37.tar.gz

- user: root

- group: root

- mode: 755

cmd.run:

- name: cd /opt && tar zxf pcre-8.37.tar.gz && cd pcre-8.37 && ./configure --prefix=/usr/local/pcre && make && make install

- unless: test -d /usr/local/pcre

- require:

- file: pcre-source

- pkg: pkg-install

安装完成pcre之后,安装nginx,nginx-install.sls:

include:

- pcre.pcre-install

- user.www

nginx-source:

file.managed:

- name: /opt/nginx-1.9.1.tar.gz

- source: salt://nginx/files/nginx-1.9.1.tar.gz

- user: root

- group: root

- mode: 755

cmd.run:

- name: cd /opt && tar -zxvf nginx-1.9.1.tar.gz && cd nginx-1.9.1 &&./configure --prefix=/usr/local/nginx --user=www --group=www --with-http_ssl_module --with-http_stub_status_module --with-file-aio --with-http_dav_module --with-pcre=/opt/pcre-8.37 && make && make install && chown -R www:www /usr/local/nginx

- unless: test -d /usr/local/nginx

- require:

- user: www-user-group

- file: nginx-source

- pkg: pkg-install

将nginx使用系统服务来管理,nginx-service:

cat nginx/nginx-service.sls

include:

- nginx.nginx-install

nginx-config:

file.managed:

- name: /usr/local/nginx/conf/nginx.conf

- source: salt://nginx/files/nginx.conf

- user: www

- group: www

- mode: 644

- template: jinja

- defaults:

USER: {{ pillar[‘nginx‘][‘nginx_user‘] }}

ROOT: {{ pillar[‘nginx‘][‘web_root‘] }}

GROUP: {{ pillar[‘nginx‘][‘nginx_group‘] }}

MAX_OPEN_FILE: {{ pillar[‘nginx‘][‘max_open_file‘] }}

WEB_ROOT: {{ pillar[‘nginx‘][‘web_root‘] }}

nginx-initsv:

file.managed:

- name: /lib/systemd/system/nginx.service

- source: salt://nginx/files/nginx.service

- user: www

- group: www

- mode: 755

nginx-web:

file.directory:

- name: /opt/web

- unless: test -d /opt/web

nginx-vhost-config:

file.directory:

- name: /usr/local/nginx/conf/vhost

- unless: test -d /usr/local/nginx/conf/vhost

service.running:

- name: nginx

- enable: True

- reload: True

- require:

- file: nginx-config

- file: nginx-initsv

- watch:

- file: nginx-vhost-config

###这里大家可能注意到了变量,这个是蒹葭模板,是saltstack的一种写法。多写就知道了,这里的作用是动态配置nginx.conf的nginx进程数量。

下面看一下nginx.conf的模板文件就明白了:

cat nginx.conf

user  {{USER}} {{GROUP}};

worker_processes {{ grains[‘num_cpus‘] }};

{% if grains[‘num_cpus‘] == 2 %}

worker_cpu_affinity 01 10;

{% elif grains[‘num_cpus‘] == 4 %}

worker_cpu_affinity 1000 0100 0010 0001;

{% elif grains[‘num_cpus‘] >= 8 %}

worker_cpu_affinity 00000001 00000010 00000100 00001000 00010000 00100000 01000000 10000000;

{% else %}

worker_cpu_affinity 01;

{% endif %}

error_log  {{WEB_ROOT}}/nginx_error.log  crit;

pid        /usr/local/nginx/logs/nginx.pid;

#Specifies the value for maximum file descriptors that can be opened by this process.

worker_rlimit_nofile {{MAX_OPEN_FILE}};

events

{

use epoll;

worker_connections {{MAX_OPEN_FILE}};

#multi_accept on;

}

http

{

include       mime.types;

default_type  application/octet-stream;

charset  utf-8;

server_names_hash_bucket_size 128;

client_header_buffer_size 32k;

large_client_header_buffers 4 32k;

# client_max_body_size 8m;

sendfile on;

tcp_nopush     on;

keepalive_timeout 120;

fastcgi_connect_timeout 400;

fastcgi_send_timeout 400;

fastcgi_read_timeout 400;

fastcgi_buffer_size 64k;

fastcgi_buffers 4 64k;

fastcgi_busy_buffers_size 128k;

fastcgi_temp_file_write_size 128k;

tcp_nodelay on;

gzip on;

gzip_min_length  1k;

gzip_buffers     4 16k;

gzip_http_version 1.0;

gzip_comp_level 2;

gzip_types       text/plain application/x-javascript text/css application/xml;

gzip_vary on;

server_tokens off;

client_max_body_size 512m;   #允许客户端请求的最大单个文件字节数

client_body_buffer_size 128k;  #缓冲区代理缓冲用户端请求的最大字节数

proxy_connect_timeout  600;   #跟后端服务器连接超时时间,发起握手等候响应超时时间

proxy_read_timeout   600;   #连接成功后,等候后端服务器响应时间,在后端排队中等候

proxy_send_timeout 600; #后端服务器数据回传时间,就是在规定时间内后端服务器必须传完有数

proxy_buffer_size 16k; #代理请求缓存区,这个缓存区间会保存用户的信息以供nginx进行则处理,一般只要能保存下头信息即可

proxy_buffers 4 32k; #同上,告诉nginx保存单个用的几个Buffer最大用多大空间

proxy_busy_buffers_size 64k; #如果系统很忙可以申请用的几个更大的proxy_buffer

proxy_temp_file_write_size 64k; #缓存临时文件大小

#log format

log_format  access  ‘$remote_addr - $remote_user [$time_local] "$request" ‘

‘$status $body_bytes_sent "$http_referer" ‘

‘"$http_user_agent" $http_x_forwarded_for‘;

include vhost/*.conf;

}

好了,nginx的安装完成了,执行salt,minion端的nginx就自动起来了。

以上如有问题,请指正。

时间: 2024-12-28 14:30:49

saltstack 系列(四)centos7使用saltstack源码安装nginx的相关文章

Centos 7.0 编译安装LNMP(Linxu+nginx+mysql+php)之源码安装nginx (一)

nginx简介:       Nginx (engine x) 是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP服务器.Nginx是由伊戈尔·赛索耶夫为俄罗斯访问量第二的Rambler.ru站点(俄文:Рамблер)开发的,第一个公开版本0.1.0发布于2004年10月4日. 其将源代码以类BSD许可证的形式发布,因它的稳定性.丰富的功能集.示例配置文件和低系统资源的消耗而闻名.2011年6月1日,nginx 1.0.4发布. Nginx是一款轻量级的Web 服务器

源码安装Nginx以及用systemctl管理

一.源码安装Nginx: 先安装gcc编译器(安装过的可以忽略) [[email protected] ~]# yum -y install gcc gcc-c++ wget 进入src目录 [[email protected] ~]# cd /usr/local/src/ 下载 nginx软件包 [[email protected] src]# wget http://nginx.org/download/nginx-1.14.0.tar.gz 解压 [[email protected] sr

【Nginx】源码安装Nginx 平滑升级Nginx

Web服务对比 Linux平台 Php.Python:nginx.tengine(淘宝).apache Jave:tomcat.Jboss.IBM WebSphere Windows平台:IIS(.net) Nginx的优点:性能高.并发高.静态网站.动态网站(php.python) 在对比其他web软件的情况下nginx的性能更加好!在国内广泛使用 Nginx 十分轻量级的HTTP服务器 是一个高性能的HTTP和反向代理服务器 官方网站: http://nginx.org/ Nginx以及现代

saltstack源码安装nginx

[首先配置好saltstack基础环境,确保master能远程minion,这里就不列举了]  因为涉及到的目录较多,因此先规划好目录结构 [[email protected] dev]# tree /srv/dev/ /srv/dev/nginx_install │       ├  initpkg.sls │          ├  initall .sls │       ├  nginx_init.sls │          ├  files │           └── nginx

NoSQL系列(1)——memcached源码安装使用

0. 引言 NoSQL(NoSQL = Not Only SQL ),意即"不仅仅是SQL",泛指非关系型数据库,因为NoSQL不仅仅是指一种数据库.就像关系型数据库中有MySQL和Oracle等类型,NoSQL也有memcached.MongoDB和redis等. NoSQL数据库存储原理非常简单(典型的数据类型为k-v),不存在繁杂的关系链,比如mysql查询的时候,需要找到对应的库.表(通常是多个表)以及字段.NoSQL数据可以存储在内存里,查询速度非常快,因此NoSQL数据库随

centos7.4下源码安装mariadb

一.卸载旧的mariadb 查询已安装的软件: rpm -qa | grep Maria* 卸载:yum -y remove mari* 删除数据库文件:rm -rf /var/lib/mysql/* 二.安装依赖包且源码安装cmake yum groupinstall "Development Tools" yum install libaio libaio-devel bison bison-devel zlib-devel cmake openssl openssl-devel

Centos7.2 源码安装Nginx

近期准备使用Nginx,就着手研究一下在CentOS7上来源码安装Nginx.话不多说(主要是怕忘了呵呵)开始正题. # uname -r 3.10.0-327.el7.x86_64 # ./configure --prefix=/usr/local/nginx 安装前还是在网上稍微搜集了一些信息,我的CentOS安装在虚拟机上,安装的时候选择的是最小安装,所以编译安装时所需要的一些编译器和依赖库可能没有,所以先来安装这些编译环境. # yum install gcc gcc-c++ zlib-

[原创]在Centos7.2上源码安装PHP、Nginx、Zentao禅道

版本 操作系统:CentOS Linux release 7.2.1511 (Core) PHP:5.6.33 Nginx:1.12.2 MySQL:5.6.38(192.168.1.103的Windows) Zentao禅道:9.7.stable 安装路径 源码路径:/usr/local/src PHP:/usr/local/php Nginx:/usr/local/nginx Zentao禅道:/opt/zentao 安装PHP 安装php依赖 yum install gcc libxml2

LNMP架构 源码安装nginx+mysql+php+memcache+论坛

一.LNMP架构 LNMP代表的就是:Linux系统下Nginx+MySQL+PHP这种网站服务器架构. Linux是一类Unix计算机操作系统的统称,是目前最流行的免费操作系统.代表版本有:debian.centos.ubuntu.fedora.gentoo等. Nginx是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP代理服务器. Mysql是一个小型关系型数据库管理系统. PHP是一种在服务器端执行的嵌入HTML文档的脚本语言. 这四种软件均为免费开源软件,组合