vote up 2 vote down star
1

I am starting a small project with one other developer and need to setup a dedicated system to house our version control and any other short-term needs the project may have. Requirements for the server are:

  • Free/open source OS.
  • Must provide source control.
  • Must run all the time.

That's it. So I know there are about a thousand Linux-based server distros around that can accomplish this, but looking for success stories from anyone who has managed their own server(s) for a small project. Which did you find easiest, most flexible, most powerful, etc?

Side question: favorite source control system and why?

flag
should be community wiki or closed – Malfist Feb 14 at 20:08
This is an interesting question and probably good for people looking to keep their code to find what others might use. – Suroot Feb 14 at 20:10
i like this question – sweeney Feb 14 at 20:11
Doesn't matter, it should be community wiki. This is subjective and argumentative. – Malfist Feb 14 at 20:11
it's only argumentative if we take it there. let's be helpful to the guy instead. – Don Branson Feb 14 at 20:14
show 3 more comments

9 Answers

vote up 1 vote down check

I have a dedicated Ubuntu server using GIT for version control.
Managing private repositories with gitosis. And it's been great.

Manage git repositories, provide access to them over SSH, with tight access control and not needing shell accounts.

gitosis aims to make hosting git repos easier and safer. It manages multiple repositories under one user account, using SSH keys to identify users. End users do not need shell accounts on the server, they will talk to one shared account that will not let them run arbitrary commands.

It's robust, damn fast, and reliable.

link|flag
vote up 0 vote down

Debian + SubVersion

link|flag
vote up 0 vote down

I think that you'll find Cent OS to be a good fit for your purposes. It takes RHEL (which is focused on stability) and removes the branding in order to make it free, OSS again.

I don't think that you really asked for a version control recommendation but I'll talk about that too.

  • Git is very popular right now, particularly because it is Linus's baby. I think that it is overkill for your needs.
  • Try Subversion as it is the other popular open source choice. There are a lot of open source continuous integration and defect tracking systems that integrate with Subversion.
link|flag
vote up 4 vote down

It sounds like this is a startup like scenario and not within an existing organization. Is there any reason not to use a hosted solution? You should focus on your core competencies and not on administering an extra server if you don't need to. XP-dev.com offers free and private 1.5GB subversion hosting. Github offers reasonable $12/month plans for private repositories.

Say you lowball value your time at $25/hour. If you spend more than 1/2 hour per month either administering your server or having wonky problems that hamper your productivity, then it would be more effective to just buy the github account.

link|flag
vote up 2 vote down

Debian + Git

Very stable and alot of support out there for both.

link|flag
vote up 0 vote down

Well I use Fedora for this purpose, personally. Reasons being that it is a branch off Red Hat, so experience with Fedora should help me if I ever switch to development on Red Hat (a common server choice).

link|flag
vote up 0 vote down

My server for a one-man project (just me) is running OpenSuSE 10.x. It hosts a number of subversion source repositories.

OS and repository preferences are highly subject to personal preference. I use OpenSuSE and Subversion, and they work for me. I have used many linux distros, dating back to Slackware version zero-point-eight, believe it or not, and I like a lot of them. I've used mahy repostories, including CVS, visual sourcesafe, clearcase, and subversion. CVS is rock-solid and smokin'fast. Subversion is fine, but isn't as solid or as fast as CVS, but it's good enough for my purposes.

link|flag
vote up 1 vote down

Ubuntu+Mercurial.

I use Mercurial+ssh for private repositories and bitbucket for public repos.

link|flag
vote up 2 vote down

Ubuntu server with subversion. Ubuntu is one of the better stable flavors of *nix and better ability to do apt-get and keep applications up to date. Subversion works the best with the ability to do hooks.

link|flag

Your Answer

Get an OpenID
or

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