Question : You have hosted a website named QuickTechie.com on Azure, you downloaded the subscription publishing credentials named Quick.publishsettings. Using Azure Power Shell , how can you achieve the following: - Connect to the QuickTechie-Enterprise subscription. Create a new App Setting named QuickSetting with a value of True. Restart the website. Which commands should you use? 1. Select-AzureSubscription Quick-Enterprise-Subscription $setting = @{"IsCustom" = "true"} Set-AzureWebSite QuickTechie -AppSettings $settings REStart-AzureWebSite QuickTechie IMPORT-AzurePublishSettingsFile c:\contoso\Quick.publishsettings 2. IMPORT-AzurePublishSettingsFile c:\contoso\Quick.publishsettings Select-AzureSubscription Quick-Enterprise-Subscription $setting = @{"IsCustom" = "true"} Set-AzureWebSite QuickTechie -AppSettings $settings REStart-AzureWebSite QuickTechie 3. Access Mostly Uused Products by 50000+ Subscribers IMPORT-AzurePublishSettingsFile c:\contoso\Quick.publishsettings $setting = @{"IsCustom" = "true"} Set-AzureWebSite QuickTechie -AppSettings $settings REStart-AzureWebSite QuickTechie
Question : You are working in a company named AcmeShell Inc. having a subscription to Azure. Company planned to deploy websites. With following requirements - Each website has at least 15 GB of storage. - All websites can use azurewebsite.net. You need to deploy the 10 websites while minimizing costs. Which web tier plan should you recommend?
4. Basic Correct Answer: Exp: Question doesn't talk about service plan. Each website should have GB storage. Each website will get deployed on a Standard Plan in that subscription. You may be right about the question's construction being weak because it doesn't talk about how many service plans are required here. It is simply testing for the 10 sites limit and 10GB+ storage limit in an app service plan. Basic (10GB), Standard (50GB) and premium (500GB) allow SSL for custom domains HTTPS.
Question : You are working in Acmeshell Inc. , where you are working as an Azure based website administrator. Name of the website is Acmeshell.com. Now you have been informed by development team manager that they need to validate the changes they have done for website. Now this responsibility comes to you to implement this changes with minimum downtime to Acmeshell.com users. What would be your first step? 1. Create a new Linked Resource.
4. Create a deployment slot named AcmeshellStaging.
5. Back up the Acmeshell website to a deployment slot.
Correct Answer : Get Lastest Questions and Answer : Explanation: When you deploy your application to Azure Websites, you can deploy to a separate deployment slot instead of the default production slot, which are actually live sites with their own hostnames.
Furthermore, you can swap the sites and site configurations between two deployment slots, including the production slot. Deploying your application to a deployment slot has the following benefits:
* You can validate website changes in a staging deployment slot before swapping it with the production slot. * After a swap, the slot with previously staged site now has the previous production site. If the changes swapped into the production slot are not as you expected, you can perform the same swap immediately to get your "last known good site" back. * Deploying a site to a slot first and swapping it into production ensures that all instances of the slot are warmed up before being swapped into production. This eliminates downtime when you deploy your site. The traffic redirection is seamless, and no requests are dropped as a result of swap operations.
Question : You are working in a company named QuickTechie.com and you manage an Azure Web Site that is running in Shared mode. You discover that the website is experiencing increased average response time during periods of heavy user activity. You need to update the website configuration to address the performance issues as they occur. What should you do? 1. Set the website to Standard mode and configure automatic scaling based on CPU utilization.
2. Configure automatic seating during specific dates.
4. Configure automatic scaling based on memory utilization.
5. Set the website to Basic mode and configure automatic scaling based on CPU utilization.
Correct Answer : Get Lastest Questions and Answer : Exp: What is Windows Azure AutoScale? Let's say you run a website that sells flowers and its known pattern that traffic to your website increases during Mother's day, Valentine's Day etc. Before Windows Azure AutoScale
feature was available you had to manually increase the instance count of your websites to be able to efficiently handle the increased load. You had to then again manually decrease the instance count after that peak.
Now with Auto Scale you have the ability to Scale in or out automatically by defining a set of rules.
Windows Azure AutoScale Facts AutoScale feature in Windows Azure Websites is available in Standard mode only. Ability to AutoScale is supported only for instance count currently.