IT와 일상다반사

ssh로 aws-ec2 연결해서 http 서비스 올리기 본문

aws기초

ssh로 aws-ec2 연결해서 http 서비스 올리기

Ch-Phillip 2022. 12. 24. 12:10
반응형

ssh -i "lecture-test.pem" ec2-user@ec2-x-xxx-xxxxx.ap-northeast-2.compute.amazonaws.com

 

접속후

sudo -s

 

http 서비스 설치

yum install httpd -y

 

http 서비스 시작

service httpd start

 

--서버 재시작시 자동 실행

chkconfig httpd on

 

 

filezilla 에서 var/www/html에 파일 업로드 하면 됨.

반응형
Comments