📜 ⬆️ ⬇️

Installing and configuring SVN, Apache, Trac for Windows. Part 1 - SVN

Content


- Preparing for installation (see below)
- Installation:
- Completion of installation

Preparing to install


You will need

  1. Apache web server 2.0.63
  2. version control system Subversion 1.5.2 (SVN)
  3. Windows SVN client TortoiseSVN 1.5.3
  4. project management and error tracking system Trac 0.11.1
Create the directory C: \ usr \ local \ here we will perform the installation. Download the files listed below:
  1. Subversion 1.5.2 ~ CollabNet Subversion Command-Line Client v1.6.12 (for Windows) (registration required)
  2. TortoiseSVN 1.5.3 ~ TortoiseSVN-1.6
  3. Apache 2.0.63 ~ apache_2.0.63-win32-x86-openssl-0.9.7m.msi
  4. Python 2.5 ~ python-2.5.msi
  5. Python SetupTools ~ setuptools-0.6c7.win32-py2.5.exe
  6. mod_python 3.3.1 ~ mod_python-3.3.1.win32-py2.5-Apache2.0.exe
  7. SQLite 2.4.0 ~ pysqlite-2.4.0.win32-py2.5.exe
  8. SVN 1.5.2 Python Bindings ~ svn-python-1.5.2.win32-py2.5.exe
  9. Genshi 0.5.1 ~ Genshi-0.5.1.win32-py2.5.exe
  10. Trac 0.11.1 ~ Trac-0.11.1.win32.exe


Installation


')

Install Subversion

  1. we start Setup-Subversion-1.5.2.en-us.msi
  2. choose Binding for Apache 2.0.x
    SVN installation
  3. specify the installation directory
      C: \ usr \ local \ Subversion 

    Installing SVN in the directory
  4. wait until the end of the installation.

Install the TortoiseSVN client

  1. Launch TortoiseSVN-1.5.3.13783-win32-svn-1.5.2.msi
  2. during the installation process, leave all the values ​​as they are
  3. wait until the end of the installation and restart the computer.

We create storage

I prefer to store data on another logical drive, and even better on another hardware disk. In this case, all the storages are stored in the D: \ repos \ directory
  1. create a directory D: \ repos \
  2. go to the created directory and create two subdirectories:
    • store1
    • store2
  3. let's make two storages
    • right-click on store1 , in the menu select TotrtoiseSVN -> Create vault here
      Creating SVN Storage
    • repeat the same steps for store2
    • now you have two SVN store1 and store2 storages


Next to: Part 2 - Apache and SVN ...

Source: https://habr.com/ru/post/53547/


All Articles