91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何利用Saltstack批量部署apache

發布時間:2020-06-03 13:54:33 來源:億速云 閱讀:301 作者:Leah 欄目:系統運維

如何利用Saltstack批量部署apache?相信很多新手小白還沒學會這個技能,通過這篇文章的總結,希望你能學會利用Saltstack批量部署apache

實驗環境準備
名稱角色地址
centos7-minmaster192.168.142.172
centos7-min2client192.168.142.110
實驗步驟

一、主服務器——控制節點

安裝epel源并安裝控制端

yum install -y epel-release  //安裝epel源

yum -y install salt-master   //安裝控制端

修改控制端主配置文件

vi /etc/salt/master
//修改如下:
15行 interface: 192.168.142.172   //監聽地址
215行 auto_accept: True        //避免要運行salt-key來確認證書認證
416行 file_roots:
          base:
          - /srv/salt           //saltstack文件根目錄位置,目錄需要手動進行創建
710行組分類:(這里實驗環境只有一臺客戶端,僅設置一個即可)
nodegroups:
  group1: 'web01.saltstack.com'

552行 pillar_opts: True        //開啟pillar功能,同步文件功能
529行 
pillar_roots:
          base:
          - /srv/pillar         //pillar的主目錄,需要手動進行創建

建立salt&pillar目錄

mkdir /srv/salt
mkdir /srv/pillar

啟動服務并關閉核心防護功能

systemctl start salt-master
systemctl enable salt-master
//關閉核心功能
setenforce 0

檢測服務啟動狀況

netstat -anpt | egrep '4505|4506'
//4505為salt的消息發布專用端口;
//4506為客戶端與服務端通信的端口
tcp        0      0 192.168.142.172:4505    0.0.0.0:*               LISTEN      13692/python
tcp        0      0 192.168.142.172:4506    0.0.0.0:*               LISTEN      13704/python
tcp        0      0 192.168.142.172:4506    192.168.142.110:36688   ESTABLISHED 13704/python
tcp        0      0 192.168.142.172:4505    192.168.142.110:57042   ESTABLISHED 13692/python

二、從服務器——被控制節點

安裝epel源并安裝被控制端

yum install -y epel-release  //安裝epel源

yum -y install salt-minion   //安裝被控制端

修改被控端配置文件

vi /etc/salt/minion
//修改配置如下:
16行 master: 192.168.172.142     //指定主控端IP
78行 id: web01.saltstack.com     //指定被控端主機名

啟動服務

//啟動被控端服務
systemctl start salt-minion

在主控端進行檢查

//在主控端測試與被控端的通信狀態(*號代表所有被控主機)
salt '*' test.ping
web01.saltstack.com:
    True

//檢查密鑰情況
salt-key -L
Accepted Keys:
web01.saltstack.com
Denied Keys:
Unaccepted Keys:
web01.saltstack.com
Rejected Keys:
注意:

檢查時出現以下情況:
Salt request timed out. The master is not responding. If this error persists after verifying the master is up, worker_threads may need to be increased.
請自行檢查配置文件格式或者重啟服務器。

三、批量部署Apache

以下所有操作均在master端進行
cd /srv/salt/
vim top.sls
//按下圖進行添加
base:
  '*':
    - apache
//在所有的客戶端執行apache模塊

vim apache.sls
//按下圖進行添加
apache-service:
  pkg.installed:
    - names:
      - httpd
      - httpd-devel
  service.running:
    - name: httpd
    - enable: True

//重啟服務
systemctl restart salt-master.service

