I set up VisualSVN Server, and SQL Server on my local machine.

VisualSVN was set up to use https://dell/svn/ as the repository root. I was connecting to SQL Server using "localhost".

At some point I made a change to some Windows setting, and now these don't resolve to the right ports.

For example, using "https://dell/svn/" in TortoiseSVN fails, but "https://dell:8443/svn/" works.

Similarly in SQL Server connection strings, "localhost" fails but "localhost,1433" works.

Interestingly, 127.0.0.1 and ::1, without any port specified, also work.

Anybody have any idea what I could have done wrong or how to fix it? These ports used to work automatically.

link|improve this question
feedback

1 Answer

You could just modify the C:\Windows\System32\drivers\etc\hosts file to point dell to 127.0.0.1

like below:

127.0.0.1 dell

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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