Edgewall Software

Changes between Version 9 and Version 10 of TracOnRedhat


Ignore:
Timestamp:
Oct 25, 2005, 10:10:02 AM (19 years ago)
Author:
dragoncity99@…
Comment:

I updated the outline, since the first time i post this howto in a very UGLY non formatted plain text version. Thanks to the person who encouraged me to make the layout nicer. ;) Please feel free to put ur name on the Thank You. Everyone in this world really appreciate it. Cheers

Legend:

Unmodified
Added
Removed
Modified
  • TracOnRedhat

    v9 v10  
    33== 1. Packages Needed & Preparation ==
    44 The following are the packages needed to install Trac 0.8.4 successfuly:
     5{{{
    56 a. clearsilver-0.9.3.tar.gz
    67 b. httpd-2.0.52.tar.bz2
     
    1213 h. swig-1.3.21.tar.gz
    1314 i. trac-0.8.4.tar.gz
     15}}}
     16
    1417
    1518Notes: You need Python-2.3.5 because the version in Red Hat Linux 9 is Python-2.2.2-26
     
    2225
    2326== 2. Installing Python ==
     27{{{
    2428 a. cd /usr/local/RH9
    2529 b. tar xjf Python-2.3.5.tar.bz2
    2630 c. cd Python-2.3.5;./configure;make;make install
    2731 d. /sbin/ldconfig
    28 
     32}}}
    2933
    3034== 3. Installing Httpd ==
     35{{{
    3136 a. cd /usr/local/RH9
    3237 b. tar xjf httpd-2.0.52.tar.bz2
    3338 c. cd httpd-2.0.52;./configure;make;make install
    3439 d. /sbin/ldconfig
     40}}}
    3541
    3642== 4. Installing Swig ==
     43{{{
    3744a. cd /usr/local/RH9
    3845b. tar xzf swig-1.3.21.tar.gz
     
    4047d. make -k runtime;make install-runtime
    4148e. /sbin/ldconfig
     49}}}
     50
    4251
    4352
    4453== 5. Installing Subversion ==
     54{{{
    4555 a. cd /usr/local/RH9
    4656 b. tar xzf subversion-1.1.0.tar.gz
     
    5060 f. make swig-py;make install-swig-py
    5161 g. /sbin/ldconfig
     62}}}
     63
    5264
    5365
    5466== 6. Installing SqlLite ==
     67{{{
    5568 a. cd /usr/local/RH9
    5669 b. tar xzf sqlite-2.8.16.tar.gz
    5770 c. cd sqlite-2.8.16;./configure;make;make install
    5871 d. /sbin/ldconfig
     72}}}
     73
    5974
    6075
    6176== 7. Installing SilverCity ==
     77{{{
    6278 a. cd /usr/local/RH9
    6379 b. tar xzf SilverCity-0.9.5.tar.gz
    6480 c. cd SilverCity-0.9.5;python setup.py build;python setup.py install
    6581 d. /sbin/ldconfig
     82}}}
    6683
    6784
    6885== 8. Installing ClearSilver ==
     86
     87{{{
    6988 a. cd /usr/local/RH9
    7089 b. tar xzf clearsilver-0.9.3.tar.gz
    7190 c. cd clearsilver-0.9.3;./configure  --with-python=/usr/local/bin/python --with-apache=/usr/local/apache2;make;make install
    7291 d. /sbin/ldconfig
     92}}}
    7393
    7494
    7595== 9. Installing PySqlLite ==
     96{{{
    7697 a. cd /usr/local/RH9
    7798 b. tar xzf pysqlite-1.0.1.tar.gz
    7899 c. cd pysqlite;python setup.py build; python setup.py install
    79100 d. /sbin/ldconfig
     101}}}
     102
    80103
    81104
    82105== 9. Installing Trac ==
     106{{{
    83107 a. cd /usr/local/RH9
    84108 b. tar xzf trac-0.8.4.tar.gz
    85109 c. cd trac-0.8.4;python setup.py build;python setup.py install
    86110 d. /sbin/ldconfig
     111}}}
     112
    87113
    88114== 10. Finalizing Installation ==
     115{{{
    89116 Create symbolic link for libsvn library to the python2.3 library:
    90117 a. cd /usr/local/lib/python2.3/site-packages
     
    208235
    209236Congratulations!
     237}}}
     238
    210239
    211240
    212241== 11. Configuring Httpd ==
     242{{{
    213243a. Add the following section into your "/usr/local/apache/conf/httpd.conf" file:
    214244
     
    235265d. Copy "trac.cgi" file to "/usr/local/apache2/cgi-bin" directory:
    236266   cd /usr/local/apache2/cgi-bin;cp /usr/local/share/trac/cgi-bin/trac.cgi .
     267}}}
     268
    237269
    238270== 12. Congratulations :) ==
     271{{{
    239272a. Run your httpd server:
    240273   /usr/local/apache2/bin/httpd
     
    242275b. Open your web browser and type the following address:
    243276   your-ip-address/cgi-bin/trac.cgi
     277}}}
     278
     279
     280
     281
     282Thank You (DONT BE SHY):
     283''Your Name Here''
     284
     285
     286Kind Regards,
     287Richard Aik a.k.a. dragoncity99