programing

EC2 인스턴스에서 웹 서버 포트를 여는 방법

nasanasas 2020. 9. 14. 21:15
반응형

EC2 인스턴스에서 웹 서버 포트를 여는 방법


0.0.0.0:8787EC2 인스턴스 에서 CherryPy 웹 서버를 실행하고 있습니다.

wgetEC2 머신에서 로컬 통해 웹 서버에 연결할 수 있지만 내 원격 머신에서 인스턴스에 연결할 수 없습니다 (ssh를 통해 EC2에 연결).

웹 서버에 원격으로 액세스하려면 포트 8787을 열어야합니까? 그렇다면 어떻게 할 수 있습니까? 또한이를 위해 EC2 인스턴스의 퍼블릭 IP를 사용할 수 있습니까?


드롭 다운을 사용하는 대신 이 답변에 설명 된 단계를 따르고 "포트 범위"에 포트 (8787)를 입력 한 다음 "규칙 추가"를 입력하십시오.

Go to the "Network & Security" -> Security Group settings in the left hand navigation

여기에 이미지 설명 입력인스턴스가 떨어져있는 보안 그룹 찾기 인바운드 규칙을 클릭 여기에 이미지 설명 입력하십시오. 드롭 다운을 사용하고 HTTP (포트 80)를 추가 여기에 이미지 설명 입력하십시오. 적용을 클릭하고 즐기십시오.


You need to open TCP port 8787 in the ec2 Security Group. Also need to open the same port on the EC2 instance's firewall.


You need to configure the security group as stated by cyraxjoe. Along with that you also need to open System port. Steps to open port in windows :-

  1. On the Start menu, click Run, type WF.msc, and then click OK.
  2. In the Windows Firewall with Advanced Security, in the left pane, right-click Inbound Rules, and then click New Rule in the action pane.
  3. In the Rule Type dialog box, select Port, and then click Next.
  4. In the Protocol and Ports dialog box, select TCP. Select Specific local ports, and then type the port number , such as 8787 for the default instance. Click Next.
  5. In the Action dialog box, select Allow the connection, and then click Next.
  6. 프로필 대화 상자에서 연결할 때 컴퓨터 연결 환경을 설명하는 프로필을 선택하고 다음을 클릭합니다.
  7. 이름 대화 상자에서이 규칙의 이름과 설명을 입력 한 다음 마침을 클릭합니다.

참조 :- 포트 열기를위한 Microsoft Docs

참고 URL : https://stackoverflow.com/questions/17161345/how-to-open-a-web-server-port-on-ec2-instance

반응형