Hi to all.<br>
<br>
Im trying to <a id="KonaLink0" class="kLink" style="text-decoration:underline!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important" href="http://www.linuxquestions.org/questions/#"><font style="color:blue!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important" color="blue"><span class="kLink" style="color:blue!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important">install</span></font></a> a CentOS 6.2 machine with the Request Tracker Software (RT).<br>
Its a web-perl app to manage support tickets.<br>
<br>
I see that is recomended use mod_fcgid and install the server with centos 6.2, <a id="KonaLink1" class="kLink" style="text-decoration:underline!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important" href="http://www.linuxquestions.org/questions/#"><font style="color:blue!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important" color="blue"><span class="kLink" style="color:blue!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important">mysql</span></font></a>, apache and the requeriments to run RT.<br>
<br>
I <a id="KonaLink2" class="kLink" style="text-decoration:underline!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important" href="http://www.linuxquestions.org/questions/#"><font style="color:blue!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important" color="blue"><span class="kLink" style="color:blue!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important">installed</span></font></a> all (mod_fcgid from rpm from last tar.gz sources).<br>
<br>
The server works fibne. I can get running the Apache test page, and myphpadmin.<br>
<br>
<div style="margin:20px;margin-top:5px">
<div class="smallfont" style="margin-bottom:2px">Code:</div>
<pre class="bbcodeblock" dir="ltr" style="margin:0px;padding:3px;border:1px inset;width:98%;height:498px;text-align:left;overflow:auto">yum install httpd-devel
Download source mod_fcgid.
wget <a href="http://www.apache.org/dist/httpd/mod_fcgid/mod_fcgid-2.3.6.tar.gz">http://www.apache.org/dist/httpd/mod_fcgid/mod_fcgid-2.3.6.tar.gz</a>
Install mod_fcgid.
tar -zxvf src/mod_fcgid-2.3.6.tar.gz
cd mod_fcgid-2.3.6
./configure.apxs
make
make install
Configure FCGID populating the conf file.
nano -w /etc/httpd/conf.d/php-fcgid.conf
<IfModule mod_fcgid.c>
DefaultInitEnv PHPRC=/etc
AddHandler php-fcgi .php
FcgidConnectTimeout 20
MaxRequestLen 2100000
Action php-fcgi /fcgi-bin/php-fcgi-wrapper
AddType application/x-httpd-php .php
Alias /fcgi-bin/ /var/www/fcgi-bin.d/default/
<Location /fcgi-bin/>
SetHandler fcgid-script
Options +ExecCGI
</Location>
</IfModule>
FcgidIOTimeout 2000
IdleScanInterval 5
BusyScanInterval 5
DefaultMinClassProcessCount 0
DefaultMaxClassProcessCount 10
IPCCommTimeout 60
IPCConnectTimeout 60
IdleTimeout 5</pre>
</div>Nex try to restart httpd and get this.<br>
<br>
[root@rt2 conf.d]# /etc/init.d/httpd restart<br>
Stopping httpd: [FAILED]<br>
Starting httpd: Syntax error on line 19 of /etc/httpd/conf.d/php-fcgid.conf:<br>
Invalid command 'IdleScanInterval', perhaps misspelled or defined by a module not included in the <a id="KonaLink3" class="kLink" style="text-decoration:underline!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important" href="http://www.linuxquestions.org/questions/#"><font style="color:blue!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important" color="blue"><span class="kLink" style="color:blue!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important">server </span><span class="kLink" style="color:blue!important;font-family:inherit!important;font-weight:inherit!important;font-size:inherit!important">configuration</span></font></a><br>
[FAILED]<br>
<br>
doesn´t accept any line under "</IfModule>" in the /etc/httpd/conf.d/php-fcgid.conf file.<br>
<br>
<br>
Any help, please??<br>
<br>
Thanks.<br>
Kindest regards.