[AWS-NETWORK] Route53를 공부하기 위한 DNS 이론
·
IT Study/AWS & Server, Network
1. DNS란? DNS는 Domain Name System의 약자이다. 사람들이 자주 사용하는 google.com, naver.com, 등.. 아주 많은 사이트는 각각의 IP Address를 가지고 있다. 하지만 우리는 IP Address를 입력하여 사이트에 접속하는 경우는 매우 드물다. 사람들이 조금 더 보기 쉽고, 편한 Domain Name을 통해서 인터넷을 편하게 사용한다. DNS는 IP Address를 Domain Name으로 변환(정방향 조회)하고, Domain Name을 IP Address로 변환(역방향 조회)하는 편리한 역할을 한다. 2. DNS의 작동방식 DNS 구성을 보면 상위 도메인(.org, .com, .net, 등) 밑에 하위 도메인이 있는 구조로 되어있다. 최상위 DNS를 통해 하..
[AWS] ELB(Elastic Load Balancer) 이론 & 실습
·
IT Study/AWS & Server, Network
1. Elastic Load Balacer 란? Amazon Web Service를 공부하다 보면 로드밸런서라는 용어를 한 번쯤은 들어봤을 것이다. 로드밸런서는 다수의 컴퓨팅 리소스(EC2, Lambda, 등)를 부하 분산시켜주는 아주 중요한 서비스이다. 로드밸런서의 가장 대표적인 효과로는 부하를 분산하며, 가용성과 내결함성을 증가시키는 효과가 있다. 로드밸런서는 타겟 그룹을 통해 주기적으로 Healthcheck를 수행하여 컴퓨팅 리소스에 장애가 발생할 경우 해당 인스턴스로 요청을 전달하지 않고, 다른 인스턴스로 전달하여 가용성과 내결함성을 높인다. 2. Application vs Network Elastic Load Balancer을 자세히 살펴보면 Application Load Balancer, Ne..
[C] codeup 기초 100제[1081:1099]
·
IT Study/Programming
코드업 기초 100제 풀이 (내코드) 1081 #include int main(){ int n,m,i,j; scanf("%d %d",&n,&m); for(i=1;i
[C] codeup 기초 100제[1061:1080]
·
IT Study/Programming
코드업 기초 100제 풀이 (내코드) 1061 #include int main(){ int a,b; scanf("%d %d",&a,&b); printf("%d",a|b); return 0; } 1062 #include int main(){ int a, b; scanf("%d%d", &a, &b); printf("%d\n", a^b); return 0; } 1063 #include int main() { int a,b; scanf("%d %d",&a,&b); printf("%d",a>b ? a:b); return 0; } 1064 #include int main() { int a,b,c; scanf("%d %d %d", &a,&b,&c); printf("%d",(a
[C] codeup 기초 100제[1041:1060]
·
IT Study/Programming
코드업 기초 100제 풀이 (내코드) 1041 #include int main() { int a; scanf("%c", &a); printf("%c\n" , a+1); return 0; } 1042 #include int main() { int a,b; scanf("%d %d",&a,&b); printf("%d \n" , a/b); return 0; } 1043 #include int main() { int a,b; scanf("%d %d",&a,&b); printf("%d \n" , a%b); return 0; } 1044 #include int main() { long long a; scanf("%lld",&a); printf("%lld \n",++a); return 0; } 1045 #include..
[C] codeup 기초 100제[1021:1040]
·
IT Study/Programming
코드업 기초 100제 풀이 (내코드) 1021 #include int main(){ char sentense[51]; scanf("%s",&sentense); printf("%s\n",sentense); return 0; } 1022 #include int main(){ char sentense[2001]; fgets(sentense,2000,stdin); printf("%s\n",sentense); return 0; } 1023 #include int main(){ int a,b; scanf("%d.%d",&a,&b); printf("%d\n%d",a,b); return 0; } 1024 #include int main(){ char sen[30]; int i; scanf("%s",&sen); for(..
ITguny
'IT Study' 카테고리의 글 목록 (5 Page)