I modified thr SSL.Conf, Httpd.conf and the RT_SiteConfig.pm to point to 443 and http and it just bombs out anyone have any Ideas. using Red Hat 7, RT 4.4.1.
Set( $DatabaseHost, ‘localhost’ );
Set( $DatabaseName, ‘rt4’ );
Set( $DatabasePassword, ‘************’ );
Set( $DatabasePort, ‘’ );
Set( $DatabaseType, ‘mysql’ );
Set( $DatabaseUser, ‘rt_user’ );
Set( $rtname, ‘SECOPS’ );
Set( $WebDomain, ‘Server’);
Set( $WebPort, ‘443’ );
Set( $WebPath, ‘’);
Set( $SendmailPath, ‘/usr/sbin/sendmail’ );
Set( $CorrespondAddress , ‘Elevate-SecAlerts@elevate.com’);
Set( $CommentAddress ,‘Elevate-SecAlerts@elevate.com’);
Set( $MaxAttachmentSize , 10000000);
Set( $FriendlyFromLineFormat, “"%s" <%s>”);
Set( @Plugins, ‘RT::IR’);
Set($LogToFile , ‘debug’);
Set($LogDir, ‘/opt/rt4/var/log’);
Set($LogToFileNamed , “rt.log”);
Set( $ExternalAuthPriority, [“My_LDAP”] );
Set( $ExternalInfoPriority, [“My_LDAP”] );
# Make users created from LDAP Privileged
Set( $UserAutocreateDefaultsOnLogin, { Privileged => 1 } );
# Users should still be autocreated by RT as internal users if they
# fail to exist in an external service; this is so requestors (who
# are not in LDAP) can still be created when they email in.
Set($AutoCreateNonExternalUsers, 1);
# Minimal LDAP configuration; see RT::Authen::ExternalAuth::LDAP for
# further details and examples
Set( $ExternalSettings, {
‘My_LDAP’ => {
‘type’ => ‘ldap’,
‘server’ => ‘server.domain.com’,
‘user’ => ‘s_crp_reqtracker’,
‘pass’ => ‘***************’,
‘base’ => ‘dc=domain,dc=com’,
‘filter’ => ‘(objectClass=inetOrgPerson)’,
# Users are allowed to log in via email address or account
# name
‘attr_match_list’ => [
‘Name’,
‘EmailAddress’,
],
# Import the following properties of the user from LDAP upon
# login
‘attr_map’ => {
‘Name’ => ‘sAMAccountName’,
‘EmailAddress’ => ‘mail’,
‘RealName’ => ‘cn’,
‘WorkPhone’ => ‘telephoneNumber’,
‘Address1’ => ‘streetAddress’,
‘City’ => ‘l’,
‘State’ => ‘st’,
‘Zip’ => ‘postalCode’,
‘Country’ => ‘co’,
},
},
Now HTTPD.Conf