| 140 | |
| 141 | You can now install Request Tracker (RT); |
| 142 | {{{ |
| 143 | # make install |
| 144 | }}} |
| 145 | |
| 146 | {{{ |
| 147 | ... |
| 148 | # Make the web ui's data dir writable |
| 149 | chmod 0770 /opt/rt5/var/mason_data \ |
| 150 | /opt/rt5/var/session_data |
| 151 | chown -R www-data /opt/rt5/var/mason_data \ |
| 152 | /opt/rt5/var/session_data |
| 153 | chgrp -R www-data /opt/rt5/var/mason_data \ |
| 154 | /opt/rt5/var/session_data |
| 155 | Congratulations. RT is now installed. |
| 156 | |
| 157 | |
| 158 | You must now configure RT by editing /opt/rt5/etc/RT_SiteConfig.pm. |
| 159 | |
| 160 | (You will definitely need to set RT's database password in |
| 161 | /opt/rt5/etc/RT_SiteConfig.pm before continuing. Not doing so could be |
| 162 | very dangerous. Note that you do not have to manually add a |
| 163 | database user or set up a database for RT. These actions will be |
| 164 | taken care of in the next step.) |
| 165 | |
| 166 | After that, you need to initialize RT's database by running |
| 167 | 'make initialize-database' |
| 168 | }}} |
| 169 | |
| 170 | Create Request Tracker Database and Database user; |
| 171 | |
| 172 | Next, you need to create or if already created, define the Request Tracker database details. Therefore, within the RT source directory, run the command below; |
| 173 | {{{ |
| 174 | # cd rt-5.0.0/ |
| 175 | # make initialize-database |
| 176 | }}} |