Published:
Warning: This blog entry was written two or more years ago. Therefore, it may contain broken links, out-dated or misleading content, or information that is just plain wrong. Please read on with caution.
Just a quick reminder on how to reset a subversion users password on Slackware.
Step 1: Locate Auth File
Use the find command to locate the ".svn-auth-file" file.
find / -name .svn-auth-file
In this case the result was:
/home/svn/.svn-auth-file
Step 2: Set a new password for the user
Run the htpasswd command to set a new password for the user joebloggs.
htpasswd -m /home/svn/.svn-auth-file joeblogs
Reader Comments