Ansible使用playbook部署LNMP

来源:https://www.cnblogs.com/tushanbu/archive/2022/10/26/16826895.html
-Advertisement-
Play Games

Ansible使用playbook部署LNMP 環境介紹: | 系統|ip|主機名|服務| | : : | : : | : : | : : | |centos8|192.168.222.250|ansible| ansinle| |ceotos8|192.168.222.137|nginx|ngin ...


Ansible使用playbook部署LNMP


目錄

環境介紹:

系統 ip 主機名 服務
centos8 192.168.222.250 ansible ansinle
ceotos8 192.168.222.137 nginx nginx
centos8 192.168.222.138 mysql mysql
centos8 192.168.222.139 php php

nginx-1.22.0
mysql-5.7.38
php-8.1.11

安裝ansible

阿裡雲官網

//配置阿裡源
[root@ansible ~]# cd /etc/yum.repos.d/
[root@ansible yum.repos.d]# rm -rf *
[root@ansible yum.repos.d]# curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  2495  100  2495    0     0  10439      0 --:--:-- --:--:-- --:--:-- 10439
[root@ansible yum.repos.d]# sed -i -e '/mirrors.cloud.aliyuncs.com/d' -e '/mirrors.aliyuncs.com/d' /etc/yum.repos.d/CentOS-Base.repo
//配置epel
[root@ansible yum.repos.d]# yum install -y https://mirrors.aliyun.com/epel/epel-release-latest-8.noarch.rpm
[root@ansible yum.repos.d]# sed -i 's|^#baseurl=https://download.example/pub|baseurl=https://mirrors.aliyun.com|' /etc/yum.repos.d/epel*
[root@ansible yum.repos.d]# sed -i 's|^metalink|#metalink|' /etc/yum.repos.d/epel*
[root@ansible yum.repos.d]# ls
CentOS-Base.repo  epel-modular.repo  epel-testing-modular.repo  epel-testing.repo  epel.repo
[root@ansible yum.repos.d]# cd
//安裝ansible
[root@ansible ~]# dnf -y install platform-python
[root@ansible ~]# dnf -y install centos-release-ansible-29
[root@ansible ~]# dnf -y install ansible  --nobest
[root@ansible ~]# ansible --version   //查看版本
ansible 2.9.27
  config file = /etc/ansible/ansible.cfg
  configured module search path = ['/root/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
  ansible python module location = /usr/lib/python3.6/site-packages/ansible
  executable location = /usr/bin/ansible
  python version = 3.6.8 (default, Sep 10 2021, 09:13:53) [GCC 8.5.0 20210514 (Red Hat 8.5.0-3)]

基於ansible進行基礎準備

//做映射
[root@ansible ~]# vim /etc/hosts
[root@ansible ~]# cat /etc/hosts 
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.222.137 nginx
192.168.222.138 mysql
192.168.222.139 php
[root@ansible ~]# mkdir playdemo     
[root@ansible ~]# cd playdemo/
[root@ansible playdemo]# cp /etc/ansible/ansible.cfg .
[root@ansible playdemo]# ls
ansible.cfg
[root@ansible playdemo]# vim ansible.cfg   
#inventory      = /etc/ansible/hosts
inventory       = inventory
[root@ansible playdemo]# vim inventory   //存放清單的目錄
[root@ansible playdemo]# cat inventory
[nginx]     //受控主機
192.168.222.137
[mysql]
192.168.222.138
[php]
192.168.222.139
[root@ansible playdemo]# ls
ansible.cfg  inventory
//查看受控主機
[root@ansible playdemo]# ansible all --list-hosts
  hosts (3):
    192.168.222.137
    192.168.222.138
    192.168.222.139
//實現免密登錄受控主機
[root@ansible playdemo]# ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa): 
Created directory '/root/.ssh'.
Enter passphrase (empty for no passphrase): 
Enter same passphrase again: 
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:mpyjGH8V9Fiy/Snu9xMsGcCtrQQFEm5dvSSgI++dqco root@ansible
The key's randomart image is:
+---[RSA 3072]----+
|      o.o=oo     |
|     . ++.= +    |
|    . =..O * .   |
|     + .+ = +    |
|      . So o =   |
|     o =.oo = o  |
|  .   B.+. . . . |
|   = ..o  . . .  |
|  . Eo.  ... ... |
+----[SHA256]-----+
[root@ansible playdemo]# ssh-copy-id 192.168.222.137
[root@ansible playdemo]# ssh-copy-id 192.168.222.138
[root@ansible playdemo]# ssh-copy-id 192.168.222.139
//檢查機器節點是否連通
[root@ansible playdemo]# ansible all -m ping
192.168.222.137 | SUCCESS => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
    "changed": false,
    "ping": "pong"
}
192.168.222.139 | SUCCESS => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
    "changed": false,
    "ping": "pong"
}
192.168.222.138 | SUCCESS => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
    "changed": false,
    "ping": "pong"
}
//關閉主控主機的防火牆
[root@ansible playdemo]# systemctl stop firewalld.service 
[root@ansible playdemo]# vim /etc/selinux/config 
SELINUX=disabled
[root@ansible playdemo]# setenforce 0
[root@ansible playdemo]# systemctl disable  --now firewalld.service 
Removed /etc/systemd/system/multi-user.target.wants/firewalld.service.
Removed /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.

