Asahi
Asahi

Reputation: 13506

Cannot connect to SVN on Amazon EC2 server

I've installed SVN on EC2 instance following these instructions. The problem is that TortoiseSVN repository browser fails to establish connection to it. The URL I'm using is:

http://<my instance Public DNS>/<svn project root folder>

What could be the reason?

Upvotes: 0

Views: 1891

Answers (1)

Eight-Bit Guru
Eight-Bit Guru

Reputation: 9971

Well, it's borderline programming I suppose...

Check your instance Security Group, making-sure port 80 is allowed through. Check the in-host firewall rules for the same. Check that whatever you're using to host web-access to SVN (Apache?) is running and listening on port 80. Check any local firewall and/or proxy rules you might pass through on the way out from your site to make sure port 80 is allowed to EC2 hosts.

Upvotes: 1

Related Questions