= Trac on Ubuntu = These instructions were tested with a fresh install of 8.04, and installs Trac 0.11. Also see TracInstallPlatforms, TracInstall, TracOnUbuntu, [https://help.ubuntu.com/community/UbuntuTracHowto Ubuntu-Trac], [wiki:0.11/TracOnUbuntuHardy hardy, cgi]. = Installation = You can have a Ubuntu instance running a real hardware or VMware session. == 1. Install Software Packages == To install Trac on your system, install apache, setuptools and some libraries: {{{ sudo apt-get install apache2 libapache2-mod-python \ libapache2-svn python-setuptools subversion python-subversion sudo easy_install Trac }}} === Install clearsilver if you want to install Bitten === {{{ sudo apt-get install python-clearsilver }}} == 2. Create the Trac Environments Directory == You'll need a directory for Trac's environments to live that should be writable by the default Apache user: {{{ sudo mkdir /var/lib/trac sudo chown www-data:www-data /var/lib/trac }}} == 3. Setup Apache2 == Next, create a new Apache-2 virtualhost, and paste the text below into the file: {{{ sudo vi /etc/apache2/sites-available/trac }}} {{{ ServerAdmin webmaster@localhost ServerName trac.example.com DocumentRoot /var/www ErrorLog /var/log/apache2/error.trac.log CustomLog /var/log/apache2/access.trac.log combined SetHandler mod_python PythonInterpreter main_interpreter PythonHandler trac.web.modpython_frontend PythonOption TracEnvParentDir /var/lib/trac PythonOption TracUriRoot /projects PythonOption PYTHON_EGG_CACHE /tmp # use the following for one authorization for all projects # (names containing "-" are not detected): AuthType Basic AuthName "trac" AuthUserFile /etc/apache2/dav_svn.passwd Require valid-user }}} Now, disable the default virtualhost, enable the Trac virtualhost, and restart Apache2: {{{ sudo a2dissite default sudo a2ensite trac sudo /etc/init.d/apache2 reload }}} == 4. Creating Environments == I installed my Subversion repository at {{{/var/lib/svn/YourProjectNameHere}}}. So I did a quick starting config of subversion with the following commands: {{{ sudo mkdir /var/lib/svn sudo svnadmin create /var/lib/svn/YourProjectNameHere }}} Some permissions changes and an apache restart are now needed: {{{ sudo chown -R www-data /var/lib/svn sudo chown -R www-data /usr/share/trac sudo /etc/init.d/apache2 reload }}} I put my trac environment at {{{/var/lib/trac/YourProjectNameHere}}}. Of course you could use any other path or name - something a little more descriptive of ''your'' project would probably be a good idea. First I ran these commands: {{{ sudo mkdir /var/lib/trac sudo trac-admin /var/lib/trac/YourProjectNameHere initenv sudo chown -R www-data /var/lib/trac }}} The "trac-admin" command shown above prompted me to enter: * the project name ({{{YourProjectNameHere}}}) * the path to svn repository ({{{/var/lib/svn/YourProjectNameHere}}}) ... then it prints out a bunch of stuff. If there are no errors you should now be able to surf to your Trac site at '''!http://servername/projects''' For more complex mod_python configs, see TracModPython == 5. get subversion running as well == You will also need to uncomment the settings in {{{/etc/apache2/mods-available/dav_svn.conf}}} {{{ # Uncomment this to enable the repository, DAV svn # Set this to the path to your repository SVNParentPath /var/lib/svn }}} == 6. add some plugins to have a usable system == {{{ sudo apt-get install build-essential graphviz sudo easy_install http://svn.edgewall.org/repos/genshi/trunk/ sudo easy_install http://trac-hacks.org/svn/accountmanagerplugin/trunk sudo easy_install http://trac-hacks.org/svn/customfieldadminplugin/0.11 sudo easy_install http://trac-hacks.org/svn/eclipsetracplugin/tracrpcext/0.10 sudo easy_install http://trac-hacks.org/svn/iniadminplugin/0.11 sudo easy_install http://trac-hacks.org/svn/masterticketsplugin/0.11 sudo easy_install http://trac-hacks.org/svn/pagetopdfplugin/0.10/ sudo easy_install http://trac-hacks.org/svn/progressmetermacro/0.11 sudo easy_install http://trac-hacks.org/svn/ticketdeleteplugin/0.11 sudo easy_install http://trac-hacks.org/svn/tracwysiwygplugin/0.11 sudo easy_install http://wikinotification.ufsoft.org/svn/trunk }}} == 7. what one should probably do different than described here == {{{ sudo chown www-data /etc/apache2/dav_svn.passwd }}} = Testing = == Check the trac install directories layout == {{{ me@ubuntu:~$ tree -as /var/lib/trac/ /var/lib/trac/ `-- [ 4096] YourProjectNameHere |-- [ 98] README |-- [ 27] VERSION |-- [ 4096] attachments |-- [ 4096] conf | |-- [ 7025] trac.ini | |-- [ 4755] trac.ini.new | `-- [ 4187] trac.ini.sample |-- [ 4096] db | |-- [ 349184] trac.db | `-- [ 324608] trac.db.21.bak |-- [ 4096] htdocs |-- [ 4096] log | `-- [ 84562] trac.log |-- [ 4096] plugins | `-- [ 4096] TracWebAdmin-0.1.2dev-py2.5.egg | |-- [ 4096] EGG-INFO | | |-- [ 278] PKG-INFO | | |-- [ 335] SOURCES.txt | | |-- [ 1] dependency_links.txt | | |-- [ 218] entry_points.txt | | |-- [ 1] not-zip-safe | | `-- [ 9] top_level.txt | `-- [ 4096] webadmin | |-- [ 523] __init__.py | |-- [ 218] __init__.pyc | |-- [ 1594] basics.py | |-- [ 1682] basics.pyc | |-- [ 4096] htdocs | | |-- [ 4096] css | | | `-- [ 1900] admin.css | | |-- [ 4096] img | | | |-- [ 218] collapsed.png | | | `-- [ 227] expanded.png | | `-- [ 4096] js | | `-- [ 1286] admin.js | |-- [ 3930] logging.py | |-- [ 3133] logging.pyc | |-- [ 2659] perm.py | |-- [ 2585] perm.pyc | |-- [ 9247] plugin.py | |-- [ 8720] plugin.pyc | |-- [ 4096] templates | | |-- [ 954] admin.cs | | |-- [ 685] admin_basics.cs | | |-- [ 2961] admin_component.cs | | |-- [ 2202] admin_enum.cs | | |-- [ 1669] admin_log.cs | | |-- [ 3898] admin_milestone.cs | | |-- [ 1521] admin_perm.cs | | |-- [ 3167] admin_plugin.cs | | `-- [ 2901] admin_version.cs | |-- [ 16312] ticket.py | |-- [ 13250] ticket.pyc | |-- [ 5579] web_ui.py | `-- [ 6505] web_ui.pyc |-- [ 4096] snapshots `-- [ 4096] templates `-- [ 151] site.html 17 directories, 42 files me@ubuntu:~$ }}}