使用playbook進行編寫

[root@ansible playdemo]# mkdir playbook  //此處需要使playbook目錄
和存放清單inventory目錄處於同一級目錄
[root@ansible playdemo]# cd playbook/
[root@ansible playbook]# vim lnmp.yml 
[root@ansible playbook]# cat lnmp.yml 
---
- name: nginx mysql php stop firewalld and selinux
  hosts: all
  tasks:
    - name: stop firewalled
      service: 
        name: firewalld.service
        state: stopped
        enabled: no
    - name: Ensure SELinux is set to disabled mode
      lineinfile:
        path: /etc/selinux/config
        regexp: '^SELINUX='
        line: SELINUX=disabled

- name: install nginx
  hosts: nginx
  tasks:
    - name: create user nginx
      user:
        name: nginx
        system: yes
        shell: /sbin/nologin
        create_home: no
        state: present
    - name: download nginx
      get_url:
        url: https://nginx.org/download/nginx-1.22.0.tar.gz
        dest: /usr/local/src
    - name: Unarchive a nginx  
      unarchive:
        src: /usr/local/src/nginx-1.22.0.tar.gz
        dest: /usr/src/ 
        remote_src: yes

    - name: yum install 
      yum:
        name: pcre-devel,openssl,openssl-devel,gd-devel,make,gcc,gcc-c++,wget 
        state: present

    - name: nginx configure 
      shell: 
        cd /usr/src/nginx-1.22.0 && ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-debug --with-http_ssl_module --with-http_realip_module --with-http_image_filter_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_stub_status_module
    
    - name: nginx make
      shell:
        cd /usr/src/nginx-1.22.0 && make -j $(grep 'processor' /proc/cpuinfo | wc -l) && make install
    
    - name: nginx PATH
      copy:
        dest: /etc/profile.d/nginx.sh
        content: export PATH=$PATH:/usr/local/nginx/sbin
    
    - name: nginx service.file
      copy:
        dest: /usr/lib/systemd/system/nginx.service
        content: |
          [Unit]
          Description=nginx server daemon
          After=network.target 
           
          [Service]
          Type=forking
          ExecStart=/usr/local/nginx/sbin/nginx
          ExecStop=/usr/local/nginx/sbin/nginx -s stop
          ExecReload=/bin/kill -HUP \$MAINPID
           
          [Install]
          WantedBy=multi-user.target
    
    - name: modfiy configuration file
      copy:
        dest: /usr/local/nginx/conf/nginx.conf
        content: |
          user  nginx;
          worker_processes  1;
          events {
              worker_connections  1024;
          }

          http {
              include       mime.types;
              default_type  application/octet-stream;
              sendfile        on;
              keepalive_timeout  65;
              server {
                  listen       80;
                  server_name  localhost;

                  location / {
                      root   html;
                      index  index.php;
                  }
                  error_page   500 502 503 504  /50x.html;
                  location = /50x.html {
                      root   html;
                  }
                  location ~ \.php$ {
                      root           /var/www;
                      fastcgi_pass   192.168.222.139:9000;
                      fastcgi_index  index.php;
                      fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
                      include        fastcgi_params;
                  }
              }
          }    
    - name: index.php
      file:
        path: /usr/local/nginx/html/index.php
        state: touch

    - name: start nginx
      service:
        name: nginx.service
        state: restarted
        enabled: yes

