Edgewall Software

Version 30 (modified by fedora@…, 18 years ago) ( diff )

Trac on Fedora Core 4 (and higher)

Installing Trac On Fedora Core 4 is easy with Yum and involves only 2 steps:

1) Verify you have configured Yum to use the Extras repository (which is enabled by default) and run the following command in a terminal window:

  $ sudo yum install trac

Yum will take care of all dependencies on which the Trac package depends (including python-clearsilver package) and will fetch and install them for you automatically.

2) Next, you need to edit /etc/httpd/conf.d/trac.conf to point to your trac environment and restart apache:

 <Location /foobar>
   SetHandler mod_python
   PythonHandler trac.web.modpython_frontend
   PythonOption TracEnv /var/trac/foobar
   PythonOption TracUriRoot /foobar
 </Location>

Notes on the Fedora Extras Trac package:

  • tracd is disabled and not packaged
  • trac.cgi is installed in /var/www/cgi-bin/trac.cgi
  • apache webserver config file is installed in /etc/httpd/conf.d/trac.conf
  • trac.fcgi is disabled and not packaged

If you happen to come accross any packaging issues, feature requests or problems on Fedora, you can submit a bugzilla bug for Trac at https://bugzilla.redhat.com/bugzilla/easy_enter_bug.cgi.

Note: See TracWiki for help on using the wiki.