기본구조
yum install -y jq
yum install -y jq #jq를 설치해줍니다.
jq를 설치해줍니다.
curl란?
서버와 통신할 수 있는 커맨드 명령이 툴로, 웹개발에 많이 사용되는 무료 오픈소스다.
기본구조
yum install -y curl
yum install -y curl #curl를 설치해줍니다.
curl를 설치해줍니다.
사용 예시
curl localhost/health
sudo yum update -y
sudo yum install httpd - y
sudo systemctl start httpd
sudo systemctl enable httpd
(혹은 systemctl enable --now httpd)
아파치로 문자열 띄우기
mkdir -p /var/www/html/index.html
echo "(문자열)" > /var/www/html/index.html / var/www/html 이라는 경로 안에 있는 index.html(Apache 화면에 띄울 파일)의
전에 있던 내용을 삭제하고 내가 원하는 문자열을 넣어준다. /