Hi,
We are running an application in Azure. Due to lack of features in Azure, some parts of this application is running in Amazon EC2. We would like to migrate these parts to Azure, but I'm not sure whether it's yet possible.
1) SFTP server. While it would be possible to run this in a VM Role, the lack of built in durable disk storage has made it cumbersome. As far as I understand, I can now set up a virtual machine with a durable drive, simply install the SFTP server software
and start using it. Files stored on the machine will remain and be backed by Azure Storage. Correct?
2) Mail server. We have not been able to run this in Azure, since the SMTP RFC's states that DNS/MX records cannot contain CNAME records. Since no fixed IP addresses have been available in Azure, we would have to add a CNAME host name (something.cloudapp.net)
to the MX record which simply is not supported by the SMTP protcol. As far as I understand, this is still an open issue. Fixed IP addresses are not available in Windows Azure. Correct?
3) On premise/off site backup. As I understand the new functionality, the hard drive data in a virtual machine is replicated within a data center and optionally geographically distributed. This, however, does not prevent from application errors accidentally
deleting data, or hackers wiping the disk after having gained access. We want to perform on-premise backup of the data in Azure , and store this off-site, for instance in a bank vault. As I understand it, the drive image is stored in Blob Storage, so I guess
it would be possible to download the VHD file directly from blob storage. But I also guess that this file is being written to by our virtual machine, which would make the consistency of the file we've downloaded unclear. Is there some way to backup the durable
drive?
Nitramafve