참고 : https://hgk5722.tistory.com/556
Server -> init Script -> 생성
#!/bin/bash yum update -y yum install -y httpd service httpd start chkconfig httpd on echo "<html><h1>Success, Test1</h1></html>" > /var/www/html/index.html