<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://rt-wiki.bestpractical.com/index.php?action=history&amp;feed=atom&amp;title=FedoraCore9InstallGuide</id>
	<title>FedoraCore9InstallGuide - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://rt-wiki.bestpractical.com/index.php?action=history&amp;feed=atom&amp;title=FedoraCore9InstallGuide"/>
	<link rel="alternate" type="text/html" href="https://rt-wiki.bestpractical.com/index.php?title=FedoraCore9InstallGuide&amp;action=history"/>
	<updated>2026-08-22T00:03:07Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.1</generator>
	<entry>
		<id>https://rt-wiki.bestpractical.com/index.php?title=FedoraCore9InstallGuide&amp;diff=1308&amp;oldid=prev</id>
		<title>Admin: 3 revisions imported</title>
		<link rel="alternate" type="text/html" href="https://rt-wiki.bestpractical.com/index.php?title=FedoraCore9InstallGuide&amp;diff=1308&amp;oldid=prev"/>
		<updated>2016-04-06T20:09:04Z</updated>

		<summary type="html">&lt;p&gt;3 revisions imported&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{OutdatedInstallGuide}}&lt;br /&gt;
&lt;br /&gt;
This is a guide on how to install Request Tracker on Fedora Core 9.&lt;br /&gt;
&lt;br /&gt;
Install Fedora Core 9. During installation select to install a web server.&lt;br /&gt;
&lt;br /&gt;
If you want an installation of standard security, do the following, else see [[SELinux]]. Disable [[SELinux]]:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;* Open /etc/selinux/config.&lt;br /&gt;
 * Replace the line: SELINUX=enforcing&lt;br /&gt;
 * with SELINUX=permissive&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Update your installation with the latest software and patches:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;* yum update&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install a mysql server:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;* yum install mysql-server&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install mod_perl:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;* yum install perl-Apache-DBI&lt;br /&gt;
 * yum install mod_perl&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Start httpd and mysql service:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;* service mysqld start&lt;br /&gt;
 * service httpd start&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Set httpd and mysqld service to run automatically at startup after a reboot:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;* chkconfig httpd on&lt;br /&gt;
 * chkconfig mysqld on&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Set mysql root password:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;* mysqladmin -u root password &amp;amp;lt;mysql-root-password&amp;amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install RT:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;* yum install rt3&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Configure RT: Edit /etc/rt3/[[RT SiteConfig|RT_SiteConfig]].pm. Replace &amp;quot;example.com&amp;quot; with your domain.&lt;br /&gt;
