mRhNs13
mRhNs13

Reputation: 479

Create multiple VM in azure in the same subscription at the same time when another user also does the same

I have run the powershell script for creating azure VM. An error occurs "Cannot find VM current status" when another user too creates VM in the same cloudservice. How to resolve this issue. Thanks in advance.

Upvotes: 0

Views: 1289

Answers (1)

Benjamin Talmard
Benjamin Talmard

Reputation: 1820

Azure has two different deployment models for creating and working with resources: Resource Manager (the new one) and Classic (the old one). It is transitioning from classic to Resource Manager.

You are using Cloud Services, which exist only with the classic deployment model. One of the problem with classic is the fact that most operations on your resources cannot be paralyzed. When you edit the state of a cloud service, it won't accept any other operations until the first one is done.

Microsoft recommends that most new deployments use the Resource Manager model. If you can, you should consider to migrate to the new model.

Please see:

Upvotes: 2

Related Questions