EC2 인스턴스에서 웹 서버 포트를 여는 방법
0.0.0.0:8787
EC2 인스턴스 에서 CherryPy 웹 서버를 실행하고 있습니다.
wget
EC2 머신에서 로컬 을 통해 웹 서버에 연결할 수 있지만 내 원격 머신에서 인스턴스에 연결할 수 없습니다 (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 :-
- On the Start menu, click Run, type WF.msc, and then click OK.
- In the Windows Firewall with Advanced Security, in the left pane, right-click Inbound Rules, and then click New Rule in the action pane.
- In the Rule Type dialog box, select Port, and then click Next.
- 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.
- In the Action dialog box, select Allow the connection, and then click Next.
- 프로필 대화 상자에서 연결할 때 컴퓨터 연결 환경을 설명하는 프로필을 선택하고 다음을 클릭합니다.
- 이름 대화 상자에서이 규칙의 이름과 설명을 입력 한 다음 마침을 클릭합니다.
참조 :- 포트 열기를위한 Microsoft Docs
참고 URL : https://stackoverflow.com/questions/17161345/how-to-open-a-web-server-port-on-ec2-instance
'programing' 카테고리의 다른 글
UIBezierPath가 Core Graphics 경로보다 빠른 이유는 무엇입니까? (0) | 2020.09.14 |
---|---|
페이지 URI에 상대적인 WebSocket URI를 구성하는 방법은 무엇입니까? (0) | 2020.09.14 |
CMakeLists.txt : 30 (프로젝트)의 CMake 오류 : CMAKE_C_COMPILER를 찾을 수 없습니다. (0) | 2020.09.14 |
준비된 파일의 Git 목록 (0) | 2020.09.14 |
프라 미스를 사용할 때 클래스 메서드 내에서 'this'가 정의되지 않은 이유는 무엇입니까? (0) | 2020.09.14 |