- name: install mysql
  hosts: mysql
  tasks: 
    - name: create user mysql
      user:
        name: mysql
        system: yes
        shell: /sbin/nologin
        create_home: no                                                 
        state: present
    - name: download mysql 
      get_url:
        url: https://downloads.mysql.com/archives/get/p/23/file/mysql-5.7.38-linux-glibc2.12-x86_64.tar.gz
        dest: /usr/local/src/  
    - name: unarchive mysql
      unarchive:
        src: /usr/local/src/mysql-5.7.38-linux-glibc2.12-x86_64.tar.gz
        dest: /usr/src/
        remote_src: yes        
 
    - name: Modifying Directory Permissions
      file:
        src: /usr/src/mysql-5.7.38-linux-glibc2.12-x86_64
        dest: /usr/local/mysql
        owner: mysql
        group: mysql
        state: link

    - name: mysql PATH
      copy:
        dest: /etc/profile.d/mysql.sh
        content: export PATH=$PATH:/usr/local/mysql/bin

    - name: create mysql date
      file:
        path: /opt/data
        state: directory 
        owner: mysql
        group: mysql
     
    - name: Modifying mysql include
      file: 
        src: /usr/local/mysql/include 
        dest: /usr/include/mysql
        state: link
    
    - name: Modifying mysql lib
      copy: 
        dest: /etc/ld.so.conf.d/mysql.conf
        content: /usr/local/mysql/lib

    - name: Initializing the database
      shell:
        mysqld --initialize --user mysql --datadir /opt/data > /tmp/passwd
    - name: create mysql.conf
      copy:
        dest: /etc/my.cnf
        content: |
          [mysqld]
          basedir = /usr/local/mysql
          datadir = /opt/data
          socket = /tmp/mysql.sock
          port = 3306
          pid-file = /opt/data/mysql.pid
          user = mysql
          skip-name-resolve
    - name: create service_file
      copy:
        dest: /usr/lib/systemd/system/mysqld.service
        content: | 
          [Unit]
          Description=mysql server daemon
          After=network.target sshd-keygen.target
            
          [Service]
          Type=forking
          ExecStart=/usr/local/mysql/support-files/mysql.server start
          ExecStop=/usr/local/mysql/support-files/mysql.server stop
          ExecReload=/bin/kill -HUP
            
          [Install]
          WantedBy=multi-user.target
    - name: start mysql
      service:
        name: mysqld.service
        state: started
        enabled: yes