&lt;br /&gt;
Initialize mysql database:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;* /usr/sbin/rt-setup-database --action init --dba root --dba-password &amp;amp;lt;mysql-root-password&amp;amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Start/restart httpd service:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;* /sbin/service httpd start&lt;br /&gt;
 * /sbin/service httpd restart&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Log in to request tracker: Browse to [http://&amp;lt;rt3-host&amp;gt;/rt3 http://&amp;amp;lt;rt3-host&amp;amp;gt;/rt3] Username: root Password: password&lt;br /&gt;
&lt;br /&gt;
Change password: Go to preferences-&amp;amp;gt;password and enter a new password.&lt;br /&gt;
&lt;br /&gt;
Configure web server: Open /etc/httpd/conf/httpd.conf Change [[DocumentRoot]] &amp;quot;/var/www/html&amp;quot; To [[DocumentRoot]] &amp;quot;/usr/share/rt3/html&amp;quot;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Set up RT to talk to your mail gateway&lt;br /&gt;
&lt;br /&gt;
Copy rt-mailgate folder to an accessible location:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;* cp /usr/sbin/rt-mailgate /etc/smrsh/rt-mailgate&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add the following lines to /etc/aliases:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;* rt: &amp;quot;|/etc/smrsh/rt-mailgate --queue &amp;#039;general&amp;#039; --action correspond --url !http://&amp;amp;lt;rt3-host&amp;amp;gt;/&amp;quot;&lt;br /&gt;
 * rt-comment: &amp;quot;|/etc/smrsh/rt-mailgate --queue &amp;#039;general&amp;#039; --action comment --url !http://&amp;amp;lt;rt3-host&amp;amp;gt;/&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In /etc/mail/sendmail.mc: change DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1, Name=MTA&amp;#039;)dnl to DAEMON_OPTIONS(`Port=smtp, Name=MTA&amp;#039;)dnl&lt;br /&gt;
&lt;br /&gt;
Install sendmail-cf:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;* yum install sendmail-cf&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3.3. Stop and start your mail server, so it picks up your configuration changes. (Postfix just requires you execute `newaliases`, probably via sudo.)&lt;br /&gt;
&lt;br /&gt;
4. Creating users&lt;br /&gt;
&lt;br /&gt;
In its default configuration, RT uses an internal users database to keep track of who can access RT and who has which rights within the system. One of your first tasks should be to create users for anyone who will need to work with tickets within RT.&lt;br /&gt;
&lt;br /&gt;
click Configuration -&amp;amp;gt; click Users -&amp;amp;gt; click New user&lt;br /&gt;
&lt;br /&gt;
For more details, see &amp;#039;Users: Creating a user&amp;#039; in [[ManualAdministration]].&lt;br /&gt;
&lt;br /&gt;
5. Granting User Rights&lt;br /&gt;
&lt;br /&gt;
RT provides a rich access control system that allows rights to be granted to groups, individual users and users in specific roles.&lt;br /&gt;
&lt;br /&gt;
To allow arbitrary remote users to submit tickets into a given queue by email, grant the system group Everyone the rights See Queue, Create Ticket, Reply To Ticket, and Comment On Ticket for that queue.&lt;br /&gt;
&lt;br /&gt;
If you intend to let ticket requestors use the requestor-mode web interface, you should grant the role of Requestor the right Show Ticket.&lt;br /&gt;
&lt;br /&gt;
To make sure your staff can work with tickets, you should grant them all the following additional rights:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;* !ShowTicket&lt;br /&gt;
 * !ShowTicketComments&lt;br /&gt;
 * Watch&lt;br /&gt;
 * !WatchAsAdminCc&lt;br /&gt;
 * !OwnTicket&lt;br /&gt;
 * !ModifyTicket&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For more details, see Users: Granting user rights in [[ManualAdministration]].&lt;br /&gt;
&lt;br /&gt;
6. Creating queues&lt;br /&gt;
&lt;br /&gt;
By default, RT has one queue called &amp;#039;general&amp;#039;. You might want to change the values for this.&lt;br /&gt;
&lt;br /&gt;
click Configuration -&amp;amp;gt; click Queues -&amp;amp;gt; click general&lt;br /&gt;
&lt;br /&gt;
To create a new queue:&lt;br /&gt;
&lt;br /&gt;
click Configuration -&amp;amp;gt; click Queues -&amp;amp;gt; click New queue&lt;br /&gt;
&lt;br /&gt;
For more details, see Queues in [[ManualAdministration]]. 7. Setting up scrips&lt;br /&gt;
&lt;br /&gt;
The default global Scrips installed with RT 3 are:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;* On Create, Autoreply to Requestors with Global Template: Autoreply&lt;br /&gt;
 * On Create, Notify AdminCcs with Global Template: Transaction&lt;br /&gt;
 * On Correspond, Notify AdminCcs with Global Template: Admin Correspondence&lt;br /&gt;
 * On Correspond, Notify Requestors and Ccs with Global Template: Correspondence&lt;br /&gt;
 * On Correspond, Notify Other Recipients with Global Template: Correspondence&lt;br /&gt;
 * On Comment, Notify AdminCcs as Comment with Global Template: Admin Comment&lt;br /&gt;
 * On Comment, Notify Other Recipients as Comment with Global Template: Correspondence&lt;br /&gt;
 * On Resolve, Notify Requestors with Global Template: Resolved&lt;br /&gt;
 * On Correspond, Open Ticket with Global Template: Blank (this scrip replaces old built-in behavior that would automatically open tickets if privileged users replied to a new ticket or if anyone replied to a stalled or closed ticket.)&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For more details, see Scrips in [[ManualAdministration]] and [[ManualScrips]].&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
</feed>