Reputation: 627
Is it possible to run Azure SDK on Linux?
I want to develop a Java app that I want to deploy on Windows Azure, but I'm using Linux Ubuntu now.
Any idea for this problem?
Upvotes: 1
Views: 1101
Reputation: 149
You can develop your Java application and deploy it on Windows Azure from your Linux machine following the steps described here.
If you need to operate infrastructure, you can download the Azure command-line tool. You can also use the VM Feature (Technical Preview) and run your Ubuntu Server on Azure if you feel more comfortable with that.
Either way, operating from infrastructure or from platform, you can deploy your scenario on Azure. Even specific bits could run as worker roles. I would encourage you to check the Java Dev Center for Azure I mentioned.
Upvotes: 1
Reputation: 71120
Check out the Windows Azure command line tool for Mac and Linux, here. This will let you create / deploy / manage your VMs, network endpoints, data disks, cloud services (web/worker roles), certificates, Websites, and maybe a few other things I'm forgetting.
You should have no issue running Java apps in an Ubuntu Virtual Machine, and Ubuntu is one of the OS images available in the Virtual Machine gallery.
Upvotes: 1