VisualSVN Server Maintenance

I am having difficulty connecting to my VisualSVN Server repository from computers outside of my home network.

So far I've only tried to replace my computer name with my computer IP in the repository url, but that doesn't work;

https://MY-PC/svn/ProjectTrunk

      

Can you point me to what steps I need so that I can serve the repository to external computers?

+2


source to share


2 answers


You will probably need to set up some kind of dynamic DNS solution like DynDNS , which allows you to access your computer using a fixed name (even if its IP address changes).



+3


source


Are you using VisualSVN Server ? If not, DO it will make your life a lot easier.

some other things:

  • use the IP address (don't use 192.xxx either, use EXTERNAL IP so you can get it from outside) and NOT YOUR COMPUTER NAME for the repo location
  • make sure the port is open on your router and firewall.
  • make sure you give the port number when connecting to your repo

To respond to your comment:



Right click on your server (in VisualSVN Server Manager), open Properties and then click on the Networking tab - you will see the port. When you connect to your repo, do the following:

https://111.111.111.111:8443/svn/PeojectTrunk

(8443 is the port number, 111.111.111.111 is your IP address)

+4


source







All Articles