Subversion 可以托管在 Amazon 的托管云服务上吗?

发布于 2024-07-15 05:52:07 字数 40 浏览 8 评论 0原文

Subversion 可以托管在 Amazon 的托管云服务上吗?

Can subversion be hosted on Amazon's hosted cloud service?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(8

你不是我要的菜∠ 2024-07-22 05:52:07

当然。 使用 Linux 设置 ec2 实例并在该服务器上安装 svn。

Sure. Set up an ec2 instance with linux and install svn on that server.

别在捏我脸啦 2024-07-22 05:52:07

绝对 - 我的公司在 Amazon EC2 实例上托管公共开源 SVN 存储库和我们的私有存储库。 您需要注意数据完整性和备份; 我们将存储库数据存储在弹性块存储卷上以实现弹性,将存储库 svnsync 到另一个 EC2 实例和 EBS 卷,以便在主服务器出现故障时我们可以快速启动新的 SVN 服务器,并通过 svnadmin 进行异地备份转储到我们的一台物理服务器,以防整个云离线(嘿,我们的源代码毕竟是我们皇冠上的宝石!)

我唯一能想到的另一件事是亚马逊在 Linux 方面并不是特别最新他们提供的版本。 我们运行 Fedora Core,EC2 上可用的最新版本是 Fedora Core 8。FC8 上通过 yum 安装的 SVN 版本只有 1.4.2.2,因此如果您想要 1.5 这样的较新版本,您可能必须从源代码编译它。

Absolutely - my company hosts a public open source SVN repository and our private repository on an Amazon EC2 instance. You'll want to be careful about data integrity and backups; we store the repository data on an Elastic Block Store volume for resilience, svnsync the repositories to another EC2 instance and EBS volume so that we can quickly bring up a new SVN server if the main one goes down, and also do an offsite backup via svnadmin dump to one of our physical servers just in case the whole cloud goes offline (hey, our source code is our crown jewels after all !)

The only other thing I can think of is that Amazon isn't particularly up to date with the Linux versions that they provide. We run Fedora Core, and the latest version available on EC2 is Fedora Core 8. The version of SVN that's installed via yum on FC8 is only 1.4.2.2, so if you want a newer version like 1.5 you may have to compile it from source.

夏花。依旧 2024-07-22 05:52:07

使用亚马逊的免费套餐并托管您的颠覆......等待它......免费!

http://aws.amazon.com/free/

注意:仅限 12 个月,并且仅适用于新的 AWS 用户。

Use amazon's free tier and host your subversion for... wait for it... free!

http://aws.amazon.com/free/

NB: This is limited to 12 mos., and only for new AWS users.

挽容 2024-07-22 05:52:07

如果您计划使用至少一年,请在 ec2 上获取一个预留实例。

对于一年期合同,您为默认实例支付 227.50 美元 + 0.03 美元/小时,对于三年期合同,则为 350 美元 + 0.03 美元/小时。

如果您要让它们全职运行:

  • (0.03*24*365 + 227.50) / 12 = 40.86 / 月,一年期合同
  • (0.03*24*365*3 + 350) / 36 = 31.62 / 月,三年期

合同有关各种实例选项的详细信息,请参阅 http://aws.amazon.com/ec2/#pricing

Get a reserved instance at ec2 if you plan on using it for at least a year.

On a one year contract you pay $227.50 + $0.03/hr for a default instance, and on a three year contract it's $350 + $0.03/hr.

If you were to keep them running full time:

  • (0.03*24*365 + 227.50) / 12 = 40.86 / month for 1yr contract
  • (0.03*24*365*3 + 350) / 36 = 31.62 / month for 3yr contract

For full details of the various instance options see http://aws.amazon.com/ec2/#pricing

香草可樂 2024-07-22 05:52:07

借助 Amazon 新的“大量使用预留实例”,微型实例的每小时价格降至 0.005 美元,小型实例的每小时价格降至 0.02 美元。 两者对于 SVN 来说都足够了。

With Amazon's new "Heavy Utilization Reserved Instance" the hourly price is down to $0.005 for a micro instance and $0.02 for a small instance. Both are adequate for SVN.

枫以 2024-07-22 05:52:07

EC2 维持服务器运行的成本不是大约 0.10 美元/分钟吗? (这是一年前我上次检查时的成本。)还有其他托管颠覆选项,成本要低得多。 我以前使用 cvsdude 的费用约为每月 5-10 美元。

Doesn't EC2 cost about $0.10/minute to keep your server up? (That's what it cost a year ago, the last time I checked.) There are other hosted subversion options that cost significantly less. I used to use cvsdude for about $5-10/month.

森末i 2024-07-22 05:52:07

您可以尝试托管的 Indefero 优惠。 每小时花费 0.007 美元(每年 49 英镑)。 所以比EC2便宜。 当您想要拥有自己的服务器时,只需下载所有数据,将其加载到您的服务器中,更改您的 DNS 条目即可。

由于您拥有完整的数据导出,您的 forge 位于您自己的域下,并且 Indefero 是 GPL 软件,因此您没有供应商锁定效应。

You can try the hosted Indefero offer. It will cost you $0.007/hour (£49/year). So cheaper than EC2. The day you want to get your own server, you just download all your data, load that in your server, change your DNS entry and go.

As you have the full data export, your forge is under your own domain and Indefero is GPL software, you have no vendor lock-in effect.

情魔剑神 2024-07-22 05:52:07

当然可以。 此处已准备好安装/安装映像。

如果您想使用 Git,AWS 有 CodeCommit

Sure it can. There is ready to go/install image available here.

If you want to use Git, AWS has CodeCommit.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文