리눅스에서는 hosts 에서 ip,도메인 주소를 등록해야만 연결이 가능하기 때문에 발생하는 에러입니다!
cd ~/etc
# 만약 권한이 없다면
chmod 777 hosts
vi hosts
...
# 초기값
127.0.0.1 localhost
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
...
아래와 같이 접근할 외부 서버 주소를 추가해주면 됩니다.
# 외부 서버 주소 추가
127.0.0.1 localhost
172.31.14.49 ip-172-31-14-49.ap-northeast-2.compute.internal # config & eureka server
172.10.3.183 ip-172-10-3-183.ap-northeast-2.compute.internal # auth server
172.31.36.116 ip-172-31-36-116.ap-northeast-2.compute.internal # user server
172.10.3.183 ncns-auth
172.31.36.116 ncns-user
{프라이빗 IPv4 주소} {프라이빗 IP DNS 이름(IPv4만 해당)}
...