- name: install php
  hosts: php
  tasks:
    - name: php yum
      yum: 
        name: libxml2-devel,openssl-devel,curl-devel,libjpeg-devel,libpng-devel,libicu-devel,freetype-devel,openldap-devel,openldap,openldap-devel,gcc,gcc-c++,sqlite-devel,libzip-devel,openssl,libcurl-devel.x86_64,libpng.x86_64,libpng-devel.x86_64,freetype-devel,readline,readline-devel,make
        state: present
    - name: php yum
      shell:
        yum -y install http://mirror.centos.org/centos/8-stream/PowerTools/x86_64/os/Packages/oniguruma-devel-6.8.2-2.el8.x86_64.rpm
    - name: download php
      get_url:
        url: https://www.php.net/distributions/php-8.1.11.tar.gz
        dest: /usr/local/src/
    - name: unarchive php
      unarchive:
        src: /usr/local/src/php-8.1.11.tar.gz
        dest: /usr/src/
        remote_src: yes

    - name: php configure
      shell: 
        cd /usr/src/php-8.1.11 && ./configure --prefix=/usr/local/php  --with-config-file-path=/etc  --enable-fpm  --disable-debug  --disable-rpath  --enable-shared  --enable-soap  --with-openssl  --enable-bcmath  --with-iconv  --with-bz2  --enable-calendar  --with-curl  --enable-exif   --enable-ftp  --enable-gd  --with-jpeg  --with-zlib-dir  --with-freetype  --with-gettext  --enable-mbstring  --enable-pdo  --with-mysqli=mysqlnd  --with-pdo-mysql=mysqlnd  --with-readline  --enable-shmop  --enable-simplexml  --enable-sockets  --with-zip  --enable-mysqlnd-compression-support  --with-pear  --enable-pcntl  --enable-posix 

    - name: php make
      shell:
        cd /usr/src/php-8.1.11 && make -j $(grep 'processor' /proc/cpuinfo | wc -l) && make install
    - name: php copy conf_file
      copy: 
        src: /usr/local/php/etc/php-fpm.conf.default 
        dest: /usr/local/php/etc/php-fpm.conf
        remote_src: yes

    - name: php copy php-fpm.conf
      copy:
        src: /usr/local/php/etc/php-fpm.d/www.conf.default 
        dest: /usr/local/php/etc/php-fpm.d/www.conf
        remote_src: yes

    - name: config listen
      lineinfile:
        path: /usr/local/php/etc/php-fpm.d/www.conf
        regexp: '^listen = '
        line: listen = 192.168.222.139:9000

    - name: config listen.allowed_clients
      lineinfile:  
        path: /usr/local/php/etc/php-fpm.d/www.conf
        regexp: '^;listen.allowed_clients = '
        line: listen.allowed_clients = 192.168.222.137

    - name: php service
      copy:
        dest: /usr/lib/systemd/system/php.service
        content: |
          [Unit]
          Description=php server daemon
          After=network.target 
            
          [Service]
          Type=forking
          ExecStart=/usr/local/php/sbin/php-fpm
          ExecStop=ps -ef |grep php |grep -v grep|awk '{print$2}'|xargs kill 
          ExecReload=/bin/kill -HUP $MAINPID
            
          [Install]
          WantedBy=multi-user.target
    - name: start php
      service:
        name: php.service
        state: restarted
        enabled: yes
  
    - name: var directory
      file:
        path: /var/www
        state: directory

    - name: index.php
      copy:
        dest: /var/www/index.php
        content: |
          <?php
              phpinfo();
          ?>
[root@ansible playbook]# cd ..
[root@ansible playdemo]# ansible-playbook playbook/lnmp.yml -vv
...
PLAY RECAP ***********************************************************************************************
192.168.222.137            : ok=15   changed=13   unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   
192.168.222.138            : ok=16   changed=14   unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   
192.168.222.139            : ok=18   changed=16   unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   

訪問:

使用變數

[root@ansible ~]# tree playdemo
playdemo
|-- ansible.cfg
|-- inventory
|-- package
|   |-- mysql-5.7.38-linux-glibc2.12-x86_64.tar.gz
|   |-- nginx-1.22.0.tar.gz
|   `-- php-8.1.11.tar.gz
|-- playbook
|   `-- lnmp.yml
`-- var
    |-- dir.yml
    |-- hos.yml
    `-- package.yml

3 directories, 9 files
[root@ansible playdemo]# cd
[root@ansible ~]# cd playdemo/
[root@ansible playdemo]# ls
ansible.cfg  inventory  package  playbook  var
[root@ansible playdemo]# ls package/
mysql-5.7.38-linux-glibc2.12-x86_64.tar.gz  nginx-1.22.0.tar.gz  php-8.1.11.tar.gz
[root@ansible playdemo]# ls playbook/
lnmp.yml
[root@ansible playdemo]# ls var/
dir.yml  hos.yml  package.yml
[root@ansible playdemo]# cat var/package.yml 
package:
  nginx: nginx-1.22.0
  mysql: mysql-5.7.38-linux-glibc2.12-x86_64
  php: php-8.1.11
[root@ansible playdemo]# cat var/dir.yml 
url_dir: ../package/
dow_dir: /usr/local/src/
una_dir: /usr/src/
ins_dir:
  nginx: /usr/local/nginx
  mysql: /usr/local/mysql
  php: /usr/local/php
[root@ansible playdemo]# cat var/hos.yml 
host_ip:
  nginx: 192.168.222.137
  mysql: 192.168.222.138
  php: 192.168.222.139
[root@ansible playdemo]# cd playbook/
[root@ansible playbook]# vim lnmp.yml 
[root@ansible playbook]# cat lnmp.yml 
---
- name: nginx mysql php stop firewalld and selinux
  hosts: all
  tasks:
    - name: stop firewalled
      service: 
        name: firewalld.service
        state: stopped
        enabled: no
    - name: Ensure SELinux is set to disabled mode
      lineinfile:
        path: /etc/selinux/config
        regexp: '^SELINUX='
        line: SELINUX=disabled

