Edgewall Software

Changes between Version 24 and Version 25 of TracOnRedhat


Ignore:
Timestamp:
Mar 22, 2006, 2:29:57 AM (18 years ago)
Author:
coderanger
Comment:

Slight touchups

Legend:

Unmodified
Added
Removed
Modified
  • TracOnRedhat

    v24 v25  
    3333=== Install Python ===
    3434{{{
     35#!sh
    3536$ cd /usr/local/RH9
    3637$ tar xjf Python-2.3.5.tar.bz2
    37 $ cd Python-2.3.5;./configure;make;make install
     38$ cd Python-2.3.5
     39$ ./configure
     40$ make
     41$ make install
    3842$ /sbin/ldconfig
    3943}}}
     
    4145=== Install Apache ===
    4246{{{
     47#!sh
    4348$ cd /usr/local/RH9
    4449$ tar xjf httpd-2.0.52.tar.bz2
    45 $ cd httpd-2.0.52;./configure;make;make install
     50$ cd httpd-2.0.52
     51$ ./configure
     52$ make
     53$ make install
    4654$ /sbin/ldconfig
    4755}}}
     
    4957=== Install SWIG ===
    5058{{{
     59#!sh
    5160$ cd /usr/local/RH9
    5261$ tar xzf swig-1.3.21.tar.gz
     
    6473=== Install Subversion ===
    6574{{{
     75#!sh
    6676$ cd /usr/local/RH9
    6777$ tar xzf subversion-1.3.0.tar.gz
     
    8191=== Install Sqlite ===
    8292{{{
     93#!sh
    8394$ cd /usr/local/RH9
    8495$ tar xzf sqlite-2.8.16.tar.gz
     
    94105=== Install SilverCity ===
    95106{{{
     107#!sh
    96108$ cd /usr/local/RH9
    97109$ tar xzf SilverCity-0.9.5.tar.gz
     
    105117=== Install ClearSilver ===
    106118{{{
     119#!sh
    107120$ cd /usr/local/RH9
    108121$ tar xzf clearsilver-0.9.3.tar.gz
     
    119132=== Install PySqlite ===
    120133{{{
     134#!sh
    121135$ cd /usr/local/RH9
    122136$ tar xzf pysqlite-1.0.1.tar.gz
     
    131145=== Install Trac ===
    132146{{{
     147#!sh
    133148$ cd /usr/local/RH9
    134149$ tar xzf trac-0.9.3.tar.gz
     
    145160This will create symbolic a link for then libsvn library to the Python 2.3 library
    146161{{{
     162#!sh
    147163$ cd /usr/local/lib/python2.3/site-packages
    148164$ ln -s /usr/local/lib/svn-python svn-python
     
    154170==== Create the Subversion repository ====
    155171{{{
     172#!sh
    156173$ svnadmin create --fs-type=fsfs /var/svn
    157174}}}
     
    160177You will see the following message below and follow what my options showed:
    161178{{{
     179#!sh
    162180$ trac-admin /var/trac initenv
    163181/usr/local/lib/python2.3/site-packages/libsvn/core.py:5: RuntimeWarning: Python C API version mismatch for module _core: This Python has API version 1012, module _core has version 1011.
     
    242260Create the "trac.htpasswd" file
    243261{{{
     262#!sh
    244263$ cd /var/trac/conf
    245264$ /usr/local/apache2/bin/htpasswd -c htpasswd admin
     
    251270Change the permissions on the Trac environment so Apache has read/write access to the trac.db file
    252271{{{
     272#!sh
    253273$ chmod -Rv a+rw /var/trac
    254274}}}
     
    257277Copy {{{trac.cgi}}} to the directory {{{/usr/local/apache2/cgi-bin}}}
    258278{{{
     279#!sh
    259280$ cd /usr/local/apache2/cgi-bin
    260281$ cp /usr/local/share/trac/cgi-bin/trac.cgi .
     
    265286Start Apache and point your web browser at "localhost/cgi-bin/trac.cgi"
    266287{{{
     288#!sh
    267289$ /usr/local/apache2/bin/httpd
    268290}}}