第十六周作業(yè)

1、使用ansible的playbook實現(xiàn)自動化安裝httpd

主機:兩臺幢哨,一臺ansible主控端 192.168.17.7/24赡勘,一臺被控端 192.168.17.17/24

[root@ansible ~]# cat /etc/yum.repos.d/base.repo

[development]

name=dvdbase repo

baseurl=file:///mnt/cdrom/

enabled=1

gpgcheck=1

gpgkey=file:///mnt/cdrom/RPM-GPG-KEY-CentOS-7

[aliyunEpel]

name=aliyun epel

baseurl=https://mirrors.aliyun.com/epel/$releasever/$basearch

enabled=1

gpgcheck=1

gpgkey=https://mirrors.aliyun.com/epel/RPM-GPG-KEY-EPEL-$releasever

[root@ansible ~]# yum install -y ansible? #安裝Ansible

配置主機清單,并配置基于key驗證的ssh連接

[root@ansible ~]# vim /etc/ansible/hosts

#添加以下內(nèi)容

[websrvs]

192.168.17.17

#基于Key驗證

[root@ansible ~]# ssh-keygen

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:qehCr9s+C0MGZ4U17a+9FyqIsKJMAoGuRYFJRFxSK4s root@ansible

The key's randomart image is:

+---[RSA 2048]----+

|=B+=+.? ? ? ? ? |

|+.oo...? ? ? ? ? |

|+.+. .? ? ? ? ? |

|o*o? .? .? ? ? |

|Eo+? ? .S? ? ? ? |

|++.? . .. .? ? ? |

|o=oo...o . .? ? |

|* o=+ o o .? ? ? |

|+.o==o ..o? ? ? |

+----[SHA256]-----+

[root@ansible ~]# ssh-copy-id -i /root/.ssh/id_rsa.pub root@192.168.17.17

/usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/root/.ssh/id_rsa.pub"

The authenticity of host '192.168.17.17 (192.168.17.17)' can't be established.

ECDSA key fingerprint is SHA256:TX1biesR1B8Gsz8MuCTPDZKPX3i4E051OkhQK/C9kBI.

ECDSA key fingerprint is MD5:83:8c:bb:e5:b9:a7:45:99:38:fc:5d:c8:89:cf:fb:5f.

Are you sure you want to continue connecting (yes/no)? yes

/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed

/usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys

root@192.168.17.17's password:

Number of key(s) added: 1

Now try logging into the machine, with:? "ssh 'root@192.168.17.17'"

and check to make sure that only the key(s) you wanted were added.

建立playbook文件

[root@ansible ~]# ll files/httpd.conf #準(zhǔn)備httpd的配置文件

-rw-r--r-- 1 root root 11753 Feb 25 19:43 files/httpd.conf

[root@ansible ~]# vim httpd.yml

---

- hosts: websrvs

? remote_user: root

? tasks:

? ? - name: Install httpd

? ? ? yum: name=httpd state=present

? ? - name: Install configure file

? ? ? copy: src=files/httpd.conf dest=/etc/httpd/conf/

? ? - name: start service

? ? ? service: name=httpd state=started enabled=yes

使用playbook文件進(jìn)行httpd服務(wù)的安裝捞镰,并測試

[root@ansible ~]# ansible-playbook httpd.yml

PLAY [websrvs] **********************************************************************************************************************************

TASK [Gathering Facts] **************************************************************************************************************************

ok: [192.168.17.17]

TASK [Install httpd] ****************************************************************************************************************************

changed: [192.168.17.17]

TASK [Install configure file] *******************************************************************************************************************

ok: [192.168.17.17]

TASK [start service] ****************************************************************************************************************************

changed: [192.168.17.17]

PLAY RECAP **************************************************************************************************************************************

192.168.17.17? ? ? ? ? ? ? : ok=4? ? changed=2? ? unreachable=0? ? failed=0? ? skipped=0? ? rescued=0? ? ignored=0

[root@centos7 ~]# ss -ntl|grep 80? ? #被控端查看80端口已經(jīng)打開

LISTEN? ? 0? ? ? 128? ? ? ? :::80? ? ? ? ? ? ? ? ? ? ? :::*? ?

[root@centos7 ~]# ps -aux |grep httpd? ? #服務(wù)也已啟動

root? ? ? 7900? 0.0? 0.2 230408? 5148 ?? ? ? ? Ss? 19:48? 0:00 /usr/sbin/httpd -DFOREGROUND

apache? ? 7902? 0.0? 0.1 232492? 3152 ?? ? ? ? S? ? 19:48? 0:00 /usr/sbin/httpd -DFOREGROUND

apache? ? 7903? 0.0? 0.1 232492? 3152 ?? ? ? ? S? ? 19:48? 0:00 /usr/sbin/httpd -DFOREGROUND

apache? ? 7904? 0.0? 0.1 232492? 3152 ?? ? ? ? S? ? 19:48? 0:00 /usr/sbin/httpd -DFOREGROUND

apache? ? 7905? 0.0? 0.1 232492? 3152 ?? ? ? ? S? ? 19:48? 0:00 /usr/sbin/httpd -DFOREGROUND

2闸与、建立httpd服務(wù)器毙替,要求提供兩個基于名稱的虛擬主機:?

(1)www.X.com,頁面文件目錄為/web/vhosts/x;錯誤日志為

/var/log/httpd/x.err践樱,訪問日志為/var/log/httpd/x.access

(2)www.Y.com厂画,頁面文件目錄為/web/vhosts/y;錯誤日志為?/var/log/httpd/www2.err,訪問日志為/var/log/httpd/y.access

(3)為兩個虛擬主機建立各自的主頁文件index.html拷邢,內(nèi)容分別為其對應(yīng)的主機名

#建立主機網(wǎng)頁目錄

[root@centos7 ~]# mkdir -p /web/vhosts/{x,y}

#授權(quán)apache用戶訪問

[root@centos7 ~]# chown -R root:apache /web

#建立各虛擬主機的主頁文件index.html

[root@centos7 ~]# echo www.x.com > /web/vhosts/x/index.html

[root@centos7 ~]# echo www.y.com > /web/vhosts/y/index.html

#建立虛擬主機配置

[root@centos7 ~]# vim /etc/httpd/conf.d/vhosts.conf

<VirtualHost *:80>

? ? ? ? ServerName www.x.com

? ? ? ? DocumentRoot "/web/vhosts/x"

? ? ? ? ErrorLog "/var/log/httpd/x.err"? ? #錯誤日志

? ? ? ? CustomLog "/var/log/httpd/x.access" combined? ? #訪問日志

? ? ? ? <Directory "/web/vhosts/x">

? ? ? ? ? ? ? ? Options None

? ? ? ? ? ? ? ? AllowOverride None

? ? ? ? ? ? ? ? Require all granted

? ? ? ? </Directory>

</VirtualHost>

<VirtualHost *:80>

? ? ? ? ServerName www.y.com

? ? ? ? DocumentRoot "/web/vhosts/y"

? ? ? ? ErrorLog "/var/log/httpd/www2.err"? ? #錯誤日志

? ? ? ? CustomLog "/var/log/httpd/y.access" combined? ? #訪問日志

? ? ? ? <Directory "/web/vhosts/y">

? ? ? ? ? ? ? ? Options None

? ? ? ? ? ? ? ? AllowOverride None

? ? ? ? ? ? ? ? Require all granted

? ? ? ? </Directory>

</VirtualHost>

#重啟httpd服務(wù)

[root@centos7 ~]# systemctl restart httpd

#創(chuàng)建本地解析

[root@centos7 ~]# vim /etc/hosts

127.0.0.1? localhost localhost.localdomain localhost4 localhost4.localdomain4

::1? ? ? ? localhost localhost.localdomain localhost6 localhost6.localdomain6

192.168.17.17? www.x.com? ? #添加此行

192.168.17.17? www.y.com? ? #添加此行

#本地訪問測試

[root@centos7 ~]# curl www.x.com

www.x.com

[root@centos7 ~]# curl www.y.com

www.y.com

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末袱院,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子瞭稼,更是在濱河造成了極大的恐慌忽洛,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,123評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件环肘,死亡現(xiàn)場離奇詭異欲虚,居然都是意外死亡,警方通過查閱死者的電腦和手機廷臼,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,031評論 2 384
  • 文/潘曉璐 我一進(jìn)店門苍在,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人荠商,你說我怎么就攤上這事寂恬。” “怎么了莱没?”我有些...
    開封第一講書人閱讀 156,723評論 0 345
  • 文/不壞的土叔 我叫張陵初肉,是天一觀的道長。 經(jīng)常有香客問我饰躲,道長牙咏,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,357評論 1 283
  • 正文 為了忘掉前任嘹裂,我火速辦了婚禮妄壶,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘寄狼。我一直安慰自己丁寄,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,412評論 5 384
  • 文/花漫 我一把揭開白布泊愧。 她就那樣靜靜地躺著伊磺,像睡著了一般。 火紅的嫁衣襯著肌膚如雪删咱。 梳的紋絲不亂的頭發(fā)上屑埋,一...
    開封第一講書人閱讀 49,760評論 1 289
  • 那天,我揣著相機與錄音痰滋,去河邊找鬼摘能。 笑死续崖,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的团搞。 我是一名探鬼主播袜刷,決...
    沈念sama閱讀 38,904評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼莺丑!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起墩蔓,我...
    開封第一講書人閱讀 37,672評論 0 266
  • 序言:老撾萬榮一對情侶失蹤梢莽,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后奸披,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體昏名,經(jīng)...
    沈念sama閱讀 44,118評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,456評論 2 325
  • 正文 我和宋清朗相戀三年阵面,在試婚紗的時候發(fā)現(xiàn)自己被綠了轻局。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,599評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡样刷,死狀恐怖仑扑,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情置鼻,我是刑警寧澤镇饮,帶...
    沈念sama閱讀 34,264評論 4 328
  • 正文 年R本政府宣布,位于F島的核電站箕母,受9級特大地震影響储藐,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜嘶是,卻給世界環(huán)境...
    茶點故事閱讀 39,857評論 3 312
  • 文/蒙蒙 一钙勃、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧聂喇,春花似錦辖源、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,731評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至跛十,卻和暖如春彤路,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背芥映。 一陣腳步聲響...
    開封第一講書人閱讀 31,956評論 1 264
  • 我被黑心中介騙來泰國打工洲尊, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留远豺,地道東北人。 一個月前我還...
    沈念sama閱讀 46,286評論 2 360
  • 正文 我出身青樓坞嘀,卻偏偏與公主長得像躯护,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子丽涩,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,465評論 2 348