미니옵빠의 code stubs

윈도우에 Subversion 서버 설치하기 본문

Tools/Subversion

윈도우에 Subversion 서버 설치하기

미니옵빠 2011. 6. 8. 18:05

1. 아파치 설치
2. SVN 설치
3 svnadmin create sample 로 저장소 만들기
4.


1. Copy bin/mod_dav_svn.so and bin/mod_authz_svn.so to the Apache modules directory.
2. Add the Subversion/bin directory to the SYSTEM PATH and reboot so all the Subversion
   support dll's are visible to the Apache service.  <-- SYSTEM PATH는 기본 설정됨. PC 껐다 켜야됨. .서비스 등록되어 있어서-.-
3. Edit the Apache configuration file (httpd.conf) and make the following changes:

  3a. Uncomment the following two lines:

      #LoadModule dav_fs_module modules/mod_dav_fs.so
      #LoadModule dav_module modules/mod_dav.so    <-- 기본은 제거되어 있음. 주석을 빼야 됨

  3b. Add the following two lines to the end of the LoadModule section:

      LoadModule dav_svn_module modules/mod_dav_svn.so
      LoadModule authz_svn_module modules/mod_authz_svn.so

  3c. Add the following to end of the file. Note: This Location directive is a
      minimal example with no authentication directives. For other options,
      especially authentication options, see the Subversion INSTALL file,
      the Subversion Book, or the TortoiseSVN Manual.   

      <Location /svn>
        DAV svn
        SVNPath your/repository/path
      </Location>

http://www.pyrasis.com/main/SubversionServerForWindows

 

ps.
Invalid command 'DAV', perhaps misspelled or defined by a module not included in the server configuration
요런 에러가 나면 mod_dav 모듈 주석제거를 안 해 준 것입니다.