Difference between revisions of "Freeside:3:Documentation:RT Installation"
From Freeside
(Created page with "== Introduction == These instructions document installation of the integrated internal RT ticketing system. There is also support for running this integration against an exte…") |
|||
(7 intermediate revisions by 3 users not shown) | |||
Line 54: | Line 54: | ||
* <pre><nowiki># make create-rt</nowiki></pre> | * <pre><nowiki># make create-rt</nowiki></pre> | ||
** ''Authentication errors?'' | ** ''Authentication errors?'' | ||
− | *** ''Edit <code>pg_hba.conf</code>, change "<code> | + | *** ''Edit <code>pg_hba.conf</code>, change "<code>peer</code>" auth to "<code>trust</code>" for the line starting with "<code>local all all</code>"'' |
*** ''Restart Pg'' | *** ''Restart Pg'' | ||
*** ''Revert the change back and restart Pg after this installation step'' | *** ''Revert the change back and restart Pg after this installation step'' | ||
Line 65: | Line 65: | ||
* Restart Apache (httpd) and log into the Freeside web interface using the username and password you created during the first part of the installation. | * Restart Apache (httpd) and log into the Freeside web interface using the username and password you created during the first part of the installation. | ||
− | * | + | === Bootstrap RT's permissions === |
+ | |||
+ | * Click on "Ticketing Main" on the Freeside main menu to auto-create an RT login for your username | ||
+ | * Bootstrap your RT Login, replace ivan with your freeside employee account | ||
+ | |||
+ | <pre> | ||
+ | sudo su freeside -c psql | ||
− | === | + | insert into acl ( principaltype, principalid, rightname, objecttype, objectid ) |
− | + | values ( 'Group', | |
− | + | ( select id from groups where instance = ( select id from users where name = 'ivan' ) | |
− | + | and domain = 'ACLEquivalence' and type = 'UserEquiv' ), | |
− | + | 'SuperUser', 'RT::System', 1 ); | |
− | + | \q | |
+ | |||
+ | </pre> | ||
== Futher Reading == | == Futher Reading == | ||
* Follow the [http://wiki.bestpractical.com/ regular RT documentation] to configure RT, setup the mailgate, etc. | * Follow the [http://wiki.bestpractical.com/ regular RT documentation] to configure RT, setup the mailgate, etc. | ||
+ | * Set '''ticket_system-default_queueid''' once you have RT configured. |
Latest revision as of 12:58, 11 April 2020
Contents
Introduction
These instructions document installation of the integrated internal RT ticketing system.
There is also support for running this integration against an external RT installation, but it is not (yet) documented.
Documentation contributions are welcome.
Prerequisites
- Apache::Session
- HTML::TreeBuilder
- HTML-Format (CPAN: "install HTML::FormatText")
- Test::Inline
- Class::ReturnValue
- DBIx::SearchBuilder
- Log::Dispatch
- Locale::Maketext::Lexicon
- Locale::Maketext::Fuzzy
- Text::Wrapper
- Time-modules (CPAN: "install Time::ParseDate")
- Term::ReadKey
- Text::Autoformat
- Text::Quoted
- Regexp::Common
- HTML::Scrubber
- Tree::Simple
- Crypt::SSLeay
- GD::Graph
- UNIVERSAL::require
- XML::RSS
- Calendar::Simple
- GD::Graph
- GD::Text
- CSS::Squish
- HTML::ElementTable
Missing prerequisites? Please add them.
Installation
- Create a new Unix group called 'rt'
addgroup rt
- Edit the top-level Makefile (within the freeside source directory - NOT rt directory), set RT_ENABLED to 1 and set the RT_DOMAIN, RT_TIMEZONE, and FREESIDE_URL variables.
cd freeside-X.X/ nano Makefile
-
$ make configure-rt
- If your database is not on the local machine you will need to edit /opt/rt3/etc/RT_SiteConfig.pm and set the DatabaseHost value
-
# make create-rt
- Authentication errors?
- Edit
pg_hba.conf
, change "peer
" auth to "trust
" for the line starting with "local all all
" - Restart Pg
- Revert the change back and restart Pg after this installation step
- Edit
- Authentication errors?
-
make install-rt
- Configure Apache: make sure APACHE_CONF and FREESIDE_DOCUMENT_ROOT are set correctly in the Makefile, then run:
make install-apache
- Restart Apache (httpd) and log into the Freeside web interface using the username and password you created during the first part of the installation.
Bootstrap RT's permissions
- Click on "Ticketing Main" on the Freeside main menu to auto-create an RT login for your username
- Bootstrap your RT Login, replace ivan with your freeside employee account
sudo su freeside -c psql insert into acl ( principaltype, principalid, rightname, objecttype, objectid ) values ( 'Group', ( select id from groups where instance = ( select id from users where name = 'ivan' ) and domain = 'ACLEquivalence' and type = 'UserEquiv' ), 'SuperUser', 'RT::System', 1 ); \q
Futher Reading
- Follow the regular RT documentation to configure RT, setup the mailgate, etc.
- Set ticket_system-default_queueid once you have RT configured.