Question : You are an administrator of a Cloud service named as 'QuickTechieService' And for various purposes there are three different virtual machines have been created QVM1, QVM2,QVM3 . Now your team want you to provision new VM in same service 'QuickTechieService' . You need to use the latest gallery image to create a new Windows Server 2012 R2 VM that has a target IOPS of 500 for any provisioned disks. Which PowerShell command should you use?
Correct Answer : Get Lastest Questions and Answer : Exp: Creates a new Azure virtual machine configuration object. New-AzureVMConfig [-Name] [-InstanceSize] [[-HostCaching] ] [[-AvailabilitySetName] ] [[-Label] ] [-ImageName] [[-MediaLocation] ] [[-DiskLabel] ] [ ]
The New-AzureVMConfig cmdlet creates a new virtual machine configuration object. This object can then be used to perform a new deployment, as well as to add a new virtual machine to an existing deployment.
Question : You are managing a Azure VM named as QuickServer in a service name QuickService. Because you have configured log level to trace, which causes VM storage issues. You have to create a new 256 GB disk and attach it to the server. Select the correct Powershell command for this. 1. Get-AzureVM "QuickService" -Name "QuickServer" | Add-AzureDataDisk -createnew -disksizeInGB 256 -DiskLabel "data1" -LUN 1 | Update-AzureVM
The Get-AzureVM cmdlet retrieves information about virtual machines running in Azure. It returns an object with information on a specific virtual machine, or if no virtual machine is specified, for all the virtual machines in the specified service of the current subscription.
Add-AzureDataDisk Adds a new data disk to a virtual machine object. CreateNew Add-AzureDataDisk [-CreateNew] [-DiskSizeInGB] [-DiskLabel] [-LUN] -VM [-HostCaching ] [-MediaLocation ] [ ]
The Add-AzureDataDisk cmdlet adds a new data disk to a virtual machine object. Use the CreateNew parameter to create a new data disk with a specified size and label, and then attach it. Use the Import parameter to attach an existing disk from the image repository. Use the ImportFrom parameter to attach an existing disk from a blob in a storage account. The cmdlet allows you to specify the host-cache mode of attached data disks.
Update-AzureVM Updates an Azure virtual machine with the modifications make to a virtual machine object. Update-AzureVM [-ServiceName] [-Name] -VM [ ] The Update-AzureVM cmdlet accepts update information for the specified virtual machine and initiates the update. You can add or remove data disks, modify the cache mode of data or operating system disks, change the network endpoints, or change the size of the virtual machine.
Question : QuickTechie.com is hosted in Azure Cloud in a VM. You are located in the India and have a worldwide user base. Developers in US report that they experience significant delays when they execute the services. You need to verify application performance from different locations. Which type of monitoring should you configure? 1. Disk Read
Correct Answer : Get Lastest Questions and Answer : Explanation: How will you make sure that your client's website is up and available not just from one location but from different country of different geo location as well If you have said "Ping" then you are absolutely right. You have to ping the site from different places to check if your website is returning "200" as its status code. You have a series of option from free to paid service. System Center Global Service Monitor in System Center 2012 Operations Manager is another good option to monitor availability, performance and reliability of your website.
But If you are using azure then you are lucky to have everything right at home. All the features that you might need are probably already in Azure. Website endpoint monitoring is one of them. Endpoint monitoring lets you monitor the availability of HTTP or HTTPS endpoints from geo-distributed locations.
The only caveat that it has is that Endpoint monitoring is only available with Reserved Mode instances!
End point monitoring is one of the cool feature that you should implement in order to make sure you site is accessible from around the world and even if its get down for any particular reason, you get the alert notification on your email asap so that you can take steps to fix it for the production site.