I just installed subversion on my ubuntu and made first repository
now its accessible with http://mylanip/mywebsite
or my lan ip
I tried to checkout with windows machine on lan and it checked out successfully without asking username and password
it can't commit changes and showing error "target machine actively refused it"
please help me sorting out this problem. Thanks :)
Asked
Active
Viewed 246 times
0

Ankit Pise
- 1,243
- 11
- 30
-
Check permissions on the repository folder. – sachin irukula Feb 03 '14 at 14:03
-
"target machine actively refused it" is not an error from the Subversion code, can you provide the exact error message you're receiving. It will also usually include an error code. – Ben Reser Feb 04 '14 at 20:36
1 Answers
1
Try doing the "svn commit" from the command line:
svn commit -m "My message"
echo $?
The $?
variable is the exit code of the last command in Bash. This exit code might give you more information if you search Google for "svn commit fails with exit code XXXX"
If using the Windows command line, the exit code is a little more difficult to obtain (How do I get the application exit code from a Windows command line?)

Community
- 1
- 1

Greg Burghardt
- 17,900
- 9
- 49
- 92
-
Well, i already shifted to windows tortoise svn without password verification, it works fine though don't need password protect now as its finalized to be on lan only, thanks btw :) – Ankit Pise Feb 04 '14 at 09:25