Question : You manage a cloud service that utilizes data encryption. You need to ensure that the certificate used to encrypt data can be accessed by the cloud service application. What should you do?
1. Upload the certificate referenced in the application package.
2. Deploy the certificate as part of the application package.
Correct Answer : Get Lastest Questions and Answer : Explanation: Adding an app setting named WEBSITE_LOAD_CERTIFICATES with its value set to the thumbprint of the certificate will make it accessible to your web application. You can have multiple comma-separated thumbprint values or can set this value to " * " (without quotes) in which case all your certificates will be loaded to your web applications personal certificate store. To add this configuration for your website, go to the configure option for your website in the management portal, scroll down to the app settings section and add the setting as shown below with the thumbprint of the certificate you uploaded in the previous step. Sample code to access Certificate in C# X509Store certStore = new X509Store(StoreName.My, StoreLocation.CurrentUser); certStore.Open(OpenFlags.ReadOnly); X509Certificate2Collection certCollection = certStore.Certificates.Find( X509FindType.FindByThumbprint, // Replace below with your cert's thumbprint "E661583E8FABEF4C0BEF694CBC41C28FB81CD870", false); // Get the first cert with the thumbprint if (certCollection.Count > 0) { X509Certificate2 cert = certCollection[0]; // Use certificate Console.WriteLine(cert.FriendlyName); } certStore.Close();
Question : As you know, www.HadoopExam.com is hosted on Azure Cloud. As an administrator yor are managing the VM on which www.HadoopExam.com is hosted. You have uploaded this VM to to Azure, You need to ensure that you are able to deploy the BGInfo and VMAccess extensions. What should you do? 1. Select the Install the VM Agent checkbox while provisioning a VM based on your uploaded VHD. 2. Select the Enable the VM Extensions checkbox while provisioning a VM based on your uploaded VHD. 3. Access Mostly Uused Products by 50000+ Subscribers $vm.VM.ProvisionGuestAgent = $true Update-AzureVM -Name $name -VM $vm.VM -ServiceName $svc 4. Install the VM Agent MSI and execute the following Power Shell commands: $vm = GetAzureVM -serviceName $svc -Name $name Set-AzureVMBGInfoExtension -VM $vm.VM Set-AzureVM Access Extension -VM $vm.VM Update-AzureVM -Name Sname -VM $vm.VM -ServiceName $svc
Correct Answer : Get Lastest Questions and Answer : Exp: To be "able to deploy the BGInfo and VMAccess extensions", in general, we need to have Azure VM agent installed to the machine. In the question there is no a word regarding sysprep. We installing the agent from MS, then updating the machine with info that the agent is installed
Install the VM Agent MSI and execute the following PowerShell $vm = Get-AzureVM -serviceName $svc -Name $name $vm.VM.ProvisionGuestAgent = $true Update-AzureVM -Name Sname -VM $vm.VM -ServiceName $svc
Once the VM Agent is enabled on the VM, any available extension like BGInfo or VMAccess can be added to the VM
Question : You are working as a cloud Administrator for the QuickTechie Inc. and manage a cloud service that supports features hosted by two instances of an Azure virtual machine (VM). you discover that occasional outages cause your service to fail. You need to minimize the impact of outages to your cloud service. Which two actions should you perform?
A. Deploy a third instance of the VM. B. Configure Load Balancing on the VMs. C. Redeploy the VMs to belong to an Affinity Group. D. Configure the VMs to belong to an Availability Set. 1. A,B 2. B,C 3. Access Mostly Uused Products by 50000+ Subscribers 4. A,D 5. B,D
Correct Answer : Get Lastest Questions and Answer : Exp: Azure Load Balancer delivers high availability and network performance to your applications. It is a Layer 4 (TCP, UDP) load balancer that distributes incoming traffic among healthy instances of services defined in a load-balanced set. Azure Load Balancer configuration It can be configured to: " Load balance incoming Internet traffic to virtual machines. This configuration is known as Internet-facing load balancing. " Load balance traffic between virtual machines in a virtual network, between virtual machines in cloud services, or between on-premises computers and virtual machines in a cross-premises virtual network. This configuration is known as internal load balancing. " Forward external traffic to a specific virtual machine. All resources in the cloud need a public IP address to be reachable from the Internet. Within the cloud infrastructure, Microsoft Azure uses non-routable IP addresses for its resources. Azure uses network address translation (NAT) with public IP addresses to communicate to the Internet.
Azure Resource Manager Deployment model In the Resource Manager deployment model there is no need to create a Cloud service. The load balancer can be created, explicitly, to route traffic among virtual machines. In the Resource Manager model, a Public IP address is its own resource that can be associated with a domain label or a DNS name. In this case, the public IP address is associated with the load balancer resource. Load balancer rules and inbound NAT rules use the public IP address as the Internet endpoint for the resources that are receiving load-balanced network traffic. A private or public IP address is assigned to the network interface resource attached to a virtual machine. Once a network interface is added to a load balancer's back-end IP address pool, the load balancer is able to send load-balanced network traffic based on the load-balanced rules that are created.
1. Create a new GPO to execute the scripts as a logon script. 2. Create a SetupComplete.cmd batch file to call the scripts after the VM starts. 3. Access Mostly Uused Products by 50000+ Subscribers 4. Load the scripts to a common file share accessible by the VMs.
5. Set the VMs to execute a custom script extension.