在 Windows Azure 中启动外部可执行文件
我当前的 ASP.NET 站点需要启动 FFMPEG.EXE 来转换上传的视频。对于共享网络托管服务器,只能通过虚拟专用服务器(VPS)或专用服务器来完成。
我一直在阅读有关 Windows Azure 的一些信息,但没有找到有关以下内容的任何信息: 1.能够启动外部可执行文件 2.能否通过远程桌面进入所配的虚拟机
请指教,谢谢! 艾迪
My current ASP.NET site requires to launch FFMPEG.EXE to convert uploaded videos. With shared web hosting server, can't be done but via a Virtual Private Server (VPS) or a dedicated server.
I've been reading some info about Windows Azure but haven't found any info regarding:
1. Be able to launch external executable
2. Be able to remote desktop into the allocated virtual machines
Please advise, thanks!
Eddie
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以启动可执行文件。 (只需 Process.Start() 即可!)请注意,如果您使用本地磁盘空间,则需要在 .csdef 文件中声明该空间,并使用 RoleEnvironment API 来发现应用于写入的路径。
您还无法通过远程桌面进入分配的虚拟机。这将在今年晚些时候到来。
Yup, you can launch an executable. (Just Process.Start() it!) Note that if you use local disk space, you'll need to declare that in your .csdef file and use the RoleEnvironment API to discover the path you should use to write to.
You can't remote desktop into allocated VMs yet. That's coming later this year.