• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

ansible自动化远程编译启动nginx

php 搞代码 3年前 (2022-01-22) 56次浏览 已收录 0个评论

这篇文章主要介绍了关于ansible自动化远程编译启动nginx,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

环境:rhel7.3
软件:

[root@server11 ~]# ansible --versionansible 2.5.3  config file = /etc/ansible/ansible.cfg  configured module search path = [u'/root/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']  ansible python module location = /usr/lib/python2.7/site-packages/ansible  executable location = /usr/bin/ansible  python version = 2.7.5 (default, Aug  2 2016, 04:20:16) [GCC 4.8.5 20150623 (Red Hat 4.8.5-4)]

ssh 免密

[root@server11 ansible]# ssh-keygen[root@server11 ansible]# ssh-copy-id 192.168.122.12

文件目录结构

[root@server11 ansible]# tree.├── ansible.cfg├── hosts├── nginx.yaml└── roles    └── nginx        ├── default        ├── files        │   └── nginx-1.13.6.tar.gz        ├── handlers        ├── meta        ├── tasks        │   └── main.yml        ├── templates        │   ├── nginx.conf        │   └── nginx.service        └── vars            └── main.yml9 directories, 8 files

roles/nginx/tasks/main.yml

[root@server11 ansible]# cat roles/nginx/tasks/main.yml - name: copy package    copy: src=nginx-1.13.6.tar.gz dest=/usr/local/src/nginx-1.13.6.tar.gz    tags: cppkg  - name: tar nginx    shell: cd /usr/local/src;tar -xf nginx-1.13.6.tar.gz  - name: yum install    yum: name={{ item }} state=latest    with_items:      - openssl-devel      - pcre-devel      - gcc  - name: install nginx    shell: useradd nginx;cd /usr/local/src/nginx-1.13.6;./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_ssl_module --with-http_flv_module --with-http_stub_status_module --with-http_gzip_static_module  --with-pcre;make && make install  - name: copy conf file    template: src=nginx.conf dest=/usr/local/nginx/conf/nginx.conf  - name: systemctl init    template: src=nginx.service dest=/usr/lib/systemd/system/nginx.service  - name: start nginx service    service: name=nginx state=started enabled=true

roles/nginx/templates/nginx.conf

[root@server11 ansible]# cat roles/nginx/templates/nginx.conf user  nginx;  worker_processes  {{ ansible_processor_vcpus }};  #error_log  logs/error.log;  #error_log  logs/error.log  notice;  #error_log  logs/error.log  info;  #pid        logs/nginx.pid;  events {      worker_connections  65535;  }  http {      include       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  logs/access.log  main;      sendfile        on;      #tcp_nopush     on;      #keepalive_timeout  0;      keepalive_timeout  65;      #gzip  on;      server {          listen       {{ nginxport }};          server_name  localhost;          #charset koi8-r;          #access_log  logs/host.access.log  main;          location / {              root   html;              index  index.html index.htm;          }          #error_page  404              /404.html;          # redirect server error pages to the static page /50x.html          #          error_page   500 502 503 504  /50x.html;          location = /50x.html {              root   html;          }          # proxy the PHP scripts to Apache listening on 127.0.0.1:80          #          #location ~ \.php$ {          #    proxy_pass   http://127.0.0.1;          #}          # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000          #          #location ~ \.php$ {          #  <em style="color:transparent">本@文来源[email protected]搞@^&代*@码网(</em><q>搞代gaodaima码</q>  root           html;          #    fastcgi_pass   127.0.0.1:9000;          #    fastcgi_index  index.php;          #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;          #    include        fastcgi_params;          #}          # deny access to .htaccess files, if Apache's document root          # concurs with nginx's one          #          #location ~ /\.ht {          #    deny  all;          #}      }      # another virtual host using mix of IP-, name-, and port-based configuration      #      #server {      #    listen       8000;      #    listen       somename:8080;      #    server_name  somename  alias  another.alias;      #    location / {      #        root   html;      #        index  index.html index.htm;      #    }      #}      # HTTPS server      #      #server {      #    listen       443 ssl;      #    server_name  localhost;      #    ssl_certificate      cert.pem;      #    ssl_certificate_key  cert.key;      #    ssl_session_cache    shared:SSL:1m;      #    ssl_session_timeout  5m;      #    ssl_ciphers  HIGH:!aNULL:!MD5;      #    ssl_prefer_server_ciphers  on;      #    location / {      #        root   html;      #        index  index.html index.htm;      #    }      #}  }

搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:ansible自动化远程编译启动nginx
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址