[rt-users] Debian RT install woes

Yan Seiner yan at seiner.com
Tue Aug 9 14:00:49 EDT 2011


On Tue, August 9, 2011 10:48 am, Ruslan Zakirov wrote:
> It's hard to help without Apache config and site configs.

I will send these separately

for RT 3.8

root at svr-rt:/etc/request-tracker3.8# cat RT_SiteConfig.pm  | grep -v ^# |
grep -v ^$
my $zone = "UTC";
$zone=`/bin/cat /etc/timezone`
    if -f "/etc/timezone";
chomp $zone;
Set($Timezone, $zone);
Set($rtname, 'rt3.subutil.com');
Set($Organization, 'svr-rt.ad.subutil.com');
Set($CorrespondAddress , 'rt at svr-rt.ad.subutil.com');
Set($CommentAddress , 'rt-comment at svr-rt.ad.subutil.com');
Set($WebDomain, 'tracker');
Set($WebPath , "/rt3");
Set($WebBaseURL , "http://svr-rt.ad.subutil.com");
my %typemap = (
    mysql   => 'mysql',
    pgsql   => 'Pg',
    sqlite3 => 'SQLite',
);

Set($DatabaseType, $typemap{mysql} || "UNKNOWN");
Set($DatabaseHost, 'localhost');
Set($DatabasePort, '');
Set($DatabaseUser , '***');
Set($DatabasePassword , '*****');
my $dbc_dbname = 'rt3db'; if ( $DatabaseType eq "sqlite3" ) { Set
($DatabaseName, '/var/lib/dbconfig-common/sqlite3/request-tracker3.8' .
'/' . $dbc_dbname); } else { Set ($DatabaseName, $dbc_dbname); }
1;

root at svr-rt:/etc/apache2/conf.d# cat
/etc/request-tracker3.8/apache2-fcgid.conf  | grep -v ^# | grep -v ^$
Alias /rt3/NoAuth/images /usr/share/request-tracker3.8/html/NoAuth/images
ScriptAlias /rt3 /usr/share/request-tracker3.8/libexec/mason_handler.fcgi
<Location /rt3/>
 DirectoryIndex index.html
</Location>
<Location /rt3/REST/1.0/NoAuth>
    Order Allow,Deny
    Allow from 127.0.0.1
</Location>





More information about the rt-users mailing list