//執行批量部署命令
salt '*' state.highstate
//執行完成后出現以下信息即為成功
web01.saltstack.com:
----------
          ID: apache-service
    Function: pkg.installed
        Name: httpd
      Result: True
     Comment: The following packages were installed/updated: httpd
     Started: 15:04:51.323952
    Duration: 40217.299 ms
     Changes:
              ----------
              apr:
                  ----------
                  new:
                      1.4.8-5.el7
                  old:
              apr-util:
                  ----------
                  new:
                      1.5.2-6.el7
                  old:
              httpd:
                  ----------
                  new:
                      2.4.6-90.el7.centos
                  old:
              httpd-tools:
                  ----------
                  new:
                      2.4.6-90.el7.centos
                  old:
              mailcap:
                  ----------
                  new:
                      2.1.41-2.el7
                  old:
----------
          ID: apache-service
    Function: pkg.installed
        Name: httpd-devel
      Result: True
     Comment: The following packages were installed/updated: httpd-devel
     Started: 15:05:31.545046
    Duration: 16876.92 ms
     Changes:
              ----------
              apr-devel:
                  ----------
                  new:
                      1.4.8-5.el7
                  old:
              apr-util-devel:
                  ----------
                  new:
                      1.5.2-6.el7
                  old:
              cyrus-sasl:
                  ----------
                  new:
                      2.1.26-23.el7
                  old:
                      2.1.26-21.el7
              cyrus-sasl-devel:
                  ----------
                  new:
                      2.1.26-23.el7
                  old:
              cyrus-sasl-gssapi:
                  ----------
                  new:
                      2.1.26-23.el7
                  old:
                      2.1.26-21.el7
              cyrus-sasl-lib:
                  ----------
                  new:
                      2.1.26-23.el7
                  old:
                      2.1.26-21.el7
              cyrus-sasl-md5:
                  ----------
                  new:
                      2.1.26-23.el7
                  old:
                      2.1.26-21.el7
              cyrus-sasl-plain:
                  ----------
                  new:
                      2.1.26-23.el7
                  old:
                      2.1.26-21.el7
              cyrus-sasl-scram:
                  ----------
                  new:
                      2.1.26-23.el7
                  old:
                      2.1.26-21.el7
              expat-devel:
                  ----------
                  new:
                      2.1.0-10.el7_3
                  old:
              httpd-devel:
                  ----------
                  new:
                      2.4.6-90.el7.centos
                  old:
              libdb:
                  ----------
                  new:
                      5.3.21-25.el7
                  old:
                      5.3.21-20.el7
              libdb-devel:
                  ----------
                  new:
                      5.3.21-25.el7
                  old:
              libdb-utils:
                  ----------
                  new:
                      5.3.21-25.el7
                  old:
                      5.3.21-20.el7
              openldap:
                  ----------
                  new:
                      2.4.44-21.el7_6
                  old:
                      2.4.44-5.el7
              openldap-devel:
                  ----------
                  new:
                      2.4.44-21.el7_6
                  old:
----------
          ID: apache-service
    Function: service.running
        Name: httpd
      Result: True
     Comment: Service httpd has been enabled, and is running
     Started: 15:05:48.459684
    Duration: 1822.995 ms
     Changes:
              ----------
              httpd:
                  True

Summary
------------
Succeeded: 3 (changed=3)
Failed:    0

四、檢查試驗結果

web01:
[root@web01 ~]# rpm -q httpd
httpd-2.4.6-90.el7.centos.x86_64
[root@web01 ~]# netstat -ntap | grep 80
tcp6       0      0 :::80                   :::*                  LISTEN      6

看完這篇文章,你們學會利用Saltstack批量部署apache的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

渑池县| 沧州市| 黄龙县| 朝阳市| 寿阳县| 武隆县| 鄂托克前旗| 贡觉县| 泰州市| 屏山县| 沙河市| 邓州市| 榆林市| 浮山县| 繁昌县| 靖西县| 永清县| 邢台市| 南昌县| 新安县| 虞城县| 商丘市| 招远市| 茌平县| 余江县| 安国市| 汽车| 武定县| 通许县| 开化县| 家居| 怀集县| 武强县| 拉萨市| 新泰市| 清原| 湖北省| 延庆县| 漳州市| 翼城县| 永嘉县|