전체 글
1,965개의 글
Azure 70-533 (Implementing Microsoft Azure Infrastructure Solutions) Free Dump - Part 1 (15)
[문제01] You administer an Azure Web Site named contoso. The development team has implemented changes to the web…
Azure Tier에 따른 Database Recovery (복구)
1. 비교 BCDR option Basic tier Standard tier Premium tier Point In Time Restore Any restore point within 7 days …
Azure PowerShell - Get-AzureWebsiteLog
1. 개요 This topic describes the cmdlet in the 0.8.10 version of the Microsoft Azure PowerShell module. To get t…
Azure PowerShell - Set-AzureSubnet
1. 개요 The Set-AzureSubnet cmdlet sets the subnet list for a virtual machine configuration. Use with New-AzureV…
Azure CDN(Content Delivery Network)에 대하여
1. 개요 CDN 은 비단 Azure에만 존재하는 것이 아니다. 아마존 웹 서비스 에는 CloudFront 가 있다. Azure CDN(Content Delivery Network)은 전략적으로 배…
BACPAC 파일을 이용하여 Azure SQL Database을 Export 하기
1. 개요 BACPAC 파일은 메타데이터 및 SQL Server 데이터베이스의 데이터를 포함하는 BACPAC의 확장명을 가진 ZIP 파일입니다. 2. 절차 Get-Credential New-Azur…
Cloud Computing & MSAAzure의 Azure AD Connect에 대하여
1. 소개 설치에 더 많은 옵션이 필요한 경우 Azure AD Connect 사용자 지정 설정을 사용합니다. 여러 포리스트가 있는 경우 또한 빠른 설치에서 다루지 않는 선택적 기능을 구성하려는 경우…
Azure PowerShell - Set-AzureOSDisk
1. 개요 The Set-AzureOSDisk cmdlet modifies the host cache mode of the operating system disk of an Azure virtual…
Azure Resource Manager (ARM) 에 대하여
1. Azure Resource Manager (ARM) 에 대하여 응용 프로그램에 대한 인프라는 일반적으로 가상 컴퓨터, 저장소 계정 및 가상 네트워크 또는 웹앱, 데이터베이스, 데이터베이스 서버…
Azure PowerShell - New-AzureRmResourceGroup, New-AzureRmResourceGroupDeployment
The New-AzureRmResourceGroup cmdlet creates an Azure resource group. You can create a resource group by using …
Azure PowerShell - Get-AzureVNetConfig
1. 소개 The Get-AzureVNetConfig cmdlet retrieves the virtual network configuration of the current Azure subscrip…
Azure PowerShell - Import-AzurePublishSettingsFile
1. 소개 The Import-AzurePublishSettingsFile cmdlet imports a publish settings file (*.publishsettings) that cont…
Azure PowerShell - Start-AzureSqlDatabaseCopy
1. 개요 The Start-AzureSqlDatabaseCopy cmdlet starts a one-time copy operation or a continuous copy operation of…
Azure Web App을 새로운 App Service plan으로 move (Get-AzureRmResource, Move-AzureRmResource)
1. 개요 The Get-AzureRmResource cmdlet gets Azure resources. The Move-AzureRmResource cmdlet moves existing reso…
Azure 클라우드의 Automatic Scaling(Auto Scaling)
1. Automatic Scaling 순서 Create storage account Create a virtual network Create a public IP address Create a ne…
Azure 클라우드 앱(App) 서비스 Tier별 간략 비교
1. 종류 FREE SHARED BASIC STANDARD PREMIUM 2. 사례 SLA 같은 경우 FREE, SHARED는 해당 사항이 없다. BASIC부터 STANDARD, PREMIUM 같은…
파이썬(Python) 기초 - 클래스(Class)
1. 더하는 계산기 구현하기 class Calc: def __init__(self): self.result=0 def add(self,num): self.result+=num return self.…
파이썬(Python) 기초 - 예외(Exception, Finally) 처리하기
1. 문자-숫자 변환 예외 처리하기 try: a=int(input("Number1: ")) b=int(input("Number2: ")) print(a+b) print(a-b) print(a*b) …
파이썬(Python) 기초 - 조건(Condition) & 반복문(Loop) 다루기
1. 주식 종가와 날짜를 입력받은 후 해당 날짜만큼 연속으로 하한가(-30%)를 기록했을 때와 상한가(30%)를 기록했을 때의 주가 구하기 stockPrice=int(input("종가: ")) da…
파이썬(Python) 기초 - 문자열(String) 다루기
1. 입력받은 문자열 거꾸로 출력하기 yourWord=input("Word : ") newWord="" for s in yourWord: newWord = s + newWord print(newWo…
전가상화 (Full Virtualization) & 반가상화 (Paravirtualization) 비교 및 고찰
전가상화와 반가상화는 하이퍼바이저의 가상화 방식을 구분짓는 것이다. 좀 더 구체적으로 표현하자면 하드웨어의 I/O 접근을 어디까지 가상화하느냐이다. 전가상화의 대표적인 제품은 VMWare, 반가상화…
파이썬(Python) 기초 - 진법(進法) 변환하기(bin, oct, dec, hex)
1. 2,8,16진법을 10진법으로 변환하기 a1=int('aa',16) a2=int('56',8) a3=int('10',2) print(a1) print(a2) print(a3) 결과 170 46…
파이썬(Python) 기초 - 딕셔너리(Dictionary) 이해하고 정복하기
1. 딕셔너리 만들고 조회하기 myDic={'num':15,'phone':'016-111-2222','region':'Busan'} print(myDic['num']) print(myDic['pho…
파이썬(Python) 기초 - 리스트(List) 이해하고 정복하기
1. 빈 리스트를 만들고 리스트에 값 추가 myList=[] myList.append(100) myList.append(200) myList.append(300) print(myList) 결과 [1…