<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>Escape Keys - Mac</title>
			<link>http://www.escapekeys.com/blog</link>
			<description>A ColdFusion and Web Development Blog by Tom de Manincor</description>
			<language>en-us</language>
			<pubDate>Wed, 08 Sep 2010 13:26:13 -0400</pubDate>
			<lastBuildDate>Thu, 26 Jul 2007 20:37:00 -0400</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>blog@escapekeys.com</managingEditor>
			<webMaster>blog@escapekeys.com</webMaster>
			
			<item>
				<title>Installing and Configuring Subversion (SVN) on Mac OS X with MacPorts</title>
				<link>http://www.escapekeys.com/blog/2007/7/26/Installing-and-Configuring-Subversion-SVN-on-Mac-OS-X-with-MacPorts</link>
				<description>
				
				This is a simple guide for a simple SVN server solution. I am installing Subversion with a &lt;a href=&quot;http://www.macports.org/&quot;&gt;MacPorts&lt;/a&gt; nice little auto-installer for public packages.

I started off by using MacPorts to search for the package with:
&lt;code&gt;
port search subversion
&lt;/code&gt;

then installed the package with
&lt;code&gt;
sudo port install subversion
&lt;/code&gt;

MacPorts installs all the required packages and the latest subversion release.

Subversion is now installed. Now let&apos;s get the Server setup.

Create a folder where you will be storing all your Repository files. (/RepoHome)

Then to create a new repo from the shell run:
&lt;code&gt;
svnadmin create /RepoHome/NewRepoName
&lt;/code&gt;

This next step is Optional. If you want to have user authentication, you need to go to the folder of the repo you  want to add security to. In the /conf folder you will see 3 files. Open all 3 and the comments say it all.

Now, to start up our SVN server.
&lt;code&gt;
svnserve -d -r /RepoHome
&lt;/code&gt;
(this loads it in daemon mode with a root path of /RepoHome)

If running a Firewall be sure ports 3690 and 80 are open.

To connect to the repo point your SVN client to:
&lt;code&gt;
svn://serverAddress/newRepoName
&lt;/code&gt; 
				</description>
				
				<category>Mac</category>				
				
				<category>Subversion / SVN</category>				
				
				<pubDate>Thu, 26 Jul 2007 20:37:00 -0400</pubDate>
				<guid>http://www.escapekeys.com/blog/2007/7/26/Installing-and-Configuring-Subversion-SVN-on-Mac-OS-X-with-MacPorts</guid>
				
			</item>
			</channel></rss>