Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
systems:subversion_setup_and_configuration [2010/09/23 08:34]
smayr
systems:subversion_setup_and_configuration [2018/01/04 15:56] (current)
ajdavis
Line 1: Line 1:
-== Subversion Setup and Configuration ==+== Subversion Setup and Configuration (SVN) ==
  
 This article explains how to perform version control using Subversion (Linux or Windows server) and SVN (Linux client) or TortoiseSVN (Windows client). This article explains how to perform version control using Subversion (Linux or Windows server) and SVN (Linux client) or TortoiseSVN (Windows client).
Line 21: Line 21:
   $ sudo -u svnuser svnserve -d -T -r /data/repos   $ sudo -u svnuser svnserve -d -T -r /data/repos
   $ su -l svnuser -c "svnserve -d -T -r /data/repos"   $ su -l svnuser -c "svnserve -d -T -r /data/repos"
 +  
 +Add exception rule to firewall to allow traffice through port 3690 on the subversion server. In Ubuntu:
 +  $ ufw status
 +  $ # Only to 192.168.0.31: ufw allow from 192.168.0.0/24 to 192.168.0.31 port 3690
 +  $ ufw allow from 192.168.0.0/24 to any port 3690
  
 > ** Note for SELinux / Fedora Core 3+ / Red Hat Enterprise users ** ((Subversion FAQ, http://subversion.tigris.org/faq.html)) : > ** Note for SELinux / Fedora Core 3+ / Red Hat Enterprise users ** ((Subversion FAQ, http://subversion.tigris.org/faq.html)) :