Čuňa
Čuňa

Reputation: 23

How to deploy and run multiple different Azure Cloud Services on same Azure VM?

I have few services which has very low usage, but they are quite hardware intensive when they are used. Right now they run separately. Every of them has its own Web Role and Worker Roles. Every of this roles run on its own VM with specified size and instances count. That is I believe standard way.

I would like to rent one quite powerful VM from Azure, on which I would like to deploy every of my services. Ideally without changing structure of code so I can keep them in separate projects/solutions. They will run simultaneously and all of them will be accessible.

Upvotes: 2

Views: 124

Answers (1)

David Makogon
David Makogon

Reputation: 71023

You cannot deploy more than one cloud service package to a set of role instance vm's. If you want all of your services to run in a single role instance (or set of instances), you need to bundle all of your services into that role. How you do that, and how you organize your code, is strictly up to you.

Upvotes: 1

Related Questions