Changes between Version 4 and Version 5 of TracModPython
- Timestamp:
- 2016-01-09T17:05:34+01:00 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracModPython
v4 v5 1 [[TracGuideToc]] 2 1 3 = Trac and mod_python 2 [[TracGuideToc]]3 4 4 5 Mod_python is an [https://httpd.apache.org/ Apache] module that embeds the Python interpreter within the server, so that web-based applications in Python will run many times faster than traditional CGI and will have the ability to retain database connections. … … 12 13 13 14 If you just installed mod_python, you may have to add a line to load the module in the Apache configuration: 14 {{{ 15 {{{#!apache 15 16 LoadModule python_module modules/mod_python.so 16 17 }}} 17 18 18 '' Note: The exact path to the module depends on how the HTTPD installation is laid out.''19 '''Note''': The exact path to the module depends on how the HTTPD installation is laid out. 19 20 20 21 On Debian using apt-get: 21 {{{ 22 {{{#!sh 22 23 apt-get install libapache2-mod-python libapache2-mod-python-doc 23 24 }}} 25 24 26 Still on Debian, after you have installed mod_python, you must enable the modules in apache2, equivalent to the above Load Module directive: 25 {{{ 27 {{{#!sh 26 28 a2enmod python 27 29 }}} 30 28 31 On Fedora use, using yum: 29 {{{ 32 {{{#!sh 30 33 yum install mod_python 31 34 }}} 35 32 36 You can test your mod_python installation by adding the following to your httpd.conf. You should remove this when you are done testing for security reasons. Note: mod_python.testhandler is only available in mod_python 3.2+. 33 {{{ 34 #!xml 37 {{{#!apache 35 38 <Location /mpinfo> 36 39 SetHandler mod_python … … 43 46 44 47 A simple setup of Trac on mod_python looks like this: 45 {{{ 46 #!xml 48 {{{#!apache 47 49 <Location /projects/myproject> 48 50 SetHandler mod_python … … 59 61 60 62 The options available are: 61 {{{ 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 63 {{{#!apache 64 # For a single project 65 PythonOption TracEnv /var/trac/myproject 66 67 # For multiple projects 68 PythonOption TracEnvParentDir /var/trac/myprojects 69 70 # For the index of multiple projects 71 PythonOption TracEnvIndexTemplate /srv/www/htdocs/trac/project_list_template.html 72 73 # A space delimitted list, with a "," between key and value pairs. 74 PythonOption TracTemplateVars key1,val1 key2,val2 75 76 # Useful to get the date in the wanted order 77 PythonOption TracLocale en_GB.UTF8 78 79 # See description above 80 PythonOption TracUriRoot /projects/myproject 79 81 }}} 80 82 81 83 === Python Egg Cache 82 84 83 Compressed python eggs like Genshi are normally extracted into a directory named `.python-eggs` in the users home directory. Since apache's home usually is not writable, an alternate egg cache directory can be specified like this:84 {{{ 85 Compressed Python eggs like Genshi are normally extracted into a directory named `.python-eggs` in the users home directory. Since Apache's home usually is not writeable, an alternate egg cache directory can be specified like this: 86 {{{#!apache 85 87 PythonOption PYTHON_EGG_CACHE /var/trac/myprojects/egg-cache 86 88 }}} 87 89 88 or you can uncompress the Genshi egg to resolve problems extracting from it.90 Or you can uncompress the Genshi egg to resolve problems extracting from it. 89 91 90 92 === Configuring Authentication … … 96 98 === Setting the Python Egg Cache 97 99 98 If the Egg Cache isn't writeable by your Web server, you'll either have to change the permissions, or point Python to a location where Apache can write. This can manifest itself as a ''500 internal server error'' and/or a complaint in the syslog. 99 100 {{{ 101 #!xml 100 If the Egg Cache isn't writeable by your Web server, you'll either have to change the permissions, or point Python to a location where Apache can write. This can manifest itself as a `500 internal server error` and/or a complaint in the syslog. 101 102 {{{#!apache 102 103 <Location /projects/myproject> 103 104 ... … … 109 110 === Setting the !PythonPath 110 111 111 If the Trac installation isn't installed in your Python path, you'll have to tell Apache where to find the Trac mod_python handler using the `PythonPath` directive: 112 {{{ 113 #!xml 112 If the Trac installation isn't installed in your Python path, you will have to tell Apache where to find the Trac mod_python handler using the `PythonPath` directive: 113 {{{#!apache 114 114 <Location /projects/myproject> 115 115 ... … … 124 124 125 125 The Trac mod_python handler supports a configuration option similar to Subversion's `SvnParentPath`, called `TracEnvParentDir`: 126 {{{ 127 #!xml 126 {{{#!apache 128 127 <Location /projects> 129 128 SetHandler mod_python … … 138 137 139 138 If you don't want to have the subdirectory listing as your projects home page you can use a 140 {{{ 141 #!xml 139 {{{#!apache 142 140 <LocationMatch "/.+/"> 143 141 }}} … … 146 144 147 145 You can also use the same authentication realm for all of the projects using a `<LocationMatch>` directive: 148 {{{ 149 #!xml 146 {{{#!apache 150 147 <LocationMatch "/projects/[^/]+/login"> 151 148 AuthType Basic … … 158 155 === Virtual Host Configuration 159 156 160 Below is the sample configuration required to set up your trac as a virtual server, ie when you access it at the URLs like 161 !http://trac.mycompany.com: 162 163 {{{ 164 #!xml 165 <VirtualHost * > 157 Below is the sample configuration required to set up your Trac as a virtual server, ie when you access it at the URLs like 158 `http://trac.mycompany.com`: 159 160 {{{#!apache 161 <VirtualHost *> 166 162 DocumentRoot /var/www/myproject 167 163 ServerName trac.mycompany.com … … 183 179 184 180 This does not seem to work in all cases. What you can do if it does not: 185 * Try using `<LocationMatch>` instead of `<Location>` 186 * <Location /> may, in your server setup, refer to the complete host instead of simple the root of the server. This means that everything (including the login directory referenced below) will be sent to python and authentication does not work (i.e. you get the infamous Authentication information missing error). If this applies to you, try using a sub-directory for trac instead of the root, ie /web/ and /web/login instead of / and /login.181 * Try using `<LocationMatch>` instead of `<Location>`. 182 * `<Location />` may, in your server setup, refer to the complete host instead of simple the root of the server. This means that everything (including the login directory referenced below) will be sent to Python and authentication does not work, ie you get the infamous Authentication information missing error. If this is the case, try using a sub-directory for Trac instead of the root, ie /web/ and /web/login instead of / and /login. 187 183 * Depending on apache's `NameVirtualHost` configuration, you may need to use `<VirtualHost *:80>` instead of `<VirtualHost *>`. 188 184 189 For a virtual host that supports multiple projects replace "`TracEnv`" /var/trac/myproject with "`TracEnvParentDir`" /var/trac/190 191 Note: !DocumentRoot should not point to your Trac project env. As Asmodai wrote on #trac: "suppose there's a webserver bug that allows disclosure of !DocumentRoot they could then leech the entire Trac environment".185 For a virtual host that supports multiple projects replace `TracEnv /var/trac/myproject` with `TracEnvParentDir /var/trac`. 186 187 '''Note''': !DocumentRoot should not point to your Trac project env. As Asmodai wrote on #trac: "suppose there's a webserver bug that allows disclosure of !DocumentRoot they could then leech the entire Trac environment". 192 188 193 189 == Troubleshooting 194 190 195 In general, if you get server error pages, you can either check the Apache error log, or enable the `PythonDebug` option: 196 {{{ 197 #!xml 191 If you get server error pages, you can either check the Apache error log, or enable the `PythonDebug` option: 192 {{{#!apache 198 193 <Location /projects/myproject> 199 194 ... … … 208 203 If you've used `<Location />` directive, it will override any other directives, as well as `<Location /login>`. 209 204 The workaround is to use negation expression as follows (for multi project setups): 210 {{{ 211 #!xml 205 {{{#!apache 212 206 #this one for other pages 213 207 <Location ~ "/*(?!login)"> … … 216 210 PythonOption TracEnvParentDir /projects 217 211 PythonOption TracUriRoot / 218 219 </Location> 212 </Location> 213 220 214 #this one for login page 221 215 <Location ~ "/[^/]+/login"> … … 255 249 === Problem with zipped egg 256 250 257 It's possible that your version of mod_python will not import modules from zipped eggs. If you encounter an `ImportError: No module named trac` in your Apache logs but you think everything is where it should be, this might be your problem. Look in your site-packages directory; if the Trac module appears as a ''file'' rather than a ''directory'', then this might be your problem. To rectify , try installing Trac using the `--always-unzip` option, like this:258 259 {{{ 251 It's possible that your version of mod_python will not import modules from zipped eggs. If you encounter an `ImportError: No module named trac` in your Apache logs but you think everything is where it should be, this might be your problem. Look in your site-packages directory; if the Trac module appears as a ''file'' rather than a ''directory'', then this might be your problem. To rectify this, try installing Trac using the `--always-unzip` option: 252 253 {{{#!sh 260 254 easy_install --always-unzip Trac-0.12b1.zip 261 255 }}} … … 268 262 269 263 This also works out-of-box, with following trivial config: 270 {{{#! xml264 {{{#!apache 271 265 SetHandler mod_python 272 266 PythonInterpreter main_interpreter … … 281 275 }}} 282 276 283 The `TracUriRoot` is obviously the path you need to enter to the browser to get to Trac, eg domain.tld/projects/trac.277 The `TracUriRoot` is obviously the path you need to enter to the browser to get to Trac, eg `domain.tld/projects/trac`. 284 278 285 279 === Additional .htaccess help 286 280 287 If you are using the .htaccess method you may have additional problems if your trac directory is inheriting .htaccess directives from another. This may also help to add to your .htaccess file:288 289 {{{ 281 If you are using the .htaccess method you may have additional problems if your Trac directory is inheriting .htaccess directives from another. This may also help to add to your .htaccess file: 282 283 {{{#!apache 290 284 <IfModule mod_rewrite.c> 291 285 RewriteEngine Off … … 296 290 ==== Win32 Issues 297 291 298 If you run trac with mod_python < 3.2 on Windows, uploading attachments will '''not''' work. This problem is resolved in mod_python 3.1.4 or later, so please upgrade mod_python to fix this.292 If you run Trac with mod_python < 3.2 on Windows, uploading attachments will '''not''' work. This problem is resolved in mod_python 3.1.4 or later, so please upgrade mod_python to fix this. 299 293 300 294 ==== OS X issues 301 295 302 When using mod_python on OS X you will not be able to restart Apache using `apachectl restart`. This is apparently fixed in mod_python 3.2, so please upgrade .296 When using mod_python on OS X you will not be able to restart Apache using `apachectl restart`. This is apparently fixed in mod_python 3.2, so please upgrade mod_python to fix this. 303 297 304 298 ==== SELinux issues 305 299 306 If Trac reports something like: ''Cannot get shared lock on db.lock'' 307 The security context on the repository may need to be set: 308 309 {{{ 300 If Trac reports something like: `Cannot get shared lock on db.lock`, then the security context on the repository may need to be set: 301 302 {{{#!sh 310 303 chcon -R -h -t httpd_sys_content_t PATH_TO_REPOSITORY 311 304 }}} … … 315 308 ==== FreeBSD issues 316 309 317 The FreeBSD ports have both the new and old versions of mod_python and SQLite, but earlier versions of pysqlite and mod_python won't integrate as the former requires threaded support in Python, and the latter requires a threadless install. 318 319 If you compiled and installed apache2, threads are not automatically supported on FreeBSD. You could force thread support when running `./configure` for Apache, using `--enable-threads`, but this isn´t recommended. 310 The FreeBSD ports have both the new and old versions of mod_python and SQLite, but earlier versions of pysqlite and mod_python won't integrate: 311 * pysqlite requires threaded support in Python 312 * mod_python requires a threadless install. 313 314 Apache2 does not automatically support threads on FreeBSD. You could force thread support when running `./configure` for Apache, using `--enable-threads`, but this isn´t recommended. 320 315 The best option [http://modpython.org/pipermail/mod_python/2006-September/021983.html seems to be] adding to /usr/local/apache2/bin/ennvars the line: 321 316 322 {{{ 317 {{{#!sh 323 318 export LD_PRELOAD=/usr/lib/libc_r.so 324 319 }}} … … 326 321 ==== Fedora 7 Issues 327 322 328 Make sure you install the 'python-sqlite2' package as it seems to be required for TracModPython but not for tracd.323 Make sure you install the 'python-sqlite2' package as it seems to be required for TracModPython, but not for tracd. 329 324 330 325 === Subversion issues 331 326 332 If you get the following Trac error `Unsupported version control system "svn"` only under mod_python, though it works well on the command-line and even with TracStandalone, chances are that you forgot to add the path to the Python bindings with the [TracModPython#ConfiguringPythonPath PythonPath] directive. Thebetter way is to add a link to the bindings in the Python `site-packages` directory, or create a `.pth` file in that directory.333 334 If this is not the case, it's possible that you 're using Subversion libraries that are binary incompatible with the Apache ones and an incompatibility of the `apr` libraries is usually the cause. In that case, you also won't be able to use the svn modules for Apache (`mod_dav_svn`).327 If you get the following Trac error `Unsupported version control system "svn"` only under mod_python, though it works well on the command-line and even with TracStandalone, chances are that you forgot to add the path to the Python bindings with the [TracModPython#ConfiguringPythonPath PythonPath] directive. A better way is to add a link to the bindings in the Python `site-packages` directory, or create a `.pth` file in that directory. 328 329 If this is not the case, it's possible that you are using Subversion libraries that are binary incompatible with the Apache ones and an incompatibility of the `apr` libraries is usually the cause. In that case, you also won't be able to use the svn modules for Apache (`mod_dav_svn`). 335 330 336 331 You also need a recent version of `mod_python` in order to avoid a runtime error ({{{argument number 2: a 'apr_pool_t *' is expected}}}) due to the default usage of multiple sub-interpreters. Version 3.2.8 ''should'' work, though it's probably better to use the workaround described in [trac:#3371 #3371], in order to force the use of the main interpreter: 337 {{{ 332 {{{#!apache 338 333 PythonInterpreter main_interpreter 339 334 }}} 340 335 341 This is a nyway the recommended workaround for other well-knownissues seen when using the Python bindings for Subversion within mod_python ([trac:#2611 #2611], [trac:#3455 #3455]). See in particular Graham Dumpleton's comment in [trac:comment:9:ticket:3455 #3455] explaining the issue.336 This is also the recommended workaround for other issues seen when using the Python bindings for Subversion within mod_python ([trac:#2611 #2611], [trac:#3455 #3455]). See in particular Graham Dumpleton's comment in [trac:comment:9:ticket:3455 #3455] explaining the issue. 342 337 343 338 === Page layout issues 344 339 345 If the formatting of the Trac pages look weird, chances are that the style sheets governing the page layout are not handled properly by the web server. Try adding the following lines to your apache configuration: 346 {{{ 347 #!xml 340 If the formatting of the Trac pages look weird, chances are that the style sheets governing the page layout are not handled properly by the web server. Try adding the following lines to your Apache configuration: 341 {{{#!apache 348 342 Alias /myproject/css "/usr/share/trac/htdocs/css" 349 343 <Location /myproject/css> … … 352 346 }}} 353 347 354 Note: For the above configuration to have any effect it must be put after the configuration of your project root location, i.e.{{{<Location /myproject />}}}.348 '''Note''': For the above configuration to have any effect it must be put after the configuration of your project root location, ie {{{<Location /myproject />}}}. 355 349 356 350 Also, setting `PythonOptimize On` seems to mess up the page headers and footers, in addition to hiding the documentation for macros and plugins (see #Trac8956). Considering how little effect the option has, leave it `Off`. … … 358 352 === HTTPS issues 359 353 360 If you want to run Trac fully under https you might find that it tries to redirect to plain http. In this case just add the following line to your apache configuration: 361 {{{ 362 #!xml 363 <VirtualHost * > 354 If you want to run Trac fully under https you might find that it tries to redirect to plain http. In this case just add the following line to your Apache configuration: 355 {{{#!apache 356 <VirtualHost *> 364 357 DocumentRoot /var/www/myproject 365 358 ServerName trac.mycompany.com … … 373 366 You may encounter segfaults (reported on Debian etch) if php5-mhash module is installed. Try to remove it to see if this solves the problem. See [http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=411487 Debian bug report]. 374 367 375 Some people also have troubles when using php5 compiled with its own 3rd party libraries instead of system libraries. Check [http://www.djangoproject.com/documentation/modpython/#if-you-get-a-segmentation-fault Django segmentation fault].368 Some people also have troubles when using PHP5 compiled with its own third party libraries instead of system libraries. Check [http://www.djangoproject.com/documentation/modpython/#if-you-get-a-segmentation-fault Django segmentation fault]. 376 369 377 370 ----