- name: install nginx
  vars_files:
    - ../var/dir.yml
    - ../var/hos.yml
    - ../var/package.yml
  hosts: "{{ host_ip['nginx'] }}"
  tasks:
    - name: create user nginx
      user:
        name: nginx
        system: yes
        shell: /sbin/nologin
        create_home: no
        state: present
    - name: copy nginx
      copy:
        src: "{{ url_dir }}{{ package['nginx'] }}.tar.gz"
        dest: "{{ dow_dir }}"
    - name: Unarchive a nginx  
      unarchive:
        src: "{{ dow_dir }}{{ package['nginx'] }}.tar.gz"
        dest: "{{ una_dir }}" 
        remote_src: yes

    - name: yum install 
      yum:
        name: pcre-devel,openssl,openssl-devel,gd-devel,make,gcc,gcc-c++,wget 
        state: present

    - name: nginx configure 
      shell: 
        cd {{ una_dir }}{{ package['nginx'] }} && ./configure --prefix={{ ins_dir['nginx'] }} --user=nginx --group=nginx --with-debug --with-http_ssl_module --with-http_realip_module --with-http_image_filter_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_stub_status_module
    
    - name: nginx make
      shell:
        cd {{ una_dir }}{{ package['nginx'] }} && make -j $(grep 'processor' /proc/cpuinfo | wc -l) && make install
    
    - name: nginx PATH
      copy:
        dest: /etc/profile.d/nginx.sh
        content: export PATH=$PATH:{{ ins_dir['nginx'] }}/sbin
    
    - name: nginx service.file
      copy:
        dest: /usr/lib/systemd/system/nginx.service
        content: |
          [Unit]
          Description=nginx server daemon
          After=network.target 
           
          [Service]
          Type=forking
          ExecStart={{ ins_dir['nginx'] }}/sbin/nginx
          ExecStop={{ ins_dir['nginx'] }}/sbin/nginx -s stop
          ExecReload=/bin/kill -HUP \$MAINPID
           
          [Install]
          WantedBy=multi-user.target
    
    - name: modfiy configuration file
      copy:
        dest: "{{ ins_dir['nginx'] }}/conf/nginx.conf"
        content: |
          user  nginx;
          worker_processes  1;
          events {
              worker_connections  1024;
          }

          http {
              include       mime.types;
              default_type  application/octet-stream;
              sendfile        on;
              keepalive_timeout  65;
              server {
                  listen       80;
                  server_name  localhost;

                  location / {
                      root   html;
                      index  index.php;
                  }
                  error_page   500 502 503 504  /50x.html;
                  location = /50x.html {
                      root   html;
                  }
                  location ~ \.php$ {
                      root           /var/www;
                      fastcgi_pass   {{ host_ip['php']  }}:9000;
                      fastcgi_index  index.php;
                      fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
                      include        fastcgi_params;
                  }
              }
          }    
    - name: index.php
      file:
        path: "{{ ins_dir['nginx'] }}/html/index.php"
        state: touch

    - name: start nginx
      service:
        name: nginx.service
        state: restarted
        enabled: yes

