아파치 dav + mysql 사용자 정보 조합으로 인증이 오락가락하네요

SVN 이용시 아파치 인증처리를 MySQL사용자 정보를 이용하도록 설정했습니다.
사용자 ID는 영문/한글 다 사용하고 있구요.
MySQL의 위치는 다른 서버에 있습니다.(Auth_MySQL_Host 192.168.0.4)

잘 되다가 다음날 한글이름의 ID로 들어가려고 하면 계속 ID/PASSWD를 반복적으로 물어보며
처리가 되지 않더라구요.
[color=#FF0000:2pzdd803]아파치 서버를 재시작 하면 또 잘 됩니다.(/etc/init.d/apache2 restart)[/color:2pzdd803]
error.log 를 보니 아래와 같이 찍혀 있어서 이게 원인인가 싶어…
[Mon Dec 12 11:35:27 2011] [error] Internal error: pcfg_openfile() called with NULL filename
[Mon Dec 12 11:35:27 2011] [error] [client 10.178.234.2] (9)Bad file descriptor: Could not open password file: (null)

구글링을 통해 config file에 아래 내용 추가해 주었더니 동일 error 메세지는 사라졌지만 여전히 다음날 아침 한글이름 접속이 안되네요.
[color=#FF0000:2pzdd803]AuthUserFile /dev/null[/color:2pzdd803]

다시 아파치 재시작 하니 됩니다. 매번 아파치를 재시작 할수도 없고… 안되는 주기가 정확하지 않으니… ㅠㅠ

config 전문은 다음과 같습니다.
<Location /svn>
Order allow,deny
Allow from all
DAV svn
SVNParentPath /data/repository
SVNListParentPath on

# our access control policy
AuthzSVNAccessFile &quot;/data/conf/repos_svn_access.txt&quot;
AuthName &quot;Subversion Repository&quot;

AuthBasicAuthoritative Off
AuthUserFile /dev/null
AuthMySQL on
AuthMySQL_Authoritative on
AuthMySQL_DB bugtracker
Auth_MySQL_Host 192.168.0.4
Auth_MySQL_User &quot;xxx&quot;
Auth_MySQL_Password &quot;xxxxx&quot;
AuthMySQL_Password_Table user_table
AuthMySQL_Username_Field username
AuthMySQL_Password_Field password
AuthMySQL_Empty_Passwords off
AuthMySQL_Encryption_Types PHP_MD5
AuthType Basic
AuthName &quot;Subversion Repository&quot;
Require valid-user

</Location>

도움좀 주세요~~