Edgewall Software

Changes between Version 219 and Version 220 of TracInstall


Ignore:
Timestamp:
Dec 13, 2007, 3:25:28 PM (16 years ago)
Author:
anonymous
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracInstall

    v219 v220  
    8585== Installing Trac ==
    8686
    87 Because of setuptools you can do, with the release tag, as well as with trunk:
     87One way to install Trac is using `setuptools`.
     88With setuptools you can install Trac from the subversion repository; for example,
     89to install release version 0.11 do:
    8890{{{
    8991easy_install http://svn.edgewall.com/repos/trac/tags/trac-0.11
     
    99101This will byte-compile the python source code and install it in the `site-packages` directory
    100102of your Python installation. The directories `cgi-bin`, `templates`, `htdocs`, `wiki-default` and `wiki-macros` are all copied to `$prefix/share/trac/`. `conf` and `plugins` stub directories are also created under `$prefix/share/trac/`.
     103On Linux, the default value of `$prefix` is `/usr`, so the installation will be to `/usr/share/trac`.
    101104
    102105The script will also install the [wiki:TracAdmin trac-admin] command-line tool, used to create and maintain [wiki:TracEnvironment project environments], as well as the [wiki:TracStandalone tracd] standalone server.
     
    129132Also note that the values you specify here can be changed later by directly editing the [wiki:TracIni] configuration file.
    130133
    131 ''Note: The user account under which the web server runs will require write permissions to the environment directory and all the files inside.''
     134''Note: The user account under which the web server runs will require write permissions to the environment directory and all the files inside.  On Linux, with the web server running as user apache and group apache, enter:''
     135
     136  chown -R apache.apache /path/to/myproject
    132137
    133138