简体   繁体   English

使用Apache2的Request Tracker 4.4.1

[英]Request Tracker 4.4.1 with Apache2

I installed RT4 and it is working. 我安装了RT4,它正在工作。 I am now trying to run RT with Apache2. 我现在正在尝试使用Apache2运行RT。 I am using Centos 6.8 我正在使用Centos 6.8

For now I don't care which method I use: mod_perl, fastcgi or fcgid. 现在我不在乎我使用哪种方法:mod_perl,fastcgi或fcgid。 Just want to see it working. 只想看到它的工作。

If I use mod_perl config, I get an error when I restart the apache. 如果使用mod_perl config,则重新启动apache时会出错。

/etc/httpd/conf/httpd.conf: /etc/httpd/conf/httpd.conf:

<VirtualHost *:80>
# This first-listed virtual host is also the default for *:80
ServerName ittickets.domain.local
AddDefaultCharset UTF-8
    DocumentRoot "/opt/rt4/share/html"
    <Location /rt>
        <IfVersion >= 2.4>
            Require all granted
        </IfVersion>
        <IfVersion < 2.4>
            Order allow,deny
            Allow from all
        </IfVersion>
        SetHandler modperl
        PerlResponseHandler Plack::Handler::Apache2
        PerlSetVar psgi_app /opt/rt4/sbin/rt-server
    </Location>
    <Perl>
        use Plack::Handler::Apache2;
        Plack::Handler::Apache2->preload("/opt/rt4/sbin/rt-server");
    </Perl>
</VirtualHost>

Error: 错误:

Starting httpd: [8891] [Mon Oct 10 13:07:49 2016] [warning]: DBI connect('dbname=rt4;host=srv-db.domain.local','rt_user',...) failed: Can't connect to MySQL server on 'srv-db.domain.local' (13) at /usr/local/share/perl5/DBIx/SearchBuilder/Handle.pm line 105. (/usr/local/share/perl5/Carp.pm:169)

RT couldn't connect to the database where tickets are stored.
If this is a new installation of RT, you should visit the URL below
to configure RT and initialize your database.

If this is an existing RT installation, this may indicate a database
connectivity problem.

The error RT got back when trying to connect to your database was:

Connect Failed Can't connect to MySQL server on 'srv-db.domain.local' (13)
 at /opt/rt4/sbin/../lib/RT.pm line 216.

[8891] [Mon Oct 10 13:07:50 2016] [warning]: DBI connect('dbname=rt4;host=srv-db.domain.local','rt_user',...) failed: Can't connect to MySQL server on 'srv-db.domain.local' (13) at /usr/local/share/perl5/DBIx/SearchBuilder/Handle.pm line 105. (/usr/local/share/perl5/Carp.pm:169)

But, there is no problem connecting to the database with rt_user. 但是,使用rt_user连接到数据库没有问题。

If i visit http://ittickets.domain.local , I get this message: 如果我访问http://ittickets.domain.local则会收到以下消息:

You're almost there!
You haven't yet configured your webserver to run RT. You appear to have installed RT's web interface correctly, but haven't yet configured your web server to "run" the RT server which powers the web interface. The next step is to edit your webserver's configuration file to instruct it to use RT's mod_perl or FastCGI handler. If you need commercial support, please contact us at sales@bestpractical.com. 

RT config /opt/rt4/etc/RT_SiteConfig.pm: RT配置/opt/rt4/etc/RT_SiteConfig.pm:

Set($rtname, 'domain.local');
Set($Organization, 'ittickets.domain.local');
Set($WebPort, 80);
Set($WebDomain, 'ittickets.domain.local');
Set($WebPath, '/rt');
Set(@ReferrerWhitelist, qw(ittickets.domain.local));

### MYSQL Config
Set($DatabaseType, "mysql");
Set($DatabaseHost,   "srv-db.domain.local");
Set($DatabaseRTHost, "srv-rt.domain.local");
Set($DatabasePort, "");
Set($DatabaseUser, "rt_user");
Set($DatabasePassword, q{xxxxxxxxxxx});
Set($DatabaseName, q{rt4});

I tried all the configurations found on the Internet. 我尝试了Internet上的所有配置。 I don't understand what I do wrong. 我不明白我做错了什么。 Can someone give a hint, please? 有人可以给个提示吗?

Looks like the problem with mysql connect is because the SeLinux. 看起来mysql connect的问题是因为SeLinux。

setsebool -P httpd_can_network_connect=1 did the job. setsebool -P httpd_can_network_connect=1完成了这项工作。

I still have the problem with : You're almost there .... 我仍然有问题:您快到了.....

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM