1、通過ansible roles編排實現 httpd 角色的部署
##劇本檔案結構建立
##http服務主劇本模組定義
cat main.yml
- include: group.yml
- include: user.yml
- include: install.yml
- include: config.yml
- include: index.yml
- include: service.yml
##http服務組建立
cat group.yml
- name: create apache group
group: name=apache system=yes gid=80
##http服務使用者建立
cat user.yml
- name: create apache user
user: name=apache system=yes shell=/sbin/nologin home=/var/www/ uid=80 group=apache
##http服務包安裝
##http服務配置檔案拷貝觸發器定義
##http服務測試頁面拷貝
cat index.yml
- name: index.html
copy: src=index.html dest=/var/www/html/
##http服務啟動
##http服務觸發器呼叫重啟
##http服務測試頁面配置
##劇本呼叫
注意需要配置: /etc/ansible/hosts
10.0.0.8
10.0.0.7
##測試劇本
##安裝
##測試http服務
curl 10.0.0.7
curl 10.0.0.8
2、簡述 mysql 資料庫訪問的執行過程。
1.客戶端與資料庫服務通訊(聯結器)
2.查詢快取(快取)
3.查詢優化處理(分析器,優化器,執行器)
4.呼叫儲存引擎(引擎介面)
5.返回客戶端
3、s e l e c t 語句的完整語法較複雜,但至少包括的部分是 (b )
a.僅 s e l e c
b.s e l e c t ,f r o m
c.s e l e c t ,g r o u p
d.s e l e c t ,i n t o
4、一張表的主鍵個數為 ( c)
a.至多 3 個 b.沒有限制
c.至多 1 個 d.至多 2 個
部落格第13周
1 對稱加密過程由那三部分組成 加密 傳送方將原始資訊經過對稱金鑰加密形成密文 資料傳輸 密文通過網路傳送到接收方 解密 接收方收到密文後用對稱金鑰進行解密產生明文 2 使用 openssl 中的 aes 對稱加密演算法對檔案 file.txt 進行加密,然後解密 openssl enc e aes...
部落格第9周
1.計算 100 以內所有能被 3 整除的整數之和 bin bash sum 0 for i in do if 0 eq i 3 then echo i let sum i fiecho sum sum done 或seq s 3 3 100 bc 2.編寫指令碼,求 100 以內所有正奇數之和 b...
部落格第8周
1 使用sed 命令列印 etc passwd檔案的奇數行 1 sed n 1 2p etc passwd 2 使用sed 命令 將 etc passwd 檔案從2到10行中的bin 替換成linux?2 sed n 2,10s bin linux gp etc passwd 3 使用sed 命令顯...