- name: install mysql
  vars_files:
    - ../var/dir.yml
    - ../var/hos.yml
    - ../var/package.yml
  hosts: "{{ host_ip['mysql'] }}"
  tasks: 
    - name: create user mysql
      user:
        name: mysql
        system: yes
        shell: /sbin/nologin
        create_home: no                                                 
        state: present
    - name: copy mysql 
      copy:
        src: "{{ url_dir }}{{ package['mysql'] }}.tar.gz"
        dest: "{{ dow_dir }}"  
    - name: unarchive mysql
      unarchive:
        src: "{{ dow_dir }}{{ package['mysql'] }}.tar.gz"
        dest: "{{ una_dir }}"
        remote_src: yes        
 
    - name: Modifying Directory Permissions
      file:
        src: "{{ una_dir }}{{ package['mysql'] }}"
        dest: "{{ ins_dir['mysql'] }}"
        owner: mysql
        group: mysql
        state: link

    - name: mysql PATH
      copy:
        dest: /etc/profile.d/mysql.sh
        content: export PATH=$PATH:{{ ins_dir['mysql'] }}/bin

    - name: create mysql date
      file:
        path: /opt/data
        state: directory 
        owner: mysql
        group: mysql
     
    - name: Modifying mysql include
      file: 
        src: "{{ ins_dir['mysql'] }}/include" 
        dest: /usr/include/mysql
        state: link
    
    - name: Modifying mysql lib
      copy: 
        dest: /etc/ld.so.conf.d/mysql.conf
        content: "{{ ins_dir['mysql'] }}/lib"

    - name: Initializing the database
      shell:
        mysqld --initialize --user mysql --datadir /opt/data > /tmp/passwd
    - name: create mysql.conf
      copy:
        dest: /etc/my.cnf
        content: |
          [mysqld]
          basedir = {{ ins_dir['mysql'] }}
          datadir = /opt/data
          socket = /tmp/mysql.sock
          port = 3306
          pid-file = /opt/data/mysql.pid
          user = mysql
          skip-name-resolve
    - name: create service_file
      copy:
        dest: /usr/lib/systemd/system/mysqld.service
        content: | 
          [Unit]
          Description=mysql server daemon
          After=network.target sshd-keygen.target
            
          [Service]
          Type=forking
          ExecStart={{ ins_dir['mysql'] }}/support-files/mysql.server start
          ExecStop={{ ins_dir['mysql'] }}/support-files/mysql.server stop
          ExecReload=/bin/kill -HUP
            
          [Install]
          WantedBy=multi-user.target
    - name: start mysql
      service:
        name: mysqld.service
        state: started
        enabled: yes

- name: install php
  vars_files:
    - ../var/dir.yml
    - ../var/hos.yml
    - ../var/package.yml
  hosts: "{{ host_ip['php'] }}"
  tasks:
    - name: php yum
      yum: 
        name: libxml2-devel,openssl-devel,curl-devel,libjpeg-devel,libpng-devel,libicu-devel,freetype-devel,openldap-devel,openldap,openldap-devel,gcc,gcc-c++,sqlite-devel,libzip-devel,openssl,libcurl-devel.x86_64,libpng.x86_64,libpng-devel.x86_64,freetype-devel,readline,readline-devel,make
        state: present
    - name: php yum
      shell:
        yum -y install http://mirror.centos.org/centos/8-stream/PowerTools/x86_64/os/Packages/oniguruma-devel-6.8.2-2.el8.x86_64.rpm
    - name: copy php
      copy:
        src: "{{ url_dir }}{{ package['php'] }}.tar.gz" 
        dest: "{{ dow_dir }}"
    - name: unarchive php
      unarchive:
        src: "{{ dow_dir }}{{ package['php'] }}.tar.gz"
        dest: "{{ una_dir }}"
        remote_src: yes

    - name: php configure
      shell: 
        cd "{{ una_dir }}{{ package['php'] }}" && ./configure --prefix=/usr/local/php  --with-config-file-path=/etc  --enable-fpm  --disable-debug  --disable-rpath  --enable-shared  --enable-soap  --with-openssl  --enable-bcmath  --with-iconv  --with-bz2  --enable-calendar  --with-curl  --enable-exif   --enable-ftp  --enable-gd  --with-jpeg  --with-zlib-dir  --with-freetype  --with-gettext  --enable-mbstring  --enable-pdo  --with-mysqli=mysqlnd  --with-pdo-mysql=mysqlnd  --with-readline  --enable-shmop  --enable-simplexml  --enable-sockets  --with-zip  --enable-mysqlnd-compression-support  --with-pear  --enable-pcntl  --enable-posix 

    - name: php make
      shell:
        cd "{{ una_dir }}{{ package['php'] }}" && make -j $(grep 'processor' /proc/cpuinfo | wc -l) && make install
    - name: php copy conf_file
      copy: 
        src: "{{ ins_dir['php'] }}/etc/php-fpm.conf.default" 
        dest: "{{ ins_dir['php'] }}/etc/php-fpm.conf"
        remote_src: yes

    - name: php copy php-fpm.conf
      copy:
        src: "{{ ins_dir['php'] }}/etc/php-fpm.d/www.conf.default" 
        dest: "{{ ins_dir['php'] }}/etc/php-fpm.d/www.conf"
        remote_src: yes

    - name: config listen
      lineinfile:
        path: /usr/local/php/etc/php-fpm.d/www.conf
        regexp: '^listen = '
        line: listen = 192.168.222.139:9000

    - name: config listen.allowed_clients
      lineinfile:  
        path: "{{ ins_dir['php'] }}/etc/php-fpm.d/www.conf"
        regexp: '^;listen.allowed_clients = '
        line: listen.allowed_clients = 192.168.222.137

    - name: php service
      copy:
        dest: /usr/lib/systemd/system/php.service
        content: |
          [Unit]
          Description=php server daemon
          After=network.target 
            
          [Service]
          Type=forking
          ExecStart={{ ins_dir['php'] }}/sbin/php-fpm
          ExecStop=ps -ef |grep php |grep -v grep|awk '{print$2}'|xargs kill 
          ExecReload=/bin/kill -HUP $MAINPID
            
          [Install]
          WantedBy=multi-user.target
    - name: start php
      service:
        name: php.service
        state: restarted
        enabled: yes
  
    - name: var directory
      file:
        path: /var/www
        state: directory

    - name: index.php
      copy:
        dest: /var/www/index.php
        content: |
          <?php
              phpinfo();
          ?>

