none
[openafs-wiki.git] / TWiki / TWikiInstallationGuide.mdwn
1 <div>
2   <ul>
3     <li><a href="#TWiki Installation Guide"> TWiki Installation Guide</a><ul>
4         <li><a href="#Overview"> Overview</a></li>
5         <li><a href="#Standard Installation"> Standard Installation</a><ul>
6             <li><a href="#Step 1: Create  Configure the Di"> Step 1: Create &amp; Configure the Directories</a></li>
7             <li><a href="#Step 2: Check the Server Directo"> Step 2: Check the Server Directory Settings</a></li>
8             <li><a href="#Step 3: Enable Perl File Permiss"> Step 3: Enable Perl File Permissions</a></li>
9             <li><a href="#Step 4: Set the Main Configurati"> Step 4: Set the Main Configuration File</a></li>
10             <li><a href="#Step 5: Finish Up from Your Brow"> Step 5: Finish Up from Your Browser</a></li>
11           </ul>
12         </li>
13         <li><a href="#Additional Server-Level Options"> Additional Server-Level Options</a><ul>
14             <li><a href="#Creating a New Web"> Creating a New Web</a></li>
15             <li><a href="#Adding Variables  Rendering Rule"> Adding Variables &amp; Rendering Rules </a></li>
16             <li><a href="#Enabling Basic Authentication (."> Enabling Basic Authentication (.htaccess)</a></li>
17           </ul>
18         </li>
19         <li><a href="#TWiki File System Info"> TWiki File System Info</a></li>
20       </ul>
21     </li>
22   </ul>
23 </div>
24
25 # <a name="TWiki Installation Guide"></a> TWiki Installation Guide
26
27 _Clean install of the current public release (01-Sep-2001)_
28
29 ## <a name="Overview"></a> Overview
30
31 These installation steps use the Apache web server on Linux as an example. TWiki runs on other web servers and Unix systems as well. (TWiki on Windows is possible, but has not been well-documented. More on that at TWiki:Codev/TWikiOnWindows.)
32
33 - **_NOTE:_** This Installation Guide assumes the following:
34
35 - - **User `nobody` ** is used for all files manipulated by the CGI scripts (executed by the Web server), and user `twiki` for all other files. Replace user `nobody` with another user if your Web server executes scripts under a different name (default for Debian is `www-data`). Also, you can substitute user `twiki` with your own username.
36
37 - - **You have control** over the Web server configuraton files. In case you don't - you may be installing on an ISP-hosted server - follow the steps but use these directories instead:
38
39 <table border="1" cellpadding="0" cellspacing="0">
40   <tr>
41     <th bgcolor="#99CCCC"><strong> TWiki dir: </strong></th>
42     <th bgcolor="#99CCCC"><strong> What it is: </strong></th>
43     <th bgcolor="#99CCCC"><strong> Where to copy: </strong></th>
44     <th bgcolor="#99CCCC"><strong> Example: </strong></th>
45   </tr>
46   <tr>
47     <td><code>twiki/bin</code></td>
48     <td> CGI bin </td>
49     <td> cgi-bin enabled dir </td>
50     <td><code>/home/smith/public_html/cgi-bin</code></td>
51   </tr>
52   <tr>
53     <td><code>twiki/lib</code></td>
54     <td> library files </td>
55     <td> same level like <code>twiki/bin</code></td>
56     <td><code>/home/smith/public_html/lib</code></td>
57   </tr>
58   <tr>
59     <td><code>twiki/pub</code></td>
60     <td> public files </td>
61     <td> htdoc enabled dir </td>
62     <td><code>/home/smith/public_html/pub</code></td>
63   </tr>
64   <tr>
65     <td><code>twiki/data</code></td>
66     <td> topic data </td>
67     <td> outside of htdoc tree (for security) </td>
68     <td><code>/home/smith/twiki/data</code></td>
69   </tr>
70   <tr>
71     <td><code>twiki/templates</code></td>
72     <td> web templates </td>
73     <td> outside of htdoc tree (for security) </td>
74     <td><code>/home/smith/twiki/templates</code></td>
75   </tr>
76 </table>
77
78 Read TWiki:Codev/SourceForgeHowTo in case you want to install TWiki on SourceForge.
79
80 ## <a name="Standard Installation"></a> Standard Installation
81
82 Request and download the TWiki 01-Sep-2001 distribution in Unix ZIP format from <http://TWiki.org/download.html>.
83
84 ### <a name="Step 1: Create  Configure the Di"></a> Step 1: Create &amp; Configure the Directories
85
86 - Create directory `/home/httpd/twiki` and unzip the TWiki distribution into this directory.
87 - The `twiki/bin` directory of TWiki must be set as a cgi-bin directory. Add `/home/httpd/twiki/bin` to file `/etc/httpd/httpd.conf` with only `ExecCGI` option.
88 - The `twiki/pub` directory of TWiki must be set so that it is visible as a URL. Add `/home/httpd/twiki` to file `httpd.conf` with normal access options (copy from `/home/httpd/html` ).
89 - Now add `ScriptAlias` for `/twiki/bin` and `Alias` for `/twiki` to file `httpd.conf` . <br />**_Note:_** The `ScriptAlias` **must** come before the `Alias` in Apache, otherwise it will fail to correctly set up `/twiki/bin/` , due to the fact that it sees that as being just another subdirectory of the `/twiki/` alias. <br />
90
91 > **Example `httpd.conf` entries:**
92 >
93 >      ScriptAlias /twiki/bin/ "/home/httpd/twiki/bin/"
94 >      Alias /twiki/ "/home/httpd/twiki/"
95 >      <Directory "/home/httpd/twiki/bin">
96 >        Options +ExecCGI
97 >        SetHandler cgi-script
98 >        Allow from all
99 >      </Directory>
100 >      <Directory "/home/httpd/twiki/pub">
101 >        Options FollowSymLinks +Includes
102 >        AllowOverride None
103 >        Allow from all
104 >      </Directory>
105
106 ### <a name="Step 2: Check the Server Directo"></a> Step 2: Check the Server Directory Settings
107
108 - Restart Apache by `/etc/rc.d/rc5.d/S85httpd restart` .
109 - Test if the `twiki/bin` directory is cgi-enabled:
110   - Enter the URL of that directory into your browser ( `http://your.domain.com/twiki/bin` ). It is not set correctly as cgi-bin in case you get something like `"Index of /twiki/bin"` . It is OK if you get a message like `"Forbidden. You don't have permission to access /twiki/bin/ on this server."`
111   - Execute the `testenv` script from your browser ( `http://your.domain.com/twiki/bin/testenv` ). It shows a table with all CGI environment variables. It also tests the settings in your <code>**twiki/lib/TWiki.cfg**</code> configuration file, which you will set later on.
112
113 ### <a name="Step 3: Enable Perl File Permiss"></a> Step 3: Enable Perl File Permissions
114
115 - Make sure Perl 5 and the Perl CGI library are installed on your system. Default location of Perl executable is `/usr/bin/perl`. In case Perl is installed in a different location, the first line of all Perl scripts in the <code>**twiki/bin**</code> directory must be changed (alternatively you can create a symbolic link from <code>**/usr/bin/perl**</code> ).
116   - **IMPORTANT:** On most ISP virtual domain accounts, Perl CGI scripts require a <code>**.cgi**</code> extension to run. Some systems need <code>**.pl**</code>, the regular Perl extension. Change all <code>**twiki/bin**</code> scripts appropriately if necssary.
117 - To be able to edit the Perl scripts and <code>**.tmpl**</code> files it is necessary to <code>**chown**</code> and <code>**chgrp -R twiki**</code> so all the files have the owner you want.
118 - The CGI scripts execute as <code>**nobody**</code>. Set the file permission of all Perl scripts in the <code>**twiki/bin**</code> directory as executable to <code>**-rwxr-xr-x**</code> (755).
119 - Set the permission of all files below `twiki/data` so that they are writable by user `nobody`. A simple way is to <code>**chmod**</code> them to <code>**-rw-rw-r--**</code> (664) and to <code>**chown**</code> them to <code>**nobody**</code>.
120 - Set the permission of the <code>**twiki/data**</code> directory and its subdirectories so that files in there are writable by user <code>**nobody**</code>. A simple way is to chmod them to <code>**drwxrwxr-x**</code> (775) and to <code>**chown**</code> them to <code>**nobody**</code>.
121 - Set the permission of the `twiki/pub` directory and all its subdirectories so that files in there are writable by user `nobody`. A simple way is to <code>**chmod**</code> them to <code>**drwxrwxr-x**</code> (775) and to <code>**chown**</code> them to <code>**nobody**</code>.
122
123 ### <a name="Step 4: Set the Main Configurati"></a> Step 4: Set the Main Configuration File
124
125 - Edit the file <code>**twiki/lib/TWiki.cfg**</code> and set the variables to your needs.
126   - Set the file extension in the `$scriptSuffix` variable to <code>**cgi**</code> or <code>**pl**</code> if required.
127   - Make sure RCS is installed. Set `$rcsDir` in `twiki/lib/TWiki.cfg` to mach the location of your RCS binaries.
128 - Note in case the CGI scripts are **_not_** running as user `nobody`: The `*,v` RCS repository files delivered with the installation package are locked by user `nobody` . In case the user is different (e.g. `www-data` ), it is not possible to check in files, this has the effect that the topic version number does not increase when saving a topic. In this case you need to unlock all repository files and lock them as user `www-data` (check the rcs man pages), or simply delete all the repository files. A simple way to switch the locker of the RCS files is to use sed: <br />`for f in *,v; do sed 's/nobody\:/www-data\:/' $f > x; mv x $f; done`
129 - **Security issue:** Directories `twiki/data` , `twiki/templates` and all its subdirectories should be set so that they are **not** visible as a URL. (Alternatively, move the directries to a place where they are not visible, and change the variables in `twiki/lib/TWiki.cfg` accordingly)
130 - Enable email notification of topic changes, [[MonitoringSiteActivity]] has more.
131 - Add the TWiki:Main/PoweredByTWikiLogo to your [[WebHome]] topic.
132
133 ### <a name="Step 5: Finish Up from Your Brow"></a> Step 5: Finish Up from Your Browser
134
135 - Point your Web browser at <code>**http://your.domain.com/twiki/bin/view**</code> and start TWiki-ing away!
136 - Edit the [[TWikiPreferences]] topic in the TWiki:TWiki web to set the WIKIWEBMASTER email address, the WEBCOPYRIGHT message and other preferences.
137 - Edit the [[WebNotify]] topic in all webs and set the users you want to notify.
138
139 That's it for the standard virgin installation of TWiki. Read on to learn how to customize TWiki.
140
141 ## <a name="Additional Server-Level Options"></a> Additional Server-Level Options
142
143 Complete a Standard Installation and your new TWiki site should be up and running. You can develop and manage most aspects of your site from the browser interface. Core set-up functions require direct access to the server file system, via Telnet or FTP. You can make server-level site changes during installation, or at any time afterwards.
144
145 <a name="CreateWeb"></a>
146
147 ### <a name="Creating a New Web"></a> Creating a New Web
148
149 - To create a new web:
150   1. **Create** a new web data directory under `twiki/data` and check the file permission of the directory.
151     - Use a name consisting of characters `A..Z` , `a..z` but **_not_** in [[WikiNotation]].
152   2. **Copy** all files from the `twiki/data/_default` directory to the new data directory, preserving the original files' owner, group and permissions (on Unix, use `cp -p`). The data files must be writable by the owner the CGI scripts are running on (usually, `nobody`).
153     - **_Hint:_** You can set permissions of `.txt` and `.txt,v` files to `-rw-rw-rw-` (666) and then edit the topic using your browser; RCS will restore the file permissions correctly when saving the topic.
154   3. **Add** the new web to the web list (visible in the upper right corner of each topic) by editing the site-level preferences, [[TWikiPreferences]]:
155     - Add the new web to the `%WIKIWEBLIST%` variable.
156   4. **Update** the web settings by editing the WebPreferences topic of the new web:
157     - Customize the `%WEBTOPICLIST%` variable to contain the web-specific links you prefer.
158     - Set the WEBBGCOLOR variable to a color. The number represents the unique color for the web.
159     - Set Plugins, access privileges, custom variables, other web-level options (ex: `%WEBCOPYRIGHT%` can be set for an individual web).
160   5. **Add** the new web to the color-coded web directory table by editing the [[TWikiWebsTable]] topic.
161   6. **Test** the new web: view pages, create a new page.
162
163 - That's it for a basic new web set-up. You can also further customize the web:
164   - Create customized templates in the new templates directory (otherwise, templates are inherited from `twiki/templates`).
165     - **_NOTE:_** For web-specific templates in a `templates` subdirectory, ex: `twiki/templates/someweb`.
166   - Create [[TWikiForms]] to add form-based page input that's stored separately from the main free-form topic text.
167
168 - **_NOTE:_** User home topics are located in the %WIKITOOLNAME%.Main web - don't try to move them or create them in other webs. From any web you can refer to users located in the %WIKITOOLNAME%.Main web with `Main.UserName` or `%MAINWEB%.UserName` - using the `%MAINWEB%` variable is preferable, particularly if you might change the Main web name.
169
170 ### <a name="Adding Variables  Rendering Rule"></a> Adding Variables &amp; Rendering Rules
171
172 - You can add new `%VARIABLES%`. Define site-level variables in the [[TWikiPreferences]] topic. See also [[TWikiVariables]].
173 - You can add new rendering rules or add new functionality to TWiki. To insure an easy upgrade of TWiki, it is recommended to do this sort of customization with [[TWikiPlugins]] and the Plugins API.
174
175 ### <a name="Enabling Basic Authentication (."></a> Enabling Basic Authentication (.htaccess)
176
177 - If you are on a non-authenticated server - not using SSL - and you would like to authenticate users:
178   1. **Rename** file `.htaccess.txt` in the `twiki/bin` directory to `.htaccess` and change it to your needs. For details, consult the HTTP server documentation (for Apache server: [[1]](http://www.apache.org/docs/mod/directives.html), [[2]](http://www.mcs.kent.edu/system/web_help/htaccess/introduction.html)). In particular, the following <font>red</font> part needs to be configured correctly: <br /><code>Redirect <font>/urlpath/to/TWiki/index.html</font> http://<font>your.domain.com/urlpath/to/TWiki/bin/</font>view</code><br /><code>AuthUserFile <font>/filepath/to/TWiki/data/</font>.htpasswd</code><br /><code>ErrorDocument 401 <font>/urlpath/to/TWiki/bin/</font>oops/TWiki/TWikiRegistration?template=oopsauth</code>
179     - **_NOTE:_** In case you renamed the CGI script files to have a file extension you need to reflect that in the `edit`, `view`, `preview`, etc entries in `.htaccess`.
180     - **_NOTE:_** The browser should ask for login name and password when you click on the <u>Edit</u> link. In case `.htaccess` does not have the desired effect you need to enable it: Add "AllowOverride All" to the Directory section of `access.conf` for your `twiki/bin` directory.
181   2. **Copy** the [[TWikiRegistrationPub]] topic to [[TWikiRegistration]]. Do that by either editing the topics in theTWiki web, or by renaming the `.txt` and `.txt,v` files in the `twiki/data/TWiki` directory.
182     - **_NOTE:_** You can customize the registration form if needed, like deleting or adding input tags. The `name=""` parameter of the input tags must start with: `"Twk0..."` (if this is an optional entry), or `"Twk1..."` (if this is a required entry). This will ensure that the fields are processed correctly.
183
184 - - A new line containing user name and encrypted password gets added to the `data/.htpasswd` file when a users registers. The file that comes with the TWiki installation contains a few user accounts of TWiki core team members (needed for testing). You can edit the file and delete those lines.
185
186 ## <a name="TWiki File System Info"></a> TWiki File System Info
187
188 See [[A: TWiki File System|Main/TWikiDocumentation#FileSystem]] for an installed system snapshot and descriptions of all files in the TWiki 01-Sep-2001 distribution.
189
190 -- [[MikeMannix]] - 07 Sep 2001 <br /> -- [[PeterThoeny]] - 13 Sep 2001 <br />