Question : You are managing an Azure website, in Standard mode at the following addres acmeshell.azurewebsites.net. Now Acmeshell Inc has a new domain for the siite that needs to be accessible by SSL. You need to be able to add a custom domain to the Azure Web Site and assign an SSL certificate. Which three steps should you perform next in sequence?
A. Create a CNAME record from www.Acmeshell.com to acmesheel.azurewebsite.net B. Add www.Acmeshell.com to the list of domain names as a custom domain. C. Add A record in your DNS for www.Acmeshell.com to point to the Azure web site IP D. Add SSL binding for the www.Acmeshell.com domain with the IP-based SSL option selected. E. Add SSL binding for the www.Acmeshell.com domain with the Server Name indication (SNI) SSL option selected. F. Create a new file that will redirect the site to the new URL and upload it to the Azure Website. 1. A,B,C 2. C,D,E 3. Access Mostly Uused Products by 50000+ Subscribers 4. A,B,E 5. A,C,F
Correct Answer : Get Lastest Questions and Answer : Exp: Root domain - the domain name that you reserved with the domain registrar (represented by the @ host record, typically). For example, contoso.com.
Subdomain - any domain that's under your root domain. For example, http://www.contoso.com (represented by the www host record). You can map different subdomains of the same root domain to different apps in Azure.
The advantage of CNAME is that it persists across IP address changes. If you delete and recreate your app, or change from a higher pricing tier back to the Shared tier, your app's virtual IP address may change. Through such a change, a CNAME record is still valid, whereas an A record requires an update.
IP based SSL associates a certificate with a domain name by mapping the dedicated public IP address of the server to the domain name. This requires each domain name (contoso.com, fabricam.com, etc.) associated with your service to have a dedicated IP address. This is the traditional method of associating SSL certificates with a web server. o SNI based SSL is an extension to SSL and Transport Layer Security (TLS) that allows multiple domains to share the same IP address, with separate security certificates for each domain. Most modern browsers (including Internet Explorer, Chrome, Firefox and Opera) support SNI, however older browsers may not support SNI. For more information on SNI, see the Server Name Indication article on Wikipedia.
Question : You are working in Acmeshell Inc and managing a website named AcmeWeb and logging is enabled for this website (Assume it is hosted on Azure). You need to view only errors from your log files in a continuous stream as they occur. Which Windows Power Shell command should you execute?
To stream logging information, start a new instance of Azure PowerShell and use the following command:
Get-AzureWebSiteLog -Name webappname -Tail This will connect to the web app specified by the -Name parameter and begin streaming information to the PowerShell window as log events occur on the web app. Any information written to files ending in .txt, .log, or .htm that are stored in the /LogFiles directory (d:/home/logfiles) will be streamed to the local console.
To filter specific events, such as errors, use the -Message parameter. For example:
Get-AzureWebSiteLog -Name webappname -Tail -Message Error To filter specific log types, such as HTTP, use the -Path parameter. For example:
Get-AzureWebSiteLog -Name webappname -Tail -Path http To see a list of available paths, use the -ListPath parameter.
Question : You are working in Acmeshell Inc., which has two websites (AcmeShell.com and AcmeWeb.com) hosted on internal servers. However recently they are facing some issues related to performance due to heavy traffic. You planned to migrate the sites to Azure Websites. Sites respective configuration is as below. AcmeShell.com Purpose: Public-facing forum for clients and customers to interact.
Its Characteristics - Developed Using Node.js - Contains 11GB data - Deployed to two instances
AcmeWeb.com Purpose : Public-facing portal for users to access their customer records Its Characteristics - Developed in ASP.NET 4.0 - Contains 9GB Data - Deployed on 3 instances.
Select correct web hosting plan for websites 1. Acmeshell.com : Free AcmeWeb.com : Standard