narayana


{ City } bangalore
< Country > india
* Profession *
User No # 124934
Total Questions Posted # 4
Total Answers Posted # 16

Total Answers Posted for My Questions # 1
Total Views for My Questions # 1707

Users Marked my Answers as Correct # 1
Users Marked my Answers as Wrong # 0
Questions / { narayana }
Questions Answers Category Views Company eMail

Is it possible to create multiple VM's (more than 15) per day. How can you handle it

Microsoft Azure 321

difference b/t Load balancer & application gate way

Microsoft Azure 325

How to change the port number RDP 3386 to RDP 5000

Microsoft Azure 411

how can access the file share?

1 Microsoft Azure 650




Answers / { narayana }

Question { 988 }

Explain Availability set?


Answer

Failures can be occured due to hardware failures, Rack,local disk failures. might be reboot required.

1) Increased the availability of our application and provide the retundancy of vm's .
2)Each VM assigned to availability set, assigned to fault domain and updated domain

Fault Domain: Used to define the grp of vm's to share common source and network switch.
updated Domain: Used to define the grp of vm's and physical hardware that can be rebooted at the same time.

Is This Answer Correct ?    0 Yes 0 No

Question { Microsoft, 600 }

how would you categorize windows azure? (Iaas/paas/saas)?


Answer

Iaas: Infrastructure as a service. Azure admin will take care this
Paas: Platform as a service. used in Azure dev/test environment
Saas: Software as a service.

Is This Answer Correct ?    0 Yes 0 No


Question { 641 }

How can you stop a VM using Power Shell?


Answer

Stop-AzureRmVM -ResourceGroupName "ResourceGroup11" -Name "VirtualMachine07"

Is This Answer Correct ?    0 Yes 0 No

Question { 588 }

What is Cmdlet in Azure?


Answer

Cmdlets are written in a compiled . NET language

2)A cmdlet is a lightweight command that is used in the PowerShell environment. The PowerShell runtime invokes these cmdlets within the context of automation scripts that are provided at the command line.

Is This Answer Correct ?    0 Yes 0 No

Question { 680 }

How can one create a Virtual Machine in Powershell?


Answer

VM creation using Powershell:

1) create resource:
New-AzResourceGroup -Name myResourceGroup -Location EastUS

2) create to VM:
New-AzVm `
-ResourceGroupName "myResourceGroup" `
-Name "myVM" `
-Location "East US" `
-VirtualNetworkName "myVnet" `
-SubnetName "mySubnet" `
-SecurityGroupName "myNetworkSecurityGroup" `
-PublicIpAddressName "myPublicIpAddress" `
-OpenPorts 80,3389
3) connect to VM:
Get-AzPublicIpAddress -ResourceGroupName "myResourceGroup" | Select "IpAddress"

4)find out the Public IP:
mstsc /v:publicIpAddress

5) Install IIS:
Install-WindowsFeature -name Web-Server -IncludeManagementTools

Is This Answer Correct ?    0 Yes 0 No

Question { 479 }

What are Storage options available in Azure?


Answer

Storages: Blob,Disk,Table,File level storages

Is This Answer Correct ?    0 Yes 0 No

Question { 590 }

How to assign static ip address in azure vms?


Answer

Go to particular VM --> select " Networking" left hand side --> click " Configurations" --> under Public IP address u can choose either 'Dynamic' or 'Static'

Is This Answer Correct ?    0 Yes 0 No

Question { 446 }

What are storage keys?


Answer

To view and copy your storage account access keys or connection string from the Azure portal:

Navigate to your storage account in the Azure portal.

Under Settings, select Access keys. Your account access keys appear, as well as the complete connection string for each key.

Locate the Key value under key1, and click the Copy button to copy the account key.

Alternately, you can copy the entire connection string. Find the Connection string value under key1, and click the Copy button to copy the connection string.

Is This Answer Correct ?    0 Yes 0 No

Question { 960 }

Are data disks provide support within scale sets?


Answer

Azure virtual machine scale sets support VM instances with attached data disks.

scaleset --> Instance ---> Instance count

In VM creation:

Availability --> select 'set'

Is This Answer Correct ?    1 Yes 0 No

Question { 641 }

Name three types of disks used by vms?


Answer

Ultra Disk Storage, Premium SSD, Standard SSD and Standard HDD—and use multiple disks with each VM.

Ultra Disks: Io Intensive workload. used SAP HANA,Oracle DB. Size 65 GB
Premium SSD: Used in Prod environment. used in performance sensitive workloads.
stored blob files which is corresponding to that VM. size is 32 GB
Standard SSD: Used in DEv & Test environment. Size is 32 GB
Standard HDD: Used in Backup & non critical issues

Is This Answer Correct ?    0 Yes 0 No

Question { 602 }

What do you understand about hybrid cloud? Explain in detail?


Answer

It is the combination of public & private cloud bound together. we can access Azure cloud applications

Is This Answer Correct ?    0 Yes 0 No

Question { 553 }

What is blob storage in azure?


Answer

Blob storage: It is object level storage. It contains legacy data.
1) Stored massive amount of unstructure data.
2) within blob service, create container and it is used to store blob objects

Is This Answer Correct ?    0 Yes 0 No

Question { 599 }

What is the difference between table, queue, and blob storage?


Answer

Blob storage: It is object level storage. It contains legacy data. 1) Stored massive amount of unstructure data. 2) within blob service, create container and it is used to store blob objects
3) Maintain text,binary data
4) store viedos, images,files

Tables: Read and writes the data into tables Ex: Cosmos DB, Oracle, SQL Server

Queues:
used to store and retrive the messages to be processed asynclly.
Size is 64KB

Is This Answer Correct ?    0 Yes 0 No

Question { 564 }

How can you create a queue in the storage account?


Answer

Storage A/c  Queue storage - under Queue service click ‘Queue’ - give Queue name click ok.

U can add the message “ Add message”  a) type message , Expiry Days, encode the message as Base64. Encoding binary data is recommended.

Is This Answer Correct ?    0 Yes 0 No

Question { 837 }

What is virtual machine in azure?


Answer

VM:
It is Underlined infrastructure completely managed by azure.
It is act as a software based computer and run an OS and wide range of multi applications.
It will create and deploy the VM images.
Pricing calculated hourly basis
All packets of data stored through Network interface card.

Is This Answer Correct ?    0 Yes 0 No

 [1]   2    Next