Microsoft Azure 与“常规”相比虚拟主机
我有一个想法,将我的博客放到 Azure 而不是常规的网络托管公司。 我唯一不知道的是这是否会更便宜。好的部分是了解 Azure,但另一方面,这是我的个人博客,我真的不想在上面花太多钱。
那么您知道定价是如何运作的吗?我看到了一些计算器,但无法理解这些数字。
提前致谢
i have an idea of putting my blog on to Azure instead of a regular webhosting company.
The only thing i cannot figure out is if that will be cheaper or not. The good part is the getting-knowledge of Azure but on the other hand it is my personal blog and i really don't wanna spend to much money on it.
So do you have any idea of how the pricing works? I saw some calculator but didn't manage to understand the numbers.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须拥有一个非常活跃的博客才能证明 Azure 成本的合理性。除了保持网络角色正常运行(正如 ZippyV 所说,仅一个实例每月就要花费近 90 美元),您还必须支付数据费用。
不过,您不需要投资 SQL Azure。 Azure 表存储更适合您的博客。它有一个表结构,您可以定义存储的实体(例如类,可能是 BlogEntryClass),并且存储成本将大大低于 SQL Azure(每月每 GB 仅需 0.15 美元,因此您的存储成本可能会保持在较低水平)博客每月不到 1 美元,只是 SQL Azure 成本的一小部分)。
您还需要支付带宽费用(每 GB 出站费用 0.15 美元)。
如果这是一项学习练习,那么这是一项巨大的投资,但如果您有 MSDN Premium 帐户,您可以在那里托管您的博客 - 您每月可以获得 750 个计算小时(足以运行单个角色实例 24x7)、10GB 表存储、以及每月 14GB 出站数据。
You'd have to have a significantly-active blog to justify the costs of Azure. Aside from keeping a web role up and running (and just one instance chews up almost $90 monthly, as ZippyV stated), you'll also have to pay for data.
You do NOT need to invest in SQL Azure though. There's Azure table storage which is much better suited for your blog. It has a table structure, you can define entities (e.g. classes, maybe a BlogEntryClass) that are stored, and the storage costs will run you significantly less than SQL Azure (only $0.15 per GB per month, so your storage costs will likely remain well under a dollar a month for a blog, a small fraction of the cost of SQL Azure).
You'll also pay for bandwidth ($0.15 outbound per GB).
If this is a learning exercise, it's a great investment, but if you have an MSDN Premium account, you can host your blog there - you get 750 compute-hours monthly (enough to run a single role instance 24x7), 10GB table storage, and 14GB monthly outbound data.
经典虚拟主机对您来说会便宜很多。在 Azure 中,您需要为每小时至少运行 1 个实例(Web 服务器)付费。如果我没记错的话,到月底你将需要支付大约 89 美元,而且这还不包括 SQL Server。
如果您想了解有关如何为 Azure 进行开发的更多信息,您可以下载 SDK 并在本地运行您的项目。您无需付费。
编辑:您可以在此处找到定价。如果您想添加 SQL 服务器,每月至少支付 100 美元。
Classic webhosting will be a lot cheaper for you. In Azure you need to pay for at least 1 instance (webserver) to run per hour. At then end of the month you will have to pay about 89$ if I remember correctly and that's without SQL Server.
If you want to learn more on how to develop for Azure you can download the SDK and run your project locally. You don't need to pay for it.
EDIT: you can find the pricing here. If you want to add SQL server you pay a minimum of 100$ a month.