[root@ansible playbook]# cd ..
[root@ansible playdemo]# ansible-playbook playbook/lnmp.yml -vv
...
PLAY RECAP ***********************************************************************************************
192.168.222.137            : ok=15   changed=13   unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   
192.168.222.138            : ok=16   changed=14   unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   
192.168.222.139            : ok=18   changed=16   unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   

訪問:


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 一:背景 1.講故事 前段時間有位朋友在微信上找到我,說他的程式偶發性崩潰,讓我幫忙看下怎麼回事,上面給的壓力比較大,對於這種偶發性崩潰,比較好的辦法就是利用 AEDebug 在程式崩潰的時候自動抽一管血出來,看看崩潰點是什麼,其實我的系列文章中,關於崩潰類的dump比較少,剛好補一篇上來,話不多說 ...
  • 泛型(Generic) 允許延遲編寫類或方法中的編程元素的數據類型的規範,直到實際在程式中使用它的時候。即定義的時候沒有指定具體的參數類型,把參數類型的聲明推遲到了調用的時候才指定參數類型。 日常代碼編寫中泛型使用較多的類比如List,Dictionary,本次使用泛型重寫List類,加深理解。 首 ...
  • 關於 Air32F103-Template, 項目地址: https://gitee.com/iosetting/air32f103-template, 這是為 GCC Arm 工具鏈準備的 AIR32F103x 項目開發模板 ...
  • 記錄一次sshd服務啟動失敗 問題描述: 伺服器開機之後發現無法通過遠程連接伺服器終端,但是伺服器並未宕機,於是考慮到sshd服務出現異常 解決思路: 查看伺服器sshd服務運行情況 [root@haha-main-130 var]# systemctl status sshd -l ● sshd. ...
  • 結構圖: 環境準備 lvs [root@lvs ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0 TYPE=Ethernet BOOTPROTO=none NAME=eth0 DEVICE=eth0 ONBOOT=yes IPADDR=10.0.0. ...
  • lvs是內核裡面的功能,在內核中叫做ipvs 用戶空間使用ipvsadm這個工具包提供的工具來管理內核中的ipvs功能 ipvsadm 命令 ipvsadm核心功能: 集群服務管理:增、刪、改 集群服務的RS管理:增、刪、改 查看 使用 ipvsadm 管理集群服務:增、改、刪 增、修改: ipvs ...
  • LVS: lvs是一個負載調度器,由內核集成,性能強大,支持百萬計併發。 LVS集群的相關概念: VS:虛擬伺服器,指LVS伺服器自身 RS:提供服務的伺服器 CIP:客戶端ip地址 VIP:lvs伺服器對外發佈的ip地址,用戶通過vip訪問集群 DIP:LVS連內網的ip地址叫DIP,用於接收用戶 ...
  • Docker簡介和安裝 Docker是什麼 Docker 是一個應用打包、分發、部署的工具 你也可以把它理解為一個輕量的虛擬機,它只虛擬你軟體需要的運行環境,多餘的一點都不要, 而普通虛擬機則是一個完整而龐大的系統,包含各種不管你要不要的軟體。 跟普通虛擬機的對比 | 特性 | 普通虛擬機 | Do ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...