vote up 3 vote down star
2

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

flag

22% accept rate
But is will cost more then most svn hosting companies, so if you don't need complete control over your svn install, I would not do it – Ian Ringrose Mar 30 at 15:51

4 Answers

vote up 6 vote down

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

link|flag
vote up 4 vote down

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.

link|flag
+1 interesting. But is there an advantage (e.g. cost, performance, reliability) over more traditional hosting services? Using two independent hosting services (one main, one backup) seems safer and cheaper at first glance. – wcoenen Mar 25 at 22:46
1  
It depends on your hosting company; Amazon has just introduced "reserved instance" pricing, which really cuts down the cost for a long running instance such as an SVN server. Even with the old pricing, we were saving about half the amount of money we'd previously been paying to Rackspace. – gareth_bowles Mar 25 at 22:58
vote up 0 vote down

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.

link|flag
1  
The mininum full price for an EC2 instance is 10c / hour, but you can halve that with Amazon's new "reserved pricing". Still more than cvsdude or some of the traditional hosting services, but worth it for us to get full control over the server. – gareth_bowles Mar 30 at 16:40
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.