1
--------------------------
2
실습
서버에 웹 서비스 올리기
#!/bin/bash
sudo yum install httpd -y
echo "Server 3" | sudo tee /var/www/html/index.html
sudo systemctl start httpd
#!/bin/bash
sudo yum install httpd -y
echo "Server 4" | sudo tee /var/www/html/index.html
sudo systemctl start httpd
3
서버에 웹 서비스 올리기
다음
https://brunch.co.kr/@topasvga/5630