1. Chạy LAB
Copy 6 lệnh dưới → dán trên PowerShell bằng cách click chuột phải
→ không phải gõ gõ từng lệnh mất thời gian
Chạy 6 lệnh sau trên Powershell quyền Administrator → dấu # là giải thích (comment)
# Giả sử có ổ đĩa D:
# Tạo thư mục D:ansible-lab01 + chuyển vào thư mục
mkdir D:ansible-lab01 > $null ; cd D:ansible-lab01
# Khai báo biến là link tới file cần download
$URL="https://devsecops.edu.vn/wp-content/uploads/2023/11/ansible-lab01-4ahCHgNXhqXdjP99wbIbRTsbICqJKv.zip"
# Download file zìa
Invoke-WebRequest -URI $URL -OutFile ansible-lab01.zip
# Giải nén file + đổi tên
Expand-Archive ansible-lab01.zip -DestinationPath .
# Coi trong thư mục đang đứng có gì
dir
# Tạo máy ảo + chạy LAB từ A tới Á
vagrant up
2. Các file nội dung mới nhất ở đây
Vagrantfile
Vagrant.configure("2") do |config|
config.vm.define "ansiblecontainer" do |ansiblecontainer|
ansiblecontainer.vm.box = "ubuntu/jammy64"
ansiblecontainer.vm.hostname = 'ubuntu2204'
ansiblecontainer.vm.provider :virtualbox do |v|
v.gui = true
v.cpus = 2
v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
v.customize ["modifyvm", :id, "--memory", 2048]
v.customize ["modifyvm", :id, "--name", "Ansible-Inventory-1VM-3Container-Docker-CLI-Password-Authen"]
end
ansiblecontainer.vm.provision "shell", path: "install.sh"
ansiblecontainer.vm.provision "shell", path: "by-docker-cli.sh"
end
end
install.sh
#!/bin/bash
echo -e "n1. Cài Docker, docker-composen"
apt update && apt install docker.io docker-compose pip -y
systemctl status docker
echo -e "n2. Cài Ansiblen"
# Cài sshpass để Ansible SSH tới các node được = password authen
apt -y install ansible-core sshpass
ansible --version
# Chép file config của Ansible
mkdir /etc/ansible
cp /vagrant/ansible.cfg /etc/ansible/
cp /vagrant/hosts /etc/ansible/
# Sửa lỗi https://devsecops.edu.vn/ansible-control-node-tren-ubuntu-server-2204-loi-ansible-galaxy/
pip install -Iv 'resolvelib<0.6.0'
# Cài collection community.general để chạy được lệnh apk
# https://docs.ansible.com/ansible/latest/collections/community/general/apk_module.html
ansible-galaxy collection install community.general
echo -e "n3. Xem Ansible collection đã càin"
ansible-galaxy collection list
# END
by-docker-cli.sh
#!/bin/bash
echo -e "n1. Build 3 container imagen"
# Build AlmaLinux 9.2 chạy OpenSSH Server
cd /vagrant/normal/alma92
docker build -t devsecops.edu.vn/alma92-ssh-cli:1.0 .
docker run --name alma92-cli -d devsecops.edu.vn/alma92-ssh-cli:1.0
# Build Ubuntu Server 22.04.3 chạy OpenSSH Server
cd /vagrant/normal/ubuntu2204
docker build -t devsecops.edu.vn/ubuntu2204-ssh-cli:1.0 .
docker run --name ubuntu2204-cli -d devsecops.edu.vn/ubuntu2204-ssh-cli:1.0
# Build Alpine Linux 3.18 chạy OpenSSH Server
cd /vagrant/normal/alpine318
docker build -t devsecops.edu.vn/alpine318-ssh-cli:1.0 .
docker run --name alpine318-cli -d devsecops.edu.vn/alpine318-ssh-cli:1.0
echo -e "n2. 3 Container image đã build (Read Only)n"
docker image ls
echo -e "n3. 3 Container đang chạy (Read Write)n"
docker container ls
echo -e "n4. Cấu hình Ansible Inventory với 3 container đang chạyn"
# Lấy 3 IP của 3 Container đang chạy
export Alma92_IP=$(docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' alma92-cli)
export Ubuntu2204_IP=$(docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' ubuntu2204-cli)
export Alpine318_IP=$(docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' alpine318-cli)
# Thay 3 IP của 3 Container vào file Ansible Inventory dưới
sed -i "s/alma92_ip_cli/$Alma92_IP/" /etc/ansible/hosts
sed -i "s/ubuntu2204_ip_cli/$Ubuntu2204_IP/" /etc/ansible/hosts
sed -i "s/alpine318_ip_cli/$Alpine318_IP/" /etc/ansible/hosts
echo -e "n4.1 Ansible inventory coi group có 3 container đang chạyn"
ansible-inventory --graph
echo -e "n4.2 Ansible ping 3 node là 3 container đang chạyn"
ansible sshnormal_cli -m ping
echo -e "n4.3 Ansible chạy lịnh tới 3 containern"
ansible sshnormal_cli -a 'cat /etc/os-release'
echo -e "n4.4 Ansible chạy playbook tới 3 containern"
ansible-playbook /vagrant/web-server.yml
# END
ansible.cfg
[defaults]
host_key_checking=False
# Sửa lỗi
# https://devsecops.edu.vn/ansible-galaxy-bi-loi-gi-vay-khi-cai-ansible-collections/
[galaxy]
server = https://old-galaxy.ansible.com/
hosts
[sshnormal_cli]
alma92_ip_cli
ubuntu2204_ip_cli
alpine318_ip_cli
[all:vars]
ansible_user=root
ansible_password=1
web-server.yml
---
- hosts: sshnormal_cli
tasks:
- name: Cài Apache Web Server mới nhứt trên Ubuntu 22.04
apt:
name: apache2
when: ansible_distribution == "Ubuntu"
- name: Cài Apache Web Server mới nhứt trên AlmaLinux 9
yum:
name: httpd
when: ansible_distribution == "AlmaLinux"
- name: Cài Apache Web Server mới nhứt trên Alpine Linux 3.18
apk:
name: apache2
state: present
when: ansible_distribution == "Alpine"
# Lấy cục container image zìa
FROM almalinux:9.2
# Cài openssh server + client + các tool mần lab
RUN dnf -y install openssh-server openssh-clients passwd iproute
# Trên dòng EL, start ssh cần có các host key --> k có --> lỗi
# --> Tạo thêm 2 host key
RUN ssh-keygen -f /etc/ssh/ssh_host_rsa_key -N '' -C 'DevSecOps.Edu.VN' -t rsa
RUN ssh-keygen -f /etc/ssh/ssh_host_ecdsa_key -N '' -C 'DevSecOps.Edu.VN' -t ecdsa
#Đổi password cho root
RUN echo "1" | passwd root --stdin
EXPOSE 22
# Do hổng có systemd start dịch vụ sshd
# Chạy sshd trực tiếp bằng lịnh dưới
CMD ["/usr/sbin/sshd", "-D"]
# Như docker pull alpine:3.18.2
FROM alpine:3.18.2
# Cài python3 để Ansible Control Node móc vào được
RUN apk add openssh-server openssh-client iproute2 python3
# Cho SSH = root và = password
RUN echo 'PasswordAuthentication yes' >> /etc/ssh/sshd_config
RUN echo 'PermitRootLogin yes' >> /etc/ssh/sshd_config
# Tạo SSH host key
RUN ssh-keygen -A
# Set password root là 1
RUN echo 'root:1' | chpasswd
# Tạo file cần thiết start được SSH
RUN mkdir -p /run/openrc
RUN touch /run/openrc/softlevel
EXPOSE 22
CMD ["/usr/sbin/sshd", "-D"]
# Lấy cục container image zìa, nó là read only nhen
FROM ubuntu:22.04
# Cài openssh server, openssh-client
RUN apt update
RUN apt -y install openssh-server openssh-client iproute2 init-system-helpers
# Set password root là 1
RUN echo "root:1" | chpasswd
# Cho SSH = root và = password
RUN echo "PermitRootLogin yes" >> /etc/ssh/sshd_config
RUN echo "PasswordAuthentication yes" >> /etc/ssh/sshd_config
# Start dịch vụ SSH
RUN service ssh start
EXPOSE 22
# Do hổng có systemd start dịch vụ sshd
# Chạy sshd trực tiếp bằng lịnh dưới
CMD ["/usr/sbin/sshd", "-D"]