<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://secure.freeside.biz/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tmcarter</id>
		<title>Freeside - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://secure.freeside.biz/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tmcarter"/>
		<link rel="alternate" type="text/html" href="https://secure.freeside.biz/mediawiki/index.php/Special:Contributions/Tmcarter"/>
		<updated>2026-05-06T09:07:38Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.27.7</generator>

	<entry>
		<id>https://secure.freeside.biz/mediawiki/index.php?title=Freeside:1.7:Documentation:InstallingOnCentOS4&amp;diff=2216</id>
		<title>Freeside:1.7:Documentation:InstallingOnCentOS4</title>
		<link rel="alternate" type="text/html" href="https://secure.freeside.biz/mediawiki/index.php?title=Freeside:1.7:Documentation:InstallingOnCentOS4&amp;diff=2216"/>
				<updated>2007-06-05T04:55:11Z</updated>
		
		<summary type="html">&lt;p&gt;Tmcarter: /* RT Prereqs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Installing Freeside 1.7.x on CentOS 4.4 =&lt;br /&gt;
&lt;br /&gt;
This is a (hopefully) step-by-step guide for doing a basic installation of Freeside on CentOS 4.4 using RPMs whenever possible.  It would probably be easier to use CPAN directly in some cases, but that wouldn't be very fun now would it?&lt;br /&gt;
&lt;br /&gt;
== Software Installation ==&lt;br /&gt;
&lt;br /&gt;
Run the correct command below depending on your architecture.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# export BASEARCH=i386&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
...or...&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# export BASEARCH=x86_64&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Binary Packages ===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Package*||*Repo*||*Version*&lt;br /&gt;
|-&lt;br /&gt;
|httpd||base||2.0.52-28.ent.centos4&lt;br /&gt;
|-&lt;br /&gt;
|postgresql-server||update||7.4.16-1.RHEL4.1&lt;br /&gt;
|-&lt;br /&gt;
|tetex||base||2.0.2-22.EL4.7&lt;br /&gt;
|-&lt;br /&gt;
|ghostscript||base||7.07-33&lt;br /&gt;
|-&lt;br /&gt;
|perl||centosplus||4:5.8.8-4.el4s1&lt;br /&gt;
|-&lt;br /&gt;
|gcc||base||3.4.6-8&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install httpd postgresql-server tetex ghostscript.$BASEARCH&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Upgrade to perl 5.8.8 to get CGI &amp;gt;= 3.08.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum --enablerepo=centosplus upgrade perl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next install the gcc complier&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install gcc&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Perl Packages ===&lt;br /&gt;
&lt;br /&gt;
Setup 3rd party repos for most of the extra perl modules.&lt;br /&gt;
**Some of the links here have changed, you may have to d/l the RPM locally and install from local source**&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# rpm -ivh ftp://rpmfind.net/linux/dag/redhat/el4/en/i386/dag/RPMS/rpmforge-release-0.3.6-1.el4.rf.i386.rpm&lt;br /&gt;
# rpm --import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt&lt;br /&gt;
&lt;br /&gt;
# cat &amp;amp;lt;&amp;amp;lt;END&amp;amp;gt;/etc/yum.repos.d/dries.repo&lt;br /&gt;
[dries]&lt;br /&gt;
name=Extra Fedora rpms dries - \$releasever - \$basearch&lt;br /&gt;
baseurl=http://ftp.belnet.be/packages/dries.ulyssis.org/redhat/el\$releasever/en/\$basearch/dries/RPMS&lt;br /&gt;
END&lt;br /&gt;
# rpm --import http://dries.ulyssis.org/rpm/RPM-GPG-KEY.dries.txt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install the cpan2rpm tool so we can build RPMs from CPAN packages.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# rpm --import http://perl.arix.com/cpan2rpm/gpg.pub.asc&lt;br /&gt;
# yum install rpm-build perl-Module-Build&lt;br /&gt;
# rpm -ivh http://superb-east.dl.sourceforge.net/sourceforge/cpan2rpm/cpan2rpm-2.027-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== mod_perl2 ====&lt;br /&gt;
&lt;br /&gt;
Grab mod_perl 2.03 from the centosplus repo.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum --enablerepo=centosplus install mod_perl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Freeside Prereqs ====&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Perl Module*||*Package*||*Version*||*Repo*&lt;br /&gt;
|-&lt;br /&gt;
|libnet||libnet||1.1.2.1-2.rf||extras&lt;br /&gt;
|-&lt;br /&gt;
|libwww-perl||perl-libwww-perl.noarch||5.79-5||base&lt;br /&gt;
|-&lt;br /&gt;
|URI||perl-URI.noarch||1.30-4||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Tagset||perl-HTML-Tagset.noarch||3.03-30||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Parser||perl-HTML-Parser||3.35-6||base&lt;br /&gt;
|-&lt;br /&gt;
|DBI||perl-DBI||1.40-8||base&lt;br /&gt;
|-&lt;br /&gt;
|DBD::MySQL||perl-DBD-MySQL||2.9004-3.1||base&lt;br /&gt;
|-&lt;br /&gt;
|MailTools||perl-MailTools.noarch||1.74-1.c4||extras&lt;br /&gt;
|-&lt;br /&gt;
|TimeDate||perl-TimeDate.noarch||1.16-1.c4||extras&lt;br /&gt;
|-&lt;br /&gt;
|Date::Manip||perl-DateManip.noarch||5.42a-3||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Mason||perl-HTML-Mason||1.3200-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Text::Template||perl-Text-Template||1.44-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DateTime||perl-DateTime||0.2901-1.2.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Chart||perl-Chart||2.4.1-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Cache::Cache||perl-Cache-Cache||1.05-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|NetAddr::IP||perl-NetAddr-IP||4.004-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|String::Approx||perl-String-Approx||3.26-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Locale::SubCountry||perl-Locale-SubCountry||1.38-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Term::ReadKey||perl-Term-ReadKey||2.30-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DateTime::Format::Strptime||perl-DateTime-Format-Strptime||1.0700-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Net::Whois::Raw||perl-Net-Whois-Raw||1.20-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBIx::DBSchema||perl-DBIx-DBSchema||0.31-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Tie::IxHash||perl-Tie-IxHash||1.21-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::PasswdMD5||perl-Crypt-PasswdMD5||1.3-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|File::CounterFile||perl-File-CounterFile||1.04-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|IPC::Run3||perl-IPC-Run3||0.036-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Net::SSH||perl-Net-SSH||0.08-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|String::ShellQuote||perl-String-ShellQuote||1.03-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|JSON||perl-JSON||1.07-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Data::Table||perl-Data-Table||1.50-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Lingua::EN::NameParse||perl-Lingua-EN-NameParse||1.22-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Lingua::EN::Inflect||perl-Lingua-EN-Inflect||1.89-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Apache::DBI||perl-Apache-DBI||0.9901-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|IO::Scalar||perl-IO-stringy||2.110-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::CSV_XS||perl-Text-CSV_XS||0.23-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Spreadsheet::WriteExcel||perl-Spreadsheet-WriteExcel||2.17-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|MIME-tools||perl-MIME-tools||5.420-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Date::Manip||perl-DateManip||5.42a-3||base&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::DES||perl-Crypt-DES||2.05-3.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Blowfish||perl-Crypt-Blowfish||2.10-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Digest::MD4||perl-Digest-MD4||1.5-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Rijndael||perl-Crypt-Rijndael||0.05-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|ExtUtils::CBuilder||perl-ExtUtils-CBuilder||0.18-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBD::Pg||perl-DBD-Pg||1.49-1.el4s1||centosplus&lt;br /&gt;
|-&lt;br /&gt;
|Locale-Codes|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Frontier::RPC2|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Business::CreditCard|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Time::Duration|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Widgets::SelectLayers|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Color::Scheme|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Params::Classify||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Scalar::Number||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Integer||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Float||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Module::Runtime||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Authen::DecHpwd||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Authen::Passphrase||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Entropy::Algorithms||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::MySQL||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Eksblowfish||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::UnixCrypt_XS||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Fax::Hylafax::Client||||cpan2rpm&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install libnet perl-libwww-perl perl-URI perl-HTML-Tagset&lt;br /&gt;
# yum -y install perl-HTML-Parser &lt;br /&gt;
# yum -y install perl-MailTools perl-TimeDate&lt;br /&gt;
# yum -y install perl-HTML-Mason perl-Text-Template perl-DateTime perl-Chart&lt;br /&gt;
# yum -y install perl-Cache-Cache perl-NetAddr-IP perl-String-Approx&lt;br /&gt;
# yum -y install perl-Locale-SubCountry perl-Term-ReadKey&lt;br /&gt;
# yum -y install perl-DateTime-Format-Strptime perl-Net-Whois-Raw&lt;br /&gt;
# yum -y install perl-Tie-IxHash perl-Crypt-PasswdMD5&lt;br /&gt;
# yum -y install perl-File-CounterFile perl-IPC-Run3 perl-Net-SSH&lt;br /&gt;
# yum -y install perl-String-ShellQuote perl-JSON perl-Data-Table&lt;br /&gt;
# yum -y install perl-Lingua-EN-NameParse perl-Lingua-EN-Inflect&lt;br /&gt;
# yum -y install perl-IO-stringy perl-Text-CSV_XS perl-Spreadsheet-WriteExcel&lt;br /&gt;
# yum -y install perl-MIME-tools perl-DateManip&lt;br /&gt;
# yum -y install perl-DBI perl-DBD-MySQL perl-Apache-DBI &lt;br /&gt;
# yum -y install --enablerepo=centosplus perl-DBD-Pg&lt;br /&gt;
# yum -y install perl-Crypt-DES perl-Crypt-Blowfish perl-Digest-MD4&lt;br /&gt;
# yum -y install perl-Crypt-Rijndael perl-ExtUtils-CBuilder&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can install these using cpan, or follow the directions here using cpan2rpm.&lt;br /&gt;
&lt;br /&gt;
* DBIx::DBSchema&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-DBIx-DBSchema&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Frontier::RPC2&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-XML-Parser&lt;br /&gt;
# cpan2rpm --author='Ken MacLeod &amp;amp;lt;ken@bitsko.slc.ut.us&amp;amp;gt;' --version='0.07b4' Frontier-RPC&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Frontier-RPC-0.07b4-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Business::CreditCard&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Business::CreditCard&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Business-CreditCard-0.30-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Time::Duration&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-Test-Pod perl-Test-Pod-Coverage&lt;br /&gt;
# cpan2rpm Time::Duration&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Time-Duration-1.04-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* HTML::Widgets::SelectLayers&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm http://search.cpan.org/CPAN/authors/id/I/IV/IVAN/HTML-Widgets-SelectLayers-0.07.tar.gz&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-HTML-Widgets-SelectLayers-0.07-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Color::Scheme&lt;br /&gt;
&lt;br /&gt;
Ran into much brokenness when trying to build Test-Simple-0.67.  Just skip the dep checks and test phase and hope.  I mean, come on, it's Color::Scheme for crying out loud!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-Test-Differences&lt;br /&gt;
# cpan2rpm --make-no-test --no-depchk Color::Scheme&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Color-Scheme-1.02-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Params::Classify&lt;br /&gt;
&lt;br /&gt;
Install some deps first...&lt;br /&gt;
&lt;br /&gt;
** Scalar::Number&lt;br /&gt;
&lt;br /&gt;
*** Data::Integer&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Data::Integer&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Integer-0.001-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*** Data::Float&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Data::Float&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Float-0.005-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Scalar::Number&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Scalar-Number-0.001-1.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
# cpan2rpm Params::Classify&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Params-Classify-0.002-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Module::Runtime&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Module::Runtime&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Module-Runtime-0.003-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Authen::DecHpwd&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Authen::DecHpwd&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Authen-DecHpwd-2.001-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Data::Entropy::Algorithms&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --make-no-test Data::Entropy&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Entropy-0.003-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::MySQL&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --version='0.04' --author='IKEBE Tomohiro &amp;lt;ikebe@shebang.jp&amp;gt;' Crypt::MySQL&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-MySQL-0.04-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::Eksblowfish&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Crypt::Eksblowfish&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-Eksblowfish-0.001-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::UnixCrypt_XS&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Crypt::UnixCrypt_XS&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/i386/perl-Crypt-UnixCrypt_XS-0.06-1.i386.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Authen::Passphrase&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Authen::Passphrase&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Authen-Passphrase-0.005-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Fax::Hylafax::Client (Optional)&lt;br /&gt;
&lt;br /&gt;
Skip the tests here as well, unless you happen to have a properly configured HylaFAX server handy.&lt;br /&gt;
Or, skip the package entirely if you don't plan on sending FAX invoices.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --make-no-test Fax::Hylafax::Client&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Fax-Hylafax-Client-1.02-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== RT Prereqs ====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Perl Module*||*Package*||*Version*||*Repo*&lt;br /&gt;
|-&lt;br /&gt;
|Apache::Session||perl-Apache-Session||1.81-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML-Format||perl-HTML-Format||2.04-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Class::ReturnValue||perl-Class-ReturnValue||0.53-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBIx::SearchBuilder||perl-DBIx-SearchBuilder||1.43-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Log::Dispatch||perl-Log-Dispatch||2.11-1.2.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Locale::Maketext::Lexicon||perl-Locale-Maketext-Lexicon||0.62-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Locale::Maketext::Fuzzy||perl-Locale-Maketext-Fuzzy||0.02-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Wrapper||perl-Text-Wrapper||1.000-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Time-modules||perl-Time-modules||2003.1126-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Autoformat||perl-Text-Autoformat||1.13-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Quoted||perl-Text-Quoted||1.8-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Regexp::Common||perl-Regexp-Common||2.120-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Scrubber||perl-HTML-Scrubber||0.08-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Tree::Simple||perl-Tree-Simple||1.17-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML::TreeBuilder||perl-HTML-Tree||3.23-1.el4.rf||dries&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-Apache-Session perl-HTML-Format perl-Class-ReturnValue&lt;br /&gt;
# yum -y install perl-Locale-Maketext-Lexicon perl-Locale-Maketext-Fuzzy&lt;br /&gt;
# yum -y install perl-Text-Wrapper perl-Time-modules&lt;br /&gt;
# yum -y install perl-Text-Autoformat perl-Text-Quoted perl-Regexp-Common&lt;br /&gt;
# yum -y install perl-HTML-Scrubber perl-Tree-Simple perl-HTML-Tree&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Log::Dispatch&lt;br /&gt;
&lt;br /&gt;
Use the SRPM from Fedora Core 5.  They have the correct and properly patched version that supports mod_perl 2.&lt;br /&gt;
&lt;br /&gt;
But first, a couple of prereqs.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-File-Find-Rule perl-IO-String&lt;br /&gt;
# yum -y install perl-MIME-Lite perl-Mail-Sender perl-Mail-Sendmail&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now build and install Log::Dispatch itself. (There seems to be another rpm too, but it need Apache::Log)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# wget -O /usr/src/redhat/SRPMS/perl-Log-Dispatch-2.15-2.fc5.src.rpm http://download.fedora.redhat.com/pub/fedora/linux/extras/5/SRPMS/perl-Log-Dispatch-2.15-2.fc5.src.rpm&lt;br /&gt;
&lt;br /&gt;
# rpmbuild --rebuild /usr/src/redhat/SRPMS/perl-Log-Dispatch-2.15-2.src.rpm&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Log-Dispatch-2.15-2.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* DBIx::SearchBuilder&lt;br /&gt;
&lt;br /&gt;
DBIx::searchBuilder is a little painful to install because it requires DBD::Oracle.  You can just run &amp;quot;yum install perl-DBIx-SearchBuilder&amp;quot; if you want to go through the trouble of building and installing DBD::Oracle first.  Again, that can be rather painful and isn't within the scope of this guide.&lt;br /&gt;
&lt;br /&gt;
The alternative below is to force install the RPM for DBIx::SearchBuilder since we're not going to use Oracle anyway.  You have to exclude it from future updates in yum otherwise you'll get dep failures everytime you do a &amp;quot;yum upgrade&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
If you're not going to use RT, just skip DBIx::SearchBuilder altogether.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-Want perl-Clone perl-Cache-Simple-TimedExpiry&lt;br /&gt;
# yum -y install perl-DBD-SQLite perl-capitalization perl-Class-Accessor&lt;br /&gt;
&lt;br /&gt;
# rpm -ivh --nodeps http://apt.sw.be/redhat/el4/en/${BASEARCH}/dag/RPMS/perl-DBIx-SearchBuilder-1.43-1.el4.rf.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
# echo &amp;quot;exclude=perl-DBIx-SearchBuilder&amp;quot; &amp;gt;&amp;gt; /etc/yum.conf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== System configuration ==&lt;br /&gt;
&lt;br /&gt;
This is just following the directions with CentOS-specific commands.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# groupadd freeside&lt;br /&gt;
# useradd -g freeside freeside&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With CentOS 4.4, postgresql wouldn't start if SELinux was enabled.  We call &amp;quot;setenforce 0&amp;quot; here to temporarily disable it.  Some claim that it only needs to be disabled the first time postgresql is started.&lt;br /&gt;
&lt;br /&gt;
Enable postgresql at startup, disable selinux temporarily, and start postgresql.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# chkconfig postgresql on&lt;br /&gt;
# setenfore 0&lt;br /&gt;
# service postgresql start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the freeside datbase user for postgresql.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# su -c &amp;quot;createuser -P freeside&amp;quot; - postgres&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Installing Freeside ==&lt;br /&gt;
&lt;br /&gt;
su to the freeside user, extract a copy of the freeside tarball or check out the code from CVS into the freeside user's home directory.  You should have the freeside top-level Makefile in /home/freeside/freeside/Makefile or /home/freeside/freeside-1.7.0/Makefile at this point.  1.7.0 wasn't officially released at the time of writing, so we're using a version checked-out from CVS.&lt;br /&gt;
&lt;br /&gt;
Edit freeside's top-level Makefile with your configuration.  Here are some examples...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
FREESIDE_CONF = /etc/freeside&lt;br /&gt;
FREESIDE_LOG = /var/log/freeside&lt;br /&gt;
FREESIDE_LOCK = /var/lib/freeside&lt;br /&gt;
FREESIDE_CACHE = /var/lib/freeside&lt;br /&gt;
FREESIDE_EXPORT = /var/lib/freeside&lt;br /&gt;
&lt;br /&gt;
APACHE_VERSION = 2&lt;br /&gt;
FREESIDE_DOCUMENT_ROOT = /var/www/freeside/html&lt;br /&gt;
&lt;br /&gt;
INIT_FILE = /etc/init.d/freeside&lt;br /&gt;
INIT_INSTALL = /sbin/chkconfig freeside on&lt;br /&gt;
&lt;br /&gt;
HTTPD_RESTART = /etc/init.d/httpd restart&lt;br /&gt;
APACHE_CONF = /etc/httpd-freeside/conf.d&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As the freeside user, create the database and make the perl modules.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ createdb -E sql_ascii freeside&lt;br /&gt;
&lt;br /&gt;
$ make perl-modules&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As root, install the perl modules and create the initial config.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-perl-modules&lt;br /&gt;
&lt;br /&gt;
# mkdir -m 770 /var/lib/freeside&lt;br /&gt;
# chown -R freeside:root /var/lib/freeside/&lt;br /&gt;
# make create-config&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Apache Configuration ==&lt;br /&gt;
&lt;br /&gt;
=== Creating Freeside's Apache Instance ===&lt;br /&gt;
&lt;br /&gt;
The default Apache init script for CentOS doesn't make it very easy to setup multiple instances of Apache.  A few small modifications take care of that problem.&lt;br /&gt;
&lt;br /&gt;
Start by making a copy of the init script, as well as download the patch and apply it to your httpd-freeside init script.  You can make a symlink if you'd like to eventually setup additional Apache instances.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ln -s /etc/init.d/httpd /etc/init.d/httpd-freeside&lt;br /&gt;
&lt;br /&gt;
# cd /etc/init.d/&lt;br /&gt;
# wget -O /tmp/httpd-freeside.patch http://users.fire2wire.com/~khoff/freeside/1.7.0/httpd-freeside.patch&lt;br /&gt;
# patch &amp;lt; /tmp/httpd-freeside.patch&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Make a copy of the Apache server root.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cp -av /etc/httpd /etc/httpd-freeside&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can remove any extra conf files from /etc/httpd-freeside/conf.d (webdav, php, etc.) if you're not using them.  They'll only take up more memory and potentially make freeside slower.&lt;br /&gt;
&lt;br /&gt;
=== /etc/httpd-freeside/conf/httpd.conf ===&lt;br /&gt;
&lt;br /&gt;
Change the following Apache configuration directives in /etc/httpd-freeside/conf/httpd.conf to match our previous changes.&lt;br /&gt;
&lt;br /&gt;
* ServerRoot &amp;quot;/etc/httpd-freeside&amp;quot;&lt;br /&gt;
* PidFile run/httpd-freeside.pid&lt;br /&gt;
&lt;br /&gt;
We're changing the listening port in case you're using the default Apache configuration (and port) for something else. This can be remedied by binding to a specific IP address as well (eg. 192.168.0.2:80).&lt;br /&gt;
&lt;br /&gt;
* Listen 8080&lt;br /&gt;
&lt;br /&gt;
Freeside's instance of Apache needs to run as the freeside user and group.&lt;br /&gt;
&lt;br /&gt;
* User freeside&lt;br /&gt;
* Group freeside&lt;br /&gt;
&lt;br /&gt;
* DocumentRoot &amp;quot;/var/www/freeside/html&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* &amp;amp;lt;Directory &amp;quot;/var/www/freeside/html&amp;quot;&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
* ErrorLog logs/freeside_error_log&lt;br /&gt;
* CustomLog logs/freeside_access_log combined&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Install Docs and Freeside's Apache Includes ===&lt;br /&gt;
&lt;br /&gt;
Inside the freeside source directory, run &amp;quot;make install-docs&amp;quot; and &amp;quot;make install-apache&amp;quot; as root.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-docs&lt;br /&gt;
# make install-apache&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Edit the config file that was just created (/etc/httpd-freeside/conf.d/freeside-base2.conf) by &amp;quot;make install-apache&amp;quot; and change the AuthUserFile directive to match our new path.&lt;br /&gt;
&lt;br /&gt;
* AuthUserFile /etc/freeside/htpasswd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Populating the Database ==&lt;br /&gt;
&lt;br /&gt;
Populate the freeside database with the initial data, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ freeside-setup -d example.com&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the freeside system users, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ freeside-adduser -g 1 fs_queue&lt;br /&gt;
$ freeside-adduser -g 1 fs_daily&lt;br /&gt;
$ freeside-adduser -g 1 fs_selfservice&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create whatever other freeside users you want, again, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
freeside-adduser -g 1 username&lt;br /&gt;
htpasswd /etc/freeside/htpasswd username&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Repeat the last two commands as many times as you want for your internal staff's freeside accounts.&lt;br /&gt;
&lt;br /&gt;
== Startup Configuration ==&lt;br /&gt;
&lt;br /&gt;
We just need to make sure that our new instance of Apache and the freeside queue daemon start when we boot.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-init&lt;br /&gt;
&lt;br /&gt;
# chkconfig freeside on&lt;br /&gt;
# chkconfig httpd-freeside on&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And last but not least...start freeside's Apache instance.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# service httpd-freeside start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hopefully, Apache should start without errors.  If you do get errors, check /var/log/httpd/freeside_error_log.&lt;br /&gt;
&lt;br /&gt;
Assuming Apache started correctly, you should now be able to access freeside via http://&amp;amp;lt;Your server's FQDN or IP&amp;amp;gt;:8080/.  You can login using the username and password you set earlier with htpasswd.&lt;br /&gt;
&lt;br /&gt;
From here, consult the standard freeside install documentation in the wiki on how to proceed with initial configuration.  Good luck!&lt;br /&gt;
&lt;br /&gt;
== Problems ==&lt;br /&gt;
&lt;br /&gt;
There might be some formatting issues as this was converted from TWiki to MediaWiki markup.  If the syntax of a command doesn't look correct or doesn't make sense, it probably didn't get escaped correctly, or your web browser gobbled up some angle brackets, or both!&lt;/div&gt;</summary>
		<author><name>Tmcarter</name></author>	</entry>

	<entry>
		<id>https://secure.freeside.biz/mediawiki/index.php?title=Freeside:1.7:Documentation:InstallingOnCentOS4&amp;diff=2215</id>
		<title>Freeside:1.7:Documentation:InstallingOnCentOS4</title>
		<link rel="alternate" type="text/html" href="https://secure.freeside.biz/mediawiki/index.php?title=Freeside:1.7:Documentation:InstallingOnCentOS4&amp;diff=2215"/>
				<updated>2007-06-05T04:53:14Z</updated>
		
		<summary type="html">&lt;p&gt;Tmcarter: /* RT Prereqs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Installing Freeside 1.7.x on CentOS 4.4 =&lt;br /&gt;
&lt;br /&gt;
This is a (hopefully) step-by-step guide for doing a basic installation of Freeside on CentOS 4.4 using RPMs whenever possible.  It would probably be easier to use CPAN directly in some cases, but that wouldn't be very fun now would it?&lt;br /&gt;
&lt;br /&gt;
== Software Installation ==&lt;br /&gt;
&lt;br /&gt;
Run the correct command below depending on your architecture.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# export BASEARCH=i386&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
...or...&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# export BASEARCH=x86_64&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Binary Packages ===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Package*||*Repo*||*Version*&lt;br /&gt;
|-&lt;br /&gt;
|httpd||base||2.0.52-28.ent.centos4&lt;br /&gt;
|-&lt;br /&gt;
|postgresql-server||update||7.4.16-1.RHEL4.1&lt;br /&gt;
|-&lt;br /&gt;
|tetex||base||2.0.2-22.EL4.7&lt;br /&gt;
|-&lt;br /&gt;
|ghostscript||base||7.07-33&lt;br /&gt;
|-&lt;br /&gt;
|perl||centosplus||4:5.8.8-4.el4s1&lt;br /&gt;
|-&lt;br /&gt;
|gcc||base||3.4.6-8&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install httpd postgresql-server tetex ghostscript.$BASEARCH&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Upgrade to perl 5.8.8 to get CGI &amp;gt;= 3.08.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum --enablerepo=centosplus upgrade perl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next install the gcc complier&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install gcc&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Perl Packages ===&lt;br /&gt;
&lt;br /&gt;
Setup 3rd party repos for most of the extra perl modules.&lt;br /&gt;
**Some of the links here have changed, you may have to d/l the RPM locally and install from local source**&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# rpm -ivh ftp://rpmfind.net/linux/dag/redhat/el4/en/i386/dag/RPMS/rpmforge-release-0.3.6-1.el4.rf.i386.rpm&lt;br /&gt;
# rpm --import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt&lt;br /&gt;
&lt;br /&gt;
# cat &amp;amp;lt;&amp;amp;lt;END&amp;amp;gt;/etc/yum.repos.d/dries.repo&lt;br /&gt;
[dries]&lt;br /&gt;
name=Extra Fedora rpms dries - \$releasever - \$basearch&lt;br /&gt;
baseurl=http://ftp.belnet.be/packages/dries.ulyssis.org/redhat/el\$releasever/en/\$basearch/dries/RPMS&lt;br /&gt;
END&lt;br /&gt;
# rpm --import http://dries.ulyssis.org/rpm/RPM-GPG-KEY.dries.txt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install the cpan2rpm tool so we can build RPMs from CPAN packages.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# rpm --import http://perl.arix.com/cpan2rpm/gpg.pub.asc&lt;br /&gt;
# yum install rpm-build perl-Module-Build&lt;br /&gt;
# rpm -ivh http://superb-east.dl.sourceforge.net/sourceforge/cpan2rpm/cpan2rpm-2.027-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== mod_perl2 ====&lt;br /&gt;
&lt;br /&gt;
Grab mod_perl 2.03 from the centosplus repo.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum --enablerepo=centosplus install mod_perl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Freeside Prereqs ====&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Perl Module*||*Package*||*Version*||*Repo*&lt;br /&gt;
|-&lt;br /&gt;
|libnet||libnet||1.1.2.1-2.rf||extras&lt;br /&gt;
|-&lt;br /&gt;
|libwww-perl||perl-libwww-perl.noarch||5.79-5||base&lt;br /&gt;
|-&lt;br /&gt;
|URI||perl-URI.noarch||1.30-4||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Tagset||perl-HTML-Tagset.noarch||3.03-30||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Parser||perl-HTML-Parser||3.35-6||base&lt;br /&gt;
|-&lt;br /&gt;
|DBI||perl-DBI||1.40-8||base&lt;br /&gt;
|-&lt;br /&gt;
|DBD::MySQL||perl-DBD-MySQL||2.9004-3.1||base&lt;br /&gt;
|-&lt;br /&gt;
|MailTools||perl-MailTools.noarch||1.74-1.c4||extras&lt;br /&gt;
|-&lt;br /&gt;
|TimeDate||perl-TimeDate.noarch||1.16-1.c4||extras&lt;br /&gt;
|-&lt;br /&gt;
|Date::Manip||perl-DateManip.noarch||5.42a-3||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Mason||perl-HTML-Mason||1.3200-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Text::Template||perl-Text-Template||1.44-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DateTime||perl-DateTime||0.2901-1.2.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Chart||perl-Chart||2.4.1-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Cache::Cache||perl-Cache-Cache||1.05-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|NetAddr::IP||perl-NetAddr-IP||4.004-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|String::Approx||perl-String-Approx||3.26-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Locale::SubCountry||perl-Locale-SubCountry||1.38-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Term::ReadKey||perl-Term-ReadKey||2.30-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DateTime::Format::Strptime||perl-DateTime-Format-Strptime||1.0700-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Net::Whois::Raw||perl-Net-Whois-Raw||1.20-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBIx::DBSchema||perl-DBIx-DBSchema||0.31-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Tie::IxHash||perl-Tie-IxHash||1.21-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::PasswdMD5||perl-Crypt-PasswdMD5||1.3-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|File::CounterFile||perl-File-CounterFile||1.04-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|IPC::Run3||perl-IPC-Run3||0.036-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Net::SSH||perl-Net-SSH||0.08-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|String::ShellQuote||perl-String-ShellQuote||1.03-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|JSON||perl-JSON||1.07-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Data::Table||perl-Data-Table||1.50-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Lingua::EN::NameParse||perl-Lingua-EN-NameParse||1.22-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Lingua::EN::Inflect||perl-Lingua-EN-Inflect||1.89-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Apache::DBI||perl-Apache-DBI||0.9901-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|IO::Scalar||perl-IO-stringy||2.110-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::CSV_XS||perl-Text-CSV_XS||0.23-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Spreadsheet::WriteExcel||perl-Spreadsheet-WriteExcel||2.17-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|MIME-tools||perl-MIME-tools||5.420-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Date::Manip||perl-DateManip||5.42a-3||base&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::DES||perl-Crypt-DES||2.05-3.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Blowfish||perl-Crypt-Blowfish||2.10-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Digest::MD4||perl-Digest-MD4||1.5-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Rijndael||perl-Crypt-Rijndael||0.05-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|ExtUtils::CBuilder||perl-ExtUtils-CBuilder||0.18-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBD::Pg||perl-DBD-Pg||1.49-1.el4s1||centosplus&lt;br /&gt;
|-&lt;br /&gt;
|Locale-Codes|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Frontier::RPC2|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Business::CreditCard|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Time::Duration|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Widgets::SelectLayers|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Color::Scheme|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Params::Classify||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Scalar::Number||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Integer||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Float||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Module::Runtime||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Authen::DecHpwd||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Authen::Passphrase||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Entropy::Algorithms||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::MySQL||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Eksblowfish||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::UnixCrypt_XS||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Fax::Hylafax::Client||||cpan2rpm&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install libnet perl-libwww-perl perl-URI perl-HTML-Tagset&lt;br /&gt;
# yum -y install perl-HTML-Parser &lt;br /&gt;
# yum -y install perl-MailTools perl-TimeDate&lt;br /&gt;
# yum -y install perl-HTML-Mason perl-Text-Template perl-DateTime perl-Chart&lt;br /&gt;
# yum -y install perl-Cache-Cache perl-NetAddr-IP perl-String-Approx&lt;br /&gt;
# yum -y install perl-Locale-SubCountry perl-Term-ReadKey&lt;br /&gt;
# yum -y install perl-DateTime-Format-Strptime perl-Net-Whois-Raw&lt;br /&gt;
# yum -y install perl-Tie-IxHash perl-Crypt-PasswdMD5&lt;br /&gt;
# yum -y install perl-File-CounterFile perl-IPC-Run3 perl-Net-SSH&lt;br /&gt;
# yum -y install perl-String-ShellQuote perl-JSON perl-Data-Table&lt;br /&gt;
# yum -y install perl-Lingua-EN-NameParse perl-Lingua-EN-Inflect&lt;br /&gt;
# yum -y install perl-IO-stringy perl-Text-CSV_XS perl-Spreadsheet-WriteExcel&lt;br /&gt;
# yum -y install perl-MIME-tools perl-DateManip&lt;br /&gt;
# yum -y install perl-DBI perl-DBD-MySQL perl-Apache-DBI &lt;br /&gt;
# yum -y install --enablerepo=centosplus perl-DBD-Pg&lt;br /&gt;
# yum -y install perl-Crypt-DES perl-Crypt-Blowfish perl-Digest-MD4&lt;br /&gt;
# yum -y install perl-Crypt-Rijndael perl-ExtUtils-CBuilder&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can install these using cpan, or follow the directions here using cpan2rpm.&lt;br /&gt;
&lt;br /&gt;
* DBIx::DBSchema&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-DBIx-DBSchema&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Frontier::RPC2&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-XML-Parser&lt;br /&gt;
# cpan2rpm --author='Ken MacLeod &amp;amp;lt;ken@bitsko.slc.ut.us&amp;amp;gt;' --version='0.07b4' Frontier-RPC&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Frontier-RPC-0.07b4-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Business::CreditCard&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Business::CreditCard&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Business-CreditCard-0.30-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Time::Duration&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-Test-Pod perl-Test-Pod-Coverage&lt;br /&gt;
# cpan2rpm Time::Duration&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Time-Duration-1.04-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* HTML::Widgets::SelectLayers&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm http://search.cpan.org/CPAN/authors/id/I/IV/IVAN/HTML-Widgets-SelectLayers-0.07.tar.gz&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-HTML-Widgets-SelectLayers-0.07-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Color::Scheme&lt;br /&gt;
&lt;br /&gt;
Ran into much brokenness when trying to build Test-Simple-0.67.  Just skip the dep checks and test phase and hope.  I mean, come on, it's Color::Scheme for crying out loud!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-Test-Differences&lt;br /&gt;
# cpan2rpm --make-no-test --no-depchk Color::Scheme&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Color-Scheme-1.02-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Params::Classify&lt;br /&gt;
&lt;br /&gt;
Install some deps first...&lt;br /&gt;
&lt;br /&gt;
** Scalar::Number&lt;br /&gt;
&lt;br /&gt;
*** Data::Integer&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Data::Integer&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Integer-0.001-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*** Data::Float&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Data::Float&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Float-0.005-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Scalar::Number&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Scalar-Number-0.001-1.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
# cpan2rpm Params::Classify&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Params-Classify-0.002-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Module::Runtime&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Module::Runtime&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Module-Runtime-0.003-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Authen::DecHpwd&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Authen::DecHpwd&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Authen-DecHpwd-2.001-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Data::Entropy::Algorithms&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --make-no-test Data::Entropy&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Entropy-0.003-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::MySQL&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --version='0.04' --author='IKEBE Tomohiro &amp;lt;ikebe@shebang.jp&amp;gt;' Crypt::MySQL&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-MySQL-0.04-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::Eksblowfish&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Crypt::Eksblowfish&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-Eksblowfish-0.001-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::UnixCrypt_XS&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Crypt::UnixCrypt_XS&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/i386/perl-Crypt-UnixCrypt_XS-0.06-1.i386.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Authen::Passphrase&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Authen::Passphrase&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Authen-Passphrase-0.005-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Fax::Hylafax::Client (Optional)&lt;br /&gt;
&lt;br /&gt;
Skip the tests here as well, unless you happen to have a properly configured HylaFAX server handy.&lt;br /&gt;
Or, skip the package entirely if you don't plan on sending FAX invoices.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --make-no-test Fax::Hylafax::Client&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Fax-Hylafax-Client-1.02-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== RT Prereqs ====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Perl Module*||*Package*||*Version*||*Repo*&lt;br /&gt;
|-&lt;br /&gt;
|Apache::Session||perl-Apache-Session||1.81-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML-Format||perl-HTML-Format||2.04-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Class::ReturnValue||perl-Class-ReturnValue||0.53-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBIx::SearchBuilder||perl-DBIx-SearchBuilder||1.43-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Log::Dispatch||perl-Log-Dispatch||2.11-1.2.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Locale::Maketext::Lexicon||perl-Locale-Maketext-Lexicon||0.62-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Locale::Maketext::Fuzzy||perl-Locale-Maketext-Fuzzy||0.02-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Wrapper||perl-Text-Wrapper||1.000-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Time-modules||perl-Time-modules||2003.1126-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Autoformat||perl-Text-Autoformat||1.13-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Quoted||perl-Text-Quoted||1.8-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Regexp::Common||perl-Regexp-Common||2.120-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Scrubber||perl-HTML-Scrubber||0.08-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Tree::Simple||perl-Tree-Simple||1.17-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML::TreeBuilder||perl-HTML-Tree||3.23-1.el4.rf||dries&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-Apache-Session perl-HTML-Format perl-Class-ReturnValue&lt;br /&gt;
# yum -y install perl-Locale-Maketext-Lexicon perl-Locale-Maketext-Fuzzy&lt;br /&gt;
# yum -y install perl-Text-Wrapper perl-Time-modules&lt;br /&gt;
# yum -y install perl-Text-Autoformat perl-Text-Quoted perl-Regexp-Common&lt;br /&gt;
# yum -y install perl-HTML-Scrubber perl-Tree-Simple perl-HTML-Tree&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Log::Dispatch&lt;br /&gt;
&lt;br /&gt;
Use the SRPM from Fedora Core 5.  They have the correct and properly patched version that supports mod_perl 2.&lt;br /&gt;
&lt;br /&gt;
But first, a couple of prereqs.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-File-Find-Rule perl-IO-String&lt;br /&gt;
# yum install perl-MIME-Lite perl-Mail-Sender perl-Mail-Sendmail&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now build and install Log::Dispatch itself. (There seems to be another rpm too, but it need Apache::Log)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# wget -O /usr/src/redhat/SRPMS/perl-Log-Dispatch-2.15-2.fc5.src.rpm http://download.fedora.redhat.com/pub/fedora/linux/extras/5/SRPMS/perl-Log-Dispatch-2.15-2.fc5.src.rpm&lt;br /&gt;
&lt;br /&gt;
# rpmbuild --rebuild /usr/src/redhat/SRPMS/perl-Log-Dispatch-2.15-2.src.rpm&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Log-Dispatch-2.15-2.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* DBIx::SearchBuilder&lt;br /&gt;
&lt;br /&gt;
DBIx::searchBuilder is a little painful to install because it requires DBD::Oracle.  You can just run &amp;quot;yum install perl-DBIx-SearchBuilder&amp;quot; if you want to go through the trouble of building and installing DBD::Oracle first.  Again, that can be rather painful and isn't within the scope of this guide.&lt;br /&gt;
&lt;br /&gt;
The alternative below is to force install the RPM for DBIx::SearchBuilder since we're not going to use Oracle anyway.  You have to exclude it from future updates in yum otherwise you'll get dep failures everytime you do a &amp;quot;yum upgrade&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
If you're not going to use RT, just skip DBIx::SearchBuilder altogether.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Want perl-Clone perl-Cache-Simple-TimedExpiry&lt;br /&gt;
# yum install perl-DBD-SQLite perl-capitalization perl-Class-Accessor&lt;br /&gt;
&lt;br /&gt;
# rpm -ivh --nodeps http://apt.sw.be/redhat/el4/en/${BASEARCH}/dag/RPMS/perl-DBIx-SearchBuilder-1.43-1.el4.rf.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
# echo &amp;quot;exclude=perl-DBIx-SearchBuilder&amp;quot; &amp;gt;&amp;gt; /etc/yum.conf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== System configuration ==&lt;br /&gt;
&lt;br /&gt;
This is just following the directions with CentOS-specific commands.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# groupadd freeside&lt;br /&gt;
# useradd -g freeside freeside&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With CentOS 4.4, postgresql wouldn't start if SELinux was enabled.  We call &amp;quot;setenforce 0&amp;quot; here to temporarily disable it.  Some claim that it only needs to be disabled the first time postgresql is started.&lt;br /&gt;
&lt;br /&gt;
Enable postgresql at startup, disable selinux temporarily, and start postgresql.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# chkconfig postgresql on&lt;br /&gt;
# setenfore 0&lt;br /&gt;
# service postgresql start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the freeside datbase user for postgresql.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# su -c &amp;quot;createuser -P freeside&amp;quot; - postgres&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Installing Freeside ==&lt;br /&gt;
&lt;br /&gt;
su to the freeside user, extract a copy of the freeside tarball or check out the code from CVS into the freeside user's home directory.  You should have the freeside top-level Makefile in /home/freeside/freeside/Makefile or /home/freeside/freeside-1.7.0/Makefile at this point.  1.7.0 wasn't officially released at the time of writing, so we're using a version checked-out from CVS.&lt;br /&gt;
&lt;br /&gt;
Edit freeside's top-level Makefile with your configuration.  Here are some examples...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
FREESIDE_CONF = /etc/freeside&lt;br /&gt;
FREESIDE_LOG = /var/log/freeside&lt;br /&gt;
FREESIDE_LOCK = /var/lib/freeside&lt;br /&gt;
FREESIDE_CACHE = /var/lib/freeside&lt;br /&gt;
FREESIDE_EXPORT = /var/lib/freeside&lt;br /&gt;
&lt;br /&gt;
APACHE_VERSION = 2&lt;br /&gt;
FREESIDE_DOCUMENT_ROOT = /var/www/freeside/html&lt;br /&gt;
&lt;br /&gt;
INIT_FILE = /etc/init.d/freeside&lt;br /&gt;
INIT_INSTALL = /sbin/chkconfig freeside on&lt;br /&gt;
&lt;br /&gt;
HTTPD_RESTART = /etc/init.d/httpd restart&lt;br /&gt;
APACHE_CONF = /etc/httpd-freeside/conf.d&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As the freeside user, create the database and make the perl modules.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ createdb -E sql_ascii freeside&lt;br /&gt;
&lt;br /&gt;
$ make perl-modules&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As root, install the perl modules and create the initial config.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-perl-modules&lt;br /&gt;
&lt;br /&gt;
# mkdir -m 770 /var/lib/freeside&lt;br /&gt;
# chown -R freeside:root /var/lib/freeside/&lt;br /&gt;
# make create-config&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Apache Configuration ==&lt;br /&gt;
&lt;br /&gt;
=== Creating Freeside's Apache Instance ===&lt;br /&gt;
&lt;br /&gt;
The default Apache init script for CentOS doesn't make it very easy to setup multiple instances of Apache.  A few small modifications take care of that problem.&lt;br /&gt;
&lt;br /&gt;
Start by making a copy of the init script, as well as download the patch and apply it to your httpd-freeside init script.  You can make a symlink if you'd like to eventually setup additional Apache instances.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ln -s /etc/init.d/httpd /etc/init.d/httpd-freeside&lt;br /&gt;
&lt;br /&gt;
# cd /etc/init.d/&lt;br /&gt;
# wget -O /tmp/httpd-freeside.patch http://users.fire2wire.com/~khoff/freeside/1.7.0/httpd-freeside.patch&lt;br /&gt;
# patch &amp;lt; /tmp/httpd-freeside.patch&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Make a copy of the Apache server root.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cp -av /etc/httpd /etc/httpd-freeside&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can remove any extra conf files from /etc/httpd-freeside/conf.d (webdav, php, etc.) if you're not using them.  They'll only take up more memory and potentially make freeside slower.&lt;br /&gt;
&lt;br /&gt;
=== /etc/httpd-freeside/conf/httpd.conf ===&lt;br /&gt;
&lt;br /&gt;
Change the following Apache configuration directives in /etc/httpd-freeside/conf/httpd.conf to match our previous changes.&lt;br /&gt;
&lt;br /&gt;
* ServerRoot &amp;quot;/etc/httpd-freeside&amp;quot;&lt;br /&gt;
* PidFile run/httpd-freeside.pid&lt;br /&gt;
&lt;br /&gt;
We're changing the listening port in case you're using the default Apache configuration (and port) for something else. This can be remedied by binding to a specific IP address as well (eg. 192.168.0.2:80).&lt;br /&gt;
&lt;br /&gt;
* Listen 8080&lt;br /&gt;
&lt;br /&gt;
Freeside's instance of Apache needs to run as the freeside user and group.&lt;br /&gt;
&lt;br /&gt;
* User freeside&lt;br /&gt;
* Group freeside&lt;br /&gt;
&lt;br /&gt;
* DocumentRoot &amp;quot;/var/www/freeside/html&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* &amp;amp;lt;Directory &amp;quot;/var/www/freeside/html&amp;quot;&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
* ErrorLog logs/freeside_error_log&lt;br /&gt;
* CustomLog logs/freeside_access_log combined&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Install Docs and Freeside's Apache Includes ===&lt;br /&gt;
&lt;br /&gt;
Inside the freeside source directory, run &amp;quot;make install-docs&amp;quot; and &amp;quot;make install-apache&amp;quot; as root.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-docs&lt;br /&gt;
# make install-apache&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Edit the config file that was just created (/etc/httpd-freeside/conf.d/freeside-base2.conf) by &amp;quot;make install-apache&amp;quot; and change the AuthUserFile directive to match our new path.&lt;br /&gt;
&lt;br /&gt;
* AuthUserFile /etc/freeside/htpasswd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Populating the Database ==&lt;br /&gt;
&lt;br /&gt;
Populate the freeside database with the initial data, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ freeside-setup -d example.com&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the freeside system users, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ freeside-adduser -g 1 fs_queue&lt;br /&gt;
$ freeside-adduser -g 1 fs_daily&lt;br /&gt;
$ freeside-adduser -g 1 fs_selfservice&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create whatever other freeside users you want, again, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
freeside-adduser -g 1 username&lt;br /&gt;
htpasswd /etc/freeside/htpasswd username&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Repeat the last two commands as many times as you want for your internal staff's freeside accounts.&lt;br /&gt;
&lt;br /&gt;
== Startup Configuration ==&lt;br /&gt;
&lt;br /&gt;
We just need to make sure that our new instance of Apache and the freeside queue daemon start when we boot.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-init&lt;br /&gt;
&lt;br /&gt;
# chkconfig freeside on&lt;br /&gt;
# chkconfig httpd-freeside on&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And last but not least...start freeside's Apache instance.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# service httpd-freeside start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hopefully, Apache should start without errors.  If you do get errors, check /var/log/httpd/freeside_error_log.&lt;br /&gt;
&lt;br /&gt;
Assuming Apache started correctly, you should now be able to access freeside via http://&amp;amp;lt;Your server's FQDN or IP&amp;amp;gt;:8080/.  You can login using the username and password you set earlier with htpasswd.&lt;br /&gt;
&lt;br /&gt;
From here, consult the standard freeside install documentation in the wiki on how to proceed with initial configuration.  Good luck!&lt;br /&gt;
&lt;br /&gt;
== Problems ==&lt;br /&gt;
&lt;br /&gt;
There might be some formatting issues as this was converted from TWiki to MediaWiki markup.  If the syntax of a command doesn't look correct or doesn't make sense, it probably didn't get escaped correctly, or your web browser gobbled up some angle brackets, or both!&lt;/div&gt;</summary>
		<author><name>Tmcarter</name></author>	</entry>

	<entry>
		<id>https://secure.freeside.biz/mediawiki/index.php?title=Freeside:1.7:Documentation:InstallingOnCentOS4&amp;diff=2214</id>
		<title>Freeside:1.7:Documentation:InstallingOnCentOS4</title>
		<link rel="alternate" type="text/html" href="https://secure.freeside.biz/mediawiki/index.php?title=Freeside:1.7:Documentation:InstallingOnCentOS4&amp;diff=2214"/>
				<updated>2007-06-05T04:52:24Z</updated>
		
		<summary type="html">&lt;p&gt;Tmcarter: /* Freeside Prereqs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Installing Freeside 1.7.x on CentOS 4.4 =&lt;br /&gt;
&lt;br /&gt;
This is a (hopefully) step-by-step guide for doing a basic installation of Freeside on CentOS 4.4 using RPMs whenever possible.  It would probably be easier to use CPAN directly in some cases, but that wouldn't be very fun now would it?&lt;br /&gt;
&lt;br /&gt;
== Software Installation ==&lt;br /&gt;
&lt;br /&gt;
Run the correct command below depending on your architecture.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# export BASEARCH=i386&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
...or...&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# export BASEARCH=x86_64&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Binary Packages ===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Package*||*Repo*||*Version*&lt;br /&gt;
|-&lt;br /&gt;
|httpd||base||2.0.52-28.ent.centos4&lt;br /&gt;
|-&lt;br /&gt;
|postgresql-server||update||7.4.16-1.RHEL4.1&lt;br /&gt;
|-&lt;br /&gt;
|tetex||base||2.0.2-22.EL4.7&lt;br /&gt;
|-&lt;br /&gt;
|ghostscript||base||7.07-33&lt;br /&gt;
|-&lt;br /&gt;
|perl||centosplus||4:5.8.8-4.el4s1&lt;br /&gt;
|-&lt;br /&gt;
|gcc||base||3.4.6-8&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install httpd postgresql-server tetex ghostscript.$BASEARCH&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Upgrade to perl 5.8.8 to get CGI &amp;gt;= 3.08.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum --enablerepo=centosplus upgrade perl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next install the gcc complier&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install gcc&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Perl Packages ===&lt;br /&gt;
&lt;br /&gt;
Setup 3rd party repos for most of the extra perl modules.&lt;br /&gt;
**Some of the links here have changed, you may have to d/l the RPM locally and install from local source**&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# rpm -ivh ftp://rpmfind.net/linux/dag/redhat/el4/en/i386/dag/RPMS/rpmforge-release-0.3.6-1.el4.rf.i386.rpm&lt;br /&gt;
# rpm --import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt&lt;br /&gt;
&lt;br /&gt;
# cat &amp;amp;lt;&amp;amp;lt;END&amp;amp;gt;/etc/yum.repos.d/dries.repo&lt;br /&gt;
[dries]&lt;br /&gt;
name=Extra Fedora rpms dries - \$releasever - \$basearch&lt;br /&gt;
baseurl=http://ftp.belnet.be/packages/dries.ulyssis.org/redhat/el\$releasever/en/\$basearch/dries/RPMS&lt;br /&gt;
END&lt;br /&gt;
# rpm --import http://dries.ulyssis.org/rpm/RPM-GPG-KEY.dries.txt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install the cpan2rpm tool so we can build RPMs from CPAN packages.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# rpm --import http://perl.arix.com/cpan2rpm/gpg.pub.asc&lt;br /&gt;
# yum install rpm-build perl-Module-Build&lt;br /&gt;
# rpm -ivh http://superb-east.dl.sourceforge.net/sourceforge/cpan2rpm/cpan2rpm-2.027-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== mod_perl2 ====&lt;br /&gt;
&lt;br /&gt;
Grab mod_perl 2.03 from the centosplus repo.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum --enablerepo=centosplus install mod_perl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Freeside Prereqs ====&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Perl Module*||*Package*||*Version*||*Repo*&lt;br /&gt;
|-&lt;br /&gt;
|libnet||libnet||1.1.2.1-2.rf||extras&lt;br /&gt;
|-&lt;br /&gt;
|libwww-perl||perl-libwww-perl.noarch||5.79-5||base&lt;br /&gt;
|-&lt;br /&gt;
|URI||perl-URI.noarch||1.30-4||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Tagset||perl-HTML-Tagset.noarch||3.03-30||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Parser||perl-HTML-Parser||3.35-6||base&lt;br /&gt;
|-&lt;br /&gt;
|DBI||perl-DBI||1.40-8||base&lt;br /&gt;
|-&lt;br /&gt;
|DBD::MySQL||perl-DBD-MySQL||2.9004-3.1||base&lt;br /&gt;
|-&lt;br /&gt;
|MailTools||perl-MailTools.noarch||1.74-1.c4||extras&lt;br /&gt;
|-&lt;br /&gt;
|TimeDate||perl-TimeDate.noarch||1.16-1.c4||extras&lt;br /&gt;
|-&lt;br /&gt;
|Date::Manip||perl-DateManip.noarch||5.42a-3||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Mason||perl-HTML-Mason||1.3200-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Text::Template||perl-Text-Template||1.44-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DateTime||perl-DateTime||0.2901-1.2.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Chart||perl-Chart||2.4.1-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Cache::Cache||perl-Cache-Cache||1.05-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|NetAddr::IP||perl-NetAddr-IP||4.004-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|String::Approx||perl-String-Approx||3.26-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Locale::SubCountry||perl-Locale-SubCountry||1.38-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Term::ReadKey||perl-Term-ReadKey||2.30-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DateTime::Format::Strptime||perl-DateTime-Format-Strptime||1.0700-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Net::Whois::Raw||perl-Net-Whois-Raw||1.20-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBIx::DBSchema||perl-DBIx-DBSchema||0.31-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Tie::IxHash||perl-Tie-IxHash||1.21-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::PasswdMD5||perl-Crypt-PasswdMD5||1.3-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|File::CounterFile||perl-File-CounterFile||1.04-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|IPC::Run3||perl-IPC-Run3||0.036-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Net::SSH||perl-Net-SSH||0.08-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|String::ShellQuote||perl-String-ShellQuote||1.03-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|JSON||perl-JSON||1.07-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Data::Table||perl-Data-Table||1.50-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Lingua::EN::NameParse||perl-Lingua-EN-NameParse||1.22-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Lingua::EN::Inflect||perl-Lingua-EN-Inflect||1.89-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Apache::DBI||perl-Apache-DBI||0.9901-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|IO::Scalar||perl-IO-stringy||2.110-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::CSV_XS||perl-Text-CSV_XS||0.23-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Spreadsheet::WriteExcel||perl-Spreadsheet-WriteExcel||2.17-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|MIME-tools||perl-MIME-tools||5.420-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Date::Manip||perl-DateManip||5.42a-3||base&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::DES||perl-Crypt-DES||2.05-3.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Blowfish||perl-Crypt-Blowfish||2.10-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Digest::MD4||perl-Digest-MD4||1.5-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Rijndael||perl-Crypt-Rijndael||0.05-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|ExtUtils::CBuilder||perl-ExtUtils-CBuilder||0.18-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBD::Pg||perl-DBD-Pg||1.49-1.el4s1||centosplus&lt;br /&gt;
|-&lt;br /&gt;
|Locale-Codes|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Frontier::RPC2|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Business::CreditCard|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Time::Duration|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Widgets::SelectLayers|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Color::Scheme|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Params::Classify||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Scalar::Number||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Integer||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Float||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Module::Runtime||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Authen::DecHpwd||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Authen::Passphrase||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Entropy::Algorithms||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::MySQL||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Eksblowfish||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::UnixCrypt_XS||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Fax::Hylafax::Client||||cpan2rpm&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install libnet perl-libwww-perl perl-URI perl-HTML-Tagset&lt;br /&gt;
# yum -y install perl-HTML-Parser &lt;br /&gt;
# yum -y install perl-MailTools perl-TimeDate&lt;br /&gt;
# yum -y install perl-HTML-Mason perl-Text-Template perl-DateTime perl-Chart&lt;br /&gt;
# yum -y install perl-Cache-Cache perl-NetAddr-IP perl-String-Approx&lt;br /&gt;
# yum -y install perl-Locale-SubCountry perl-Term-ReadKey&lt;br /&gt;
# yum -y install perl-DateTime-Format-Strptime perl-Net-Whois-Raw&lt;br /&gt;
# yum -y install perl-Tie-IxHash perl-Crypt-PasswdMD5&lt;br /&gt;
# yum -y install perl-File-CounterFile perl-IPC-Run3 perl-Net-SSH&lt;br /&gt;
# yum -y install perl-String-ShellQuote perl-JSON perl-Data-Table&lt;br /&gt;
# yum -y install perl-Lingua-EN-NameParse perl-Lingua-EN-Inflect&lt;br /&gt;
# yum -y install perl-IO-stringy perl-Text-CSV_XS perl-Spreadsheet-WriteExcel&lt;br /&gt;
# yum -y install perl-MIME-tools perl-DateManip&lt;br /&gt;
# yum -y install perl-DBI perl-DBD-MySQL perl-Apache-DBI &lt;br /&gt;
# yum -y install --enablerepo=centosplus perl-DBD-Pg&lt;br /&gt;
# yum -y install perl-Crypt-DES perl-Crypt-Blowfish perl-Digest-MD4&lt;br /&gt;
# yum -y install perl-Crypt-Rijndael perl-ExtUtils-CBuilder&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can install these using cpan, or follow the directions here using cpan2rpm.&lt;br /&gt;
&lt;br /&gt;
* DBIx::DBSchema&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-DBIx-DBSchema&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Frontier::RPC2&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-XML-Parser&lt;br /&gt;
# cpan2rpm --author='Ken MacLeod &amp;amp;lt;ken@bitsko.slc.ut.us&amp;amp;gt;' --version='0.07b4' Frontier-RPC&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Frontier-RPC-0.07b4-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Business::CreditCard&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Business::CreditCard&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Business-CreditCard-0.30-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Time::Duration&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-Test-Pod perl-Test-Pod-Coverage&lt;br /&gt;
# cpan2rpm Time::Duration&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Time-Duration-1.04-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* HTML::Widgets::SelectLayers&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm http://search.cpan.org/CPAN/authors/id/I/IV/IVAN/HTML-Widgets-SelectLayers-0.07.tar.gz&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-HTML-Widgets-SelectLayers-0.07-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Color::Scheme&lt;br /&gt;
&lt;br /&gt;
Ran into much brokenness when trying to build Test-Simple-0.67.  Just skip the dep checks and test phase and hope.  I mean, come on, it's Color::Scheme for crying out loud!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-Test-Differences&lt;br /&gt;
# cpan2rpm --make-no-test --no-depchk Color::Scheme&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Color-Scheme-1.02-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Params::Classify&lt;br /&gt;
&lt;br /&gt;
Install some deps first...&lt;br /&gt;
&lt;br /&gt;
** Scalar::Number&lt;br /&gt;
&lt;br /&gt;
*** Data::Integer&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Data::Integer&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Integer-0.001-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*** Data::Float&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Data::Float&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Float-0.005-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Scalar::Number&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Scalar-Number-0.001-1.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
# cpan2rpm Params::Classify&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Params-Classify-0.002-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Module::Runtime&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Module::Runtime&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Module-Runtime-0.003-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Authen::DecHpwd&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Authen::DecHpwd&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Authen-DecHpwd-2.001-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Data::Entropy::Algorithms&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --make-no-test Data::Entropy&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Entropy-0.003-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::MySQL&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --version='0.04' --author='IKEBE Tomohiro &amp;lt;ikebe@shebang.jp&amp;gt;' Crypt::MySQL&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-MySQL-0.04-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::Eksblowfish&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Crypt::Eksblowfish&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-Eksblowfish-0.001-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::UnixCrypt_XS&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Crypt::UnixCrypt_XS&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/i386/perl-Crypt-UnixCrypt_XS-0.06-1.i386.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Authen::Passphrase&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Authen::Passphrase&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Authen-Passphrase-0.005-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Fax::Hylafax::Client (Optional)&lt;br /&gt;
&lt;br /&gt;
Skip the tests here as well, unless you happen to have a properly configured HylaFAX server handy.&lt;br /&gt;
Or, skip the package entirely if you don't plan on sending FAX invoices.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --make-no-test Fax::Hylafax::Client&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Fax-Hylafax-Client-1.02-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== RT Prereqs ====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Perl Module*||*Package*||*Version*||*Repo*&lt;br /&gt;
|-&lt;br /&gt;
|Apache::Session||perl-Apache-Session||1.81-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML-Format||perl-HTML-Format||2.04-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Class::ReturnValue||perl-Class-ReturnValue||0.53-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBIx::SearchBuilder||perl-DBIx-SearchBuilder||1.43-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Log::Dispatch||perl-Log-Dispatch||2.11-1.2.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Locale::Maketext::Lexicon||perl-Locale-Maketext-Lexicon||0.62-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Locale::Maketext::Fuzzy||perl-Locale-Maketext-Fuzzy||0.02-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Wrapper||perl-Text-Wrapper||1.000-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Time-modules||perl-Time-modules||2003.1126-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Autoformat||perl-Text-Autoformat||1.13-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Quoted||perl-Text-Quoted||1.8-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Regexp::Common||perl-Regexp-Common||2.120-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Scrubber||perl-HTML-Scrubber||0.08-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Tree::Simple||perl-Tree-Simple||1.17-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML::TreeBuilder||perl-HTML-Tree||3.23-1.el4.rf||dries&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Apache-Session perl-HTML-Format perl-Class-ReturnValue&lt;br /&gt;
# yum install perl-Locale-Maketext-Lexicon perl-Locale-Maketext-Fuzzy&lt;br /&gt;
# yum install perl-Text-Wrapper perl-Time-modules&lt;br /&gt;
# yum install perl-Text-Autoformat perl-Text-Quoted perl-Regexp-Common&lt;br /&gt;
# yum install perl-HTML-Scrubber perl-Tree-Simple perl-HTML-Tree&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Log::Dispatch&lt;br /&gt;
&lt;br /&gt;
Use the SRPM from Fedora Core 5.  They have the correct and properly patched version that supports mod_perl 2.&lt;br /&gt;
&lt;br /&gt;
But first, a couple of prereqs.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-File-Find-Rule perl-IO-String&lt;br /&gt;
# yum install perl-MIME-Lite perl-Mail-Sender perl-Mail-Sendmail&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now build and install Log::Dispatch itself. (There seems to be another rpm too, but it need Apache::Log)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# wget -O /usr/src/redhat/SRPMS/perl-Log-Dispatch-2.15-2.fc5.src.rpm http://download.fedora.redhat.com/pub/fedora/linux/extras/5/SRPMS/perl-Log-Dispatch-2.15-2.fc5.src.rpm&lt;br /&gt;
&lt;br /&gt;
# rpmbuild --rebuild /usr/src/redhat/SRPMS/perl-Log-Dispatch-2.15-2.src.rpm&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Log-Dispatch-2.15-2.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* DBIx::SearchBuilder&lt;br /&gt;
&lt;br /&gt;
DBIx::searchBuilder is a little painful to install because it requires DBD::Oracle.  You can just run &amp;quot;yum install perl-DBIx-SearchBuilder&amp;quot; if you want to go through the trouble of building and installing DBD::Oracle first.  Again, that can be rather painful and isn't within the scope of this guide.&lt;br /&gt;
&lt;br /&gt;
The alternative below is to force install the RPM for DBIx::SearchBuilder since we're not going to use Oracle anyway.  You have to exclude it from future updates in yum otherwise you'll get dep failures everytime you do a &amp;quot;yum upgrade&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
If you're not going to use RT, just skip DBIx::SearchBuilder altogether.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Want perl-Clone perl-Cache-Simple-TimedExpiry&lt;br /&gt;
# yum install perl-DBD-SQLite perl-capitalization perl-Class-Accessor&lt;br /&gt;
&lt;br /&gt;
# rpm -ivh --nodeps http://apt.sw.be/redhat/el4/en/${BASEARCH}/dag/RPMS/perl-DBIx-SearchBuilder-1.43-1.el4.rf.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
# echo &amp;quot;exclude=perl-DBIx-SearchBuilder&amp;quot; &amp;gt;&amp;gt; /etc/yum.conf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== System configuration ==&lt;br /&gt;
&lt;br /&gt;
This is just following the directions with CentOS-specific commands.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# groupadd freeside&lt;br /&gt;
# useradd -g freeside freeside&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With CentOS 4.4, postgresql wouldn't start if SELinux was enabled.  We call &amp;quot;setenforce 0&amp;quot; here to temporarily disable it.  Some claim that it only needs to be disabled the first time postgresql is started.&lt;br /&gt;
&lt;br /&gt;
Enable postgresql at startup, disable selinux temporarily, and start postgresql.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# chkconfig postgresql on&lt;br /&gt;
# setenfore 0&lt;br /&gt;
# service postgresql start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the freeside datbase user for postgresql.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# su -c &amp;quot;createuser -P freeside&amp;quot; - postgres&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Installing Freeside ==&lt;br /&gt;
&lt;br /&gt;
su to the freeside user, extract a copy of the freeside tarball or check out the code from CVS into the freeside user's home directory.  You should have the freeside top-level Makefile in /home/freeside/freeside/Makefile or /home/freeside/freeside-1.7.0/Makefile at this point.  1.7.0 wasn't officially released at the time of writing, so we're using a version checked-out from CVS.&lt;br /&gt;
&lt;br /&gt;
Edit freeside's top-level Makefile with your configuration.  Here are some examples...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
FREESIDE_CONF = /etc/freeside&lt;br /&gt;
FREESIDE_LOG = /var/log/freeside&lt;br /&gt;
FREESIDE_LOCK = /var/lib/freeside&lt;br /&gt;
FREESIDE_CACHE = /var/lib/freeside&lt;br /&gt;
FREESIDE_EXPORT = /var/lib/freeside&lt;br /&gt;
&lt;br /&gt;
APACHE_VERSION = 2&lt;br /&gt;
FREESIDE_DOCUMENT_ROOT = /var/www/freeside/html&lt;br /&gt;
&lt;br /&gt;
INIT_FILE = /etc/init.d/freeside&lt;br /&gt;
INIT_INSTALL = /sbin/chkconfig freeside on&lt;br /&gt;
&lt;br /&gt;
HTTPD_RESTART = /etc/init.d/httpd restart&lt;br /&gt;
APACHE_CONF = /etc/httpd-freeside/conf.d&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As the freeside user, create the database and make the perl modules.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ createdb -E sql_ascii freeside&lt;br /&gt;
&lt;br /&gt;
$ make perl-modules&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As root, install the perl modules and create the initial config.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-perl-modules&lt;br /&gt;
&lt;br /&gt;
# mkdir -m 770 /var/lib/freeside&lt;br /&gt;
# chown -R freeside:root /var/lib/freeside/&lt;br /&gt;
# make create-config&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Apache Configuration ==&lt;br /&gt;
&lt;br /&gt;
=== Creating Freeside's Apache Instance ===&lt;br /&gt;
&lt;br /&gt;
The default Apache init script for CentOS doesn't make it very easy to setup multiple instances of Apache.  A few small modifications take care of that problem.&lt;br /&gt;
&lt;br /&gt;
Start by making a copy of the init script, as well as download the patch and apply it to your httpd-freeside init script.  You can make a symlink if you'd like to eventually setup additional Apache instances.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ln -s /etc/init.d/httpd /etc/init.d/httpd-freeside&lt;br /&gt;
&lt;br /&gt;
# cd /etc/init.d/&lt;br /&gt;
# wget -O /tmp/httpd-freeside.patch http://users.fire2wire.com/~khoff/freeside/1.7.0/httpd-freeside.patch&lt;br /&gt;
# patch &amp;lt; /tmp/httpd-freeside.patch&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Make a copy of the Apache server root.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cp -av /etc/httpd /etc/httpd-freeside&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can remove any extra conf files from /etc/httpd-freeside/conf.d (webdav, php, etc.) if you're not using them.  They'll only take up more memory and potentially make freeside slower.&lt;br /&gt;
&lt;br /&gt;
=== /etc/httpd-freeside/conf/httpd.conf ===&lt;br /&gt;
&lt;br /&gt;
Change the following Apache configuration directives in /etc/httpd-freeside/conf/httpd.conf to match our previous changes.&lt;br /&gt;
&lt;br /&gt;
* ServerRoot &amp;quot;/etc/httpd-freeside&amp;quot;&lt;br /&gt;
* PidFile run/httpd-freeside.pid&lt;br /&gt;
&lt;br /&gt;
We're changing the listening port in case you're using the default Apache configuration (and port) for something else. This can be remedied by binding to a specific IP address as well (eg. 192.168.0.2:80).&lt;br /&gt;
&lt;br /&gt;
* Listen 8080&lt;br /&gt;
&lt;br /&gt;
Freeside's instance of Apache needs to run as the freeside user and group.&lt;br /&gt;
&lt;br /&gt;
* User freeside&lt;br /&gt;
* Group freeside&lt;br /&gt;
&lt;br /&gt;
* DocumentRoot &amp;quot;/var/www/freeside/html&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* &amp;amp;lt;Directory &amp;quot;/var/www/freeside/html&amp;quot;&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
* ErrorLog logs/freeside_error_log&lt;br /&gt;
* CustomLog logs/freeside_access_log combined&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Install Docs and Freeside's Apache Includes ===&lt;br /&gt;
&lt;br /&gt;
Inside the freeside source directory, run &amp;quot;make install-docs&amp;quot; and &amp;quot;make install-apache&amp;quot; as root.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-docs&lt;br /&gt;
# make install-apache&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Edit the config file that was just created (/etc/httpd-freeside/conf.d/freeside-base2.conf) by &amp;quot;make install-apache&amp;quot; and change the AuthUserFile directive to match our new path.&lt;br /&gt;
&lt;br /&gt;
* AuthUserFile /etc/freeside/htpasswd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Populating the Database ==&lt;br /&gt;
&lt;br /&gt;
Populate the freeside database with the initial data, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ freeside-setup -d example.com&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the freeside system users, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ freeside-adduser -g 1 fs_queue&lt;br /&gt;
$ freeside-adduser -g 1 fs_daily&lt;br /&gt;
$ freeside-adduser -g 1 fs_selfservice&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create whatever other freeside users you want, again, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
freeside-adduser -g 1 username&lt;br /&gt;
htpasswd /etc/freeside/htpasswd username&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Repeat the last two commands as many times as you want for your internal staff's freeside accounts.&lt;br /&gt;
&lt;br /&gt;
== Startup Configuration ==&lt;br /&gt;
&lt;br /&gt;
We just need to make sure that our new instance of Apache and the freeside queue daemon start when we boot.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-init&lt;br /&gt;
&lt;br /&gt;
# chkconfig freeside on&lt;br /&gt;
# chkconfig httpd-freeside on&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And last but not least...start freeside's Apache instance.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# service httpd-freeside start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hopefully, Apache should start without errors.  If you do get errors, check /var/log/httpd/freeside_error_log.&lt;br /&gt;
&lt;br /&gt;
Assuming Apache started correctly, you should now be able to access freeside via http://&amp;amp;lt;Your server's FQDN or IP&amp;amp;gt;:8080/.  You can login using the username and password you set earlier with htpasswd.&lt;br /&gt;
&lt;br /&gt;
From here, consult the standard freeside install documentation in the wiki on how to proceed with initial configuration.  Good luck!&lt;br /&gt;
&lt;br /&gt;
== Problems ==&lt;br /&gt;
&lt;br /&gt;
There might be some formatting issues as this was converted from TWiki to MediaWiki markup.  If the syntax of a command doesn't look correct or doesn't make sense, it probably didn't get escaped correctly, or your web browser gobbled up some angle brackets, or both!&lt;/div&gt;</summary>
		<author><name>Tmcarter</name></author>	</entry>

	<entry>
		<id>https://secure.freeside.biz/mediawiki/index.php?title=Freeside:1.7:Documentation:InstallingOnCentOS4&amp;diff=2213</id>
		<title>Freeside:1.7:Documentation:InstallingOnCentOS4</title>
		<link rel="alternate" type="text/html" href="https://secure.freeside.biz/mediawiki/index.php?title=Freeside:1.7:Documentation:InstallingOnCentOS4&amp;diff=2213"/>
				<updated>2007-06-05T04:41:59Z</updated>
		
		<summary type="html">&lt;p&gt;Tmcarter: /* Freeside Prereqs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Installing Freeside 1.7.x on CentOS 4.4 =&lt;br /&gt;
&lt;br /&gt;
This is a (hopefully) step-by-step guide for doing a basic installation of Freeside on CentOS 4.4 using RPMs whenever possible.  It would probably be easier to use CPAN directly in some cases, but that wouldn't be very fun now would it?&lt;br /&gt;
&lt;br /&gt;
== Software Installation ==&lt;br /&gt;
&lt;br /&gt;
Run the correct command below depending on your architecture.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# export BASEARCH=i386&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
...or...&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# export BASEARCH=x86_64&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Binary Packages ===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Package*||*Repo*||*Version*&lt;br /&gt;
|-&lt;br /&gt;
|httpd||base||2.0.52-28.ent.centos4&lt;br /&gt;
|-&lt;br /&gt;
|postgresql-server||update||7.4.16-1.RHEL4.1&lt;br /&gt;
|-&lt;br /&gt;
|tetex||base||2.0.2-22.EL4.7&lt;br /&gt;
|-&lt;br /&gt;
|ghostscript||base||7.07-33&lt;br /&gt;
|-&lt;br /&gt;
|perl||centosplus||4:5.8.8-4.el4s1&lt;br /&gt;
|-&lt;br /&gt;
|gcc||base||3.4.6-8&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install httpd postgresql-server tetex ghostscript.$BASEARCH&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Upgrade to perl 5.8.8 to get CGI &amp;gt;= 3.08.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum --enablerepo=centosplus upgrade perl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next install the gcc complier&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install gcc&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Perl Packages ===&lt;br /&gt;
&lt;br /&gt;
Setup 3rd party repos for most of the extra perl modules.&lt;br /&gt;
**Some of the links here have changed, you may have to d/l the RPM locally and install from local source**&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# rpm -ivh ftp://rpmfind.net/linux/dag/redhat/el4/en/i386/dag/RPMS/rpmforge-release-0.3.6-1.el4.rf.i386.rpm&lt;br /&gt;
# rpm --import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt&lt;br /&gt;
&lt;br /&gt;
# cat &amp;amp;lt;&amp;amp;lt;END&amp;amp;gt;/etc/yum.repos.d/dries.repo&lt;br /&gt;
[dries]&lt;br /&gt;
name=Extra Fedora rpms dries - \$releasever - \$basearch&lt;br /&gt;
baseurl=http://ftp.belnet.be/packages/dries.ulyssis.org/redhat/el\$releasever/en/\$basearch/dries/RPMS&lt;br /&gt;
END&lt;br /&gt;
# rpm --import http://dries.ulyssis.org/rpm/RPM-GPG-KEY.dries.txt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install the cpan2rpm tool so we can build RPMs from CPAN packages.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# rpm --import http://perl.arix.com/cpan2rpm/gpg.pub.asc&lt;br /&gt;
# yum install rpm-build perl-Module-Build&lt;br /&gt;
# rpm -ivh http://superb-east.dl.sourceforge.net/sourceforge/cpan2rpm/cpan2rpm-2.027-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== mod_perl2 ====&lt;br /&gt;
&lt;br /&gt;
Grab mod_perl 2.03 from the centosplus repo.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum --enablerepo=centosplus install mod_perl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Freeside Prereqs ====&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Perl Module*||*Package*||*Version*||*Repo*&lt;br /&gt;
|-&lt;br /&gt;
|libnet||libnet||1.1.2.1-2.rf||extras&lt;br /&gt;
|-&lt;br /&gt;
|libwww-perl||perl-libwww-perl.noarch||5.79-5||base&lt;br /&gt;
|-&lt;br /&gt;
|URI||perl-URI.noarch||1.30-4||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Tagset||perl-HTML-Tagset.noarch||3.03-30||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Parser||perl-HTML-Parser||3.35-6||base&lt;br /&gt;
|-&lt;br /&gt;
|DBI||perl-DBI||1.40-8||base&lt;br /&gt;
|-&lt;br /&gt;
|DBD::MySQL||perl-DBD-MySQL||2.9004-3.1||base&lt;br /&gt;
|-&lt;br /&gt;
|MailTools||perl-MailTools.noarch||1.74-1.c4||extras&lt;br /&gt;
|-&lt;br /&gt;
|TimeDate||perl-TimeDate.noarch||1.16-1.c4||extras&lt;br /&gt;
|-&lt;br /&gt;
|Date::Manip||perl-DateManip.noarch||5.42a-3||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Mason||perl-HTML-Mason||1.3200-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Text::Template||perl-Text-Template||1.44-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DateTime||perl-DateTime||0.2901-1.2.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Chart||perl-Chart||2.4.1-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Cache::Cache||perl-Cache-Cache||1.05-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|NetAddr::IP||perl-NetAddr-IP||4.004-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|String::Approx||perl-String-Approx||3.26-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Locale::SubCountry||perl-Locale-SubCountry||1.38-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Term::ReadKey||perl-Term-ReadKey||2.30-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DateTime::Format::Strptime||perl-DateTime-Format-Strptime||1.0700-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Net::Whois::Raw||perl-Net-Whois-Raw||1.20-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBIx::DBSchema||perl-DBIx-DBSchema||0.31-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Tie::IxHash||perl-Tie-IxHash||1.21-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::PasswdMD5||perl-Crypt-PasswdMD5||1.3-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|File::CounterFile||perl-File-CounterFile||1.04-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|IPC::Run3||perl-IPC-Run3||0.036-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Net::SSH||perl-Net-SSH||0.08-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|String::ShellQuote||perl-String-ShellQuote||1.03-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|JSON||perl-JSON||1.07-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Data::Table||perl-Data-Table||1.50-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Lingua::EN::NameParse||perl-Lingua-EN-NameParse||1.22-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Lingua::EN::Inflect||perl-Lingua-EN-Inflect||1.89-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Apache::DBI||perl-Apache-DBI||0.9901-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|IO::Scalar||perl-IO-stringy||2.110-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::CSV_XS||perl-Text-CSV_XS||0.23-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Spreadsheet::WriteExcel||perl-Spreadsheet-WriteExcel||2.17-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|MIME-tools||perl-MIME-tools||5.420-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Date::Manip||perl-DateManip||5.42a-3||base&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::DES||perl-Crypt-DES||2.05-3.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Blowfish||perl-Crypt-Blowfish||2.10-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Digest::MD4||perl-Digest-MD4||1.5-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Rijndael||perl-Crypt-Rijndael||0.05-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|ExtUtils::CBuilder||perl-ExtUtils-CBuilder||0.18-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBD::Pg||perl-DBD-Pg||1.49-1.el4s1||centosplus&lt;br /&gt;
|-&lt;br /&gt;
|Locale-Codes|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Frontier::RPC2|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Business::CreditCard|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Time::Duration|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Widgets::SelectLayers|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Color::Scheme|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Params::Classify||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Scalar::Number||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Integer||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Float||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Module::Runtime||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Authen::DecHpwd||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Authen::Passphrase||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Entropy::Algorithms||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::MySQL||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Eksblowfish||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::UnixCrypt_XS||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Fax::Hylafax::Client||||cpan2rpm&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install libnet perl-libwww-perl perl-URI perl-HTML-Tagset&lt;br /&gt;
# yum -y install perl-HTML-Parser &lt;br /&gt;
# yum -y install perl-MailTools perl-TimeDate&lt;br /&gt;
# yum -y install perl-HTML-Mason perl-Text-Template perl-DateTime perl-Chart&lt;br /&gt;
# yum -y install perl-Cache-Cache perl-NetAddr-IP perl-String-Approx&lt;br /&gt;
# yum -y install perl-Locale-SubCountry perl-Term-ReadKey&lt;br /&gt;
# yum -y install perl-DateTime-Format-Strptime perl-Net-Whois-Raw&lt;br /&gt;
# yum -y install perl-Tie-IxHash perl-Crypt-PasswdMD5&lt;br /&gt;
# yum -y install perl-File-CounterFile perl-IPC-Run3 perl-Net-SSH&lt;br /&gt;
# yum -y install perl-String-ShellQuote perl-JSON perl-Data-Table&lt;br /&gt;
# yum -y install perl-Lingua-EN-NameParse perl-Lingua-EN-Inflect&lt;br /&gt;
# yum -y install perl-IO-stringy perl-Text-CSV_XS perl-Spreadsheet-WriteExcel&lt;br /&gt;
# yum -y install perl-MIME-tools perl-DateManip&lt;br /&gt;
# yum -y install perl-DBI perl-DBD-MySQL perl-Apache-DBI &lt;br /&gt;
# yum -y install --enablerepo=centosplus perl-DBD-Pg&lt;br /&gt;
# yum -y install perl-Crypt-DES perl-Crypt-Blowfish perl-Digest-MD4&lt;br /&gt;
# yum -y install perl-Crypt-Rijndael perl-ExtUtils-CBuilder&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can install these using cpan, or follow the directions here using cpan2rpm.&lt;br /&gt;
&lt;br /&gt;
* DBIx::DBSchema&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-DBIx-DBSchema&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Frontier::RPC2&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-XML-Parser&lt;br /&gt;
# cpan2rpm --author='Ken MacLeod &amp;amp;lt;ken@bitsko.slc.ut.us&amp;amp;gt;' --version='0.07b4' Frontier-RPC&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Frontier-RPC-0.07b4-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Business::CreditCard&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Business::CreditCard&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Business-CreditCard-0.30-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Time::Duration&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-Test-Pod perl-Test-Pod-Coverage&lt;br /&gt;
# cpan2rpm Time::Duration&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Time-Duration-1.04-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* HTML::Widgets::SelectLayers&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm http://search.cpan.org/CPAN/authors/id/I/IV/IVAN/HTML-Widgets-SelectLayers-0.07.tar.gz&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-HTML-Widgets-SelectLayers-0.07-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Color::Scheme&lt;br /&gt;
&lt;br /&gt;
Ran into much brokenness when trying to build Test-Simple-0.67.  Just skip the dep checks and test phase and hope.  I mean, come on, it's Color::Scheme for crying out loud!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum -y install perl-Test-Differences&lt;br /&gt;
# cpan2rpm --make-no-test --no-depchk Color::Scheme&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Color-Scheme-1.02-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Params::Classify&lt;br /&gt;
&lt;br /&gt;
Install some deps first...&lt;br /&gt;
&lt;br /&gt;
** Scalar::Number&lt;br /&gt;
&lt;br /&gt;
*** Data::Integer&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Data::Integer&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Integer-0.001-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*** Data::Float&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Data::Float&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Float-0.005-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Scalar::Number&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Scalar-Number-0.001-1.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
# cpan2rpm Params::Classify&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Params-Classify-0.002-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Module::Runtime&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Module::Runtime&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Module-Runtime-0.003-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Authen::DecHpwd&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Authen::DecHpwd&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Authen-DecHpwd-2.001-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Authen::Passphrase&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Authen::Passphrase&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Authen-Passphrase-0.005-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Data::Entropy::Algorithms&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --make-no-test Data::Entropy&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Entropy-0.003-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::MySQL&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --version='0.04' --author='IKEBE Tomohiro &amp;lt;ikebe@shebang.jp&amp;gt;' Crypt::MySQL&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-MySQL-0.04-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::Eksblowfish&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Crypt::Eksblowfish&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-Eksblowfish-0.001-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::UnixCrypt_XS&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Crypt::UnixCrypt_XS&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-UnixCrypt_XS-0.05-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Fax::Hylafax::Client (Optional)&lt;br /&gt;
&lt;br /&gt;
Skip the tests here as well, unless you happen to have a properly configured HylaFAX server handy.&lt;br /&gt;
Or, skip the package entirely if you don't plan on sending FAX invoices.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --make-no-test Fax::Hylafax::Client&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Fax-Hylafax-Client-1.02-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== RT Prereqs ====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Perl Module*||*Package*||*Version*||*Repo*&lt;br /&gt;
|-&lt;br /&gt;
|Apache::Session||perl-Apache-Session||1.81-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML-Format||perl-HTML-Format||2.04-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Class::ReturnValue||perl-Class-ReturnValue||0.53-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBIx::SearchBuilder||perl-DBIx-SearchBuilder||1.43-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Log::Dispatch||perl-Log-Dispatch||2.11-1.2.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Locale::Maketext::Lexicon||perl-Locale-Maketext-Lexicon||0.62-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Locale::Maketext::Fuzzy||perl-Locale-Maketext-Fuzzy||0.02-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Wrapper||perl-Text-Wrapper||1.000-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Time-modules||perl-Time-modules||2003.1126-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Autoformat||perl-Text-Autoformat||1.13-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Quoted||perl-Text-Quoted||1.8-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Regexp::Common||perl-Regexp-Common||2.120-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Scrubber||perl-HTML-Scrubber||0.08-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Tree::Simple||perl-Tree-Simple||1.17-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML::TreeBuilder||perl-HTML-Tree||3.23-1.el4.rf||dries&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Apache-Session perl-HTML-Format perl-Class-ReturnValue&lt;br /&gt;
# yum install perl-Locale-Maketext-Lexicon perl-Locale-Maketext-Fuzzy&lt;br /&gt;
# yum install perl-Text-Wrapper perl-Time-modules&lt;br /&gt;
# yum install perl-Text-Autoformat perl-Text-Quoted perl-Regexp-Common&lt;br /&gt;
# yum install perl-HTML-Scrubber perl-Tree-Simple perl-HTML-Tree&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Log::Dispatch&lt;br /&gt;
&lt;br /&gt;
Use the SRPM from Fedora Core 5.  They have the correct and properly patched version that supports mod_perl 2.&lt;br /&gt;
&lt;br /&gt;
But first, a couple of prereqs.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-File-Find-Rule perl-IO-String&lt;br /&gt;
# yum install perl-MIME-Lite perl-Mail-Sender perl-Mail-Sendmail&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now build and install Log::Dispatch itself. (There seems to be another rpm too, but it need Apache::Log)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# wget -O /usr/src/redhat/SRPMS/perl-Log-Dispatch-2.15-2.fc5.src.rpm http://download.fedora.redhat.com/pub/fedora/linux/extras/5/SRPMS/perl-Log-Dispatch-2.15-2.fc5.src.rpm&lt;br /&gt;
&lt;br /&gt;
# rpmbuild --rebuild /usr/src/redhat/SRPMS/perl-Log-Dispatch-2.15-2.src.rpm&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Log-Dispatch-2.15-2.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* DBIx::SearchBuilder&lt;br /&gt;
&lt;br /&gt;
DBIx::searchBuilder is a little painful to install because it requires DBD::Oracle.  You can just run &amp;quot;yum install perl-DBIx-SearchBuilder&amp;quot; if you want to go through the trouble of building and installing DBD::Oracle first.  Again, that can be rather painful and isn't within the scope of this guide.&lt;br /&gt;
&lt;br /&gt;
The alternative below is to force install the RPM for DBIx::SearchBuilder since we're not going to use Oracle anyway.  You have to exclude it from future updates in yum otherwise you'll get dep failures everytime you do a &amp;quot;yum upgrade&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
If you're not going to use RT, just skip DBIx::SearchBuilder altogether.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Want perl-Clone perl-Cache-Simple-TimedExpiry&lt;br /&gt;
# yum install perl-DBD-SQLite perl-capitalization perl-Class-Accessor&lt;br /&gt;
&lt;br /&gt;
# rpm -ivh --nodeps http://apt.sw.be/redhat/el4/en/${BASEARCH}/dag/RPMS/perl-DBIx-SearchBuilder-1.43-1.el4.rf.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
# echo &amp;quot;exclude=perl-DBIx-SearchBuilder&amp;quot; &amp;gt;&amp;gt; /etc/yum.conf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== System configuration ==&lt;br /&gt;
&lt;br /&gt;
This is just following the directions with CentOS-specific commands.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# groupadd freeside&lt;br /&gt;
# useradd -g freeside freeside&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With CentOS 4.4, postgresql wouldn't start if SELinux was enabled.  We call &amp;quot;setenforce 0&amp;quot; here to temporarily disable it.  Some claim that it only needs to be disabled the first time postgresql is started.&lt;br /&gt;
&lt;br /&gt;
Enable postgresql at startup, disable selinux temporarily, and start postgresql.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# chkconfig postgresql on&lt;br /&gt;
# setenfore 0&lt;br /&gt;
# service postgresql start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the freeside datbase user for postgresql.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# su -c &amp;quot;createuser -P freeside&amp;quot; - postgres&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Installing Freeside ==&lt;br /&gt;
&lt;br /&gt;
su to the freeside user, extract a copy of the freeside tarball or check out the code from CVS into the freeside user's home directory.  You should have the freeside top-level Makefile in /home/freeside/freeside/Makefile or /home/freeside/freeside-1.7.0/Makefile at this point.  1.7.0 wasn't officially released at the time of writing, so we're using a version checked-out from CVS.&lt;br /&gt;
&lt;br /&gt;
Edit freeside's top-level Makefile with your configuration.  Here are some examples...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
FREESIDE_CONF = /etc/freeside&lt;br /&gt;
FREESIDE_LOG = /var/log/freeside&lt;br /&gt;
FREESIDE_LOCK = /var/lib/freeside&lt;br /&gt;
FREESIDE_CACHE = /var/lib/freeside&lt;br /&gt;
FREESIDE_EXPORT = /var/lib/freeside&lt;br /&gt;
&lt;br /&gt;
APACHE_VERSION = 2&lt;br /&gt;
FREESIDE_DOCUMENT_ROOT = /var/www/freeside/html&lt;br /&gt;
&lt;br /&gt;
INIT_FILE = /etc/init.d/freeside&lt;br /&gt;
INIT_INSTALL = /sbin/chkconfig freeside on&lt;br /&gt;
&lt;br /&gt;
HTTPD_RESTART = /etc/init.d/httpd restart&lt;br /&gt;
APACHE_CONF = /etc/httpd-freeside/conf.d&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As the freeside user, create the database and make the perl modules.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ createdb -E sql_ascii freeside&lt;br /&gt;
&lt;br /&gt;
$ make perl-modules&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As root, install the perl modules and create the initial config.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-perl-modules&lt;br /&gt;
&lt;br /&gt;
# mkdir -m 770 /var/lib/freeside&lt;br /&gt;
# chown -R freeside:root /var/lib/freeside/&lt;br /&gt;
# make create-config&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Apache Configuration ==&lt;br /&gt;
&lt;br /&gt;
=== Creating Freeside's Apache Instance ===&lt;br /&gt;
&lt;br /&gt;
The default Apache init script for CentOS doesn't make it very easy to setup multiple instances of Apache.  A few small modifications take care of that problem.&lt;br /&gt;
&lt;br /&gt;
Start by making a copy of the init script, as well as download the patch and apply it to your httpd-freeside init script.  You can make a symlink if you'd like to eventually setup additional Apache instances.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ln -s /etc/init.d/httpd /etc/init.d/httpd-freeside&lt;br /&gt;
&lt;br /&gt;
# cd /etc/init.d/&lt;br /&gt;
# wget -O /tmp/httpd-freeside.patch http://users.fire2wire.com/~khoff/freeside/1.7.0/httpd-freeside.patch&lt;br /&gt;
# patch &amp;lt; /tmp/httpd-freeside.patch&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Make a copy of the Apache server root.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cp -av /etc/httpd /etc/httpd-freeside&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can remove any extra conf files from /etc/httpd-freeside/conf.d (webdav, php, etc.) if you're not using them.  They'll only take up more memory and potentially make freeside slower.&lt;br /&gt;
&lt;br /&gt;
=== /etc/httpd-freeside/conf/httpd.conf ===&lt;br /&gt;
&lt;br /&gt;
Change the following Apache configuration directives in /etc/httpd-freeside/conf/httpd.conf to match our previous changes.&lt;br /&gt;
&lt;br /&gt;
* ServerRoot &amp;quot;/etc/httpd-freeside&amp;quot;&lt;br /&gt;
* PidFile run/httpd-freeside.pid&lt;br /&gt;
&lt;br /&gt;
We're changing the listening port in case you're using the default Apache configuration (and port) for something else. This can be remedied by binding to a specific IP address as well (eg. 192.168.0.2:80).&lt;br /&gt;
&lt;br /&gt;
* Listen 8080&lt;br /&gt;
&lt;br /&gt;
Freeside's instance of Apache needs to run as the freeside user and group.&lt;br /&gt;
&lt;br /&gt;
* User freeside&lt;br /&gt;
* Group freeside&lt;br /&gt;
&lt;br /&gt;
* DocumentRoot &amp;quot;/var/www/freeside/html&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* &amp;amp;lt;Directory &amp;quot;/var/www/freeside/html&amp;quot;&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
* ErrorLog logs/freeside_error_log&lt;br /&gt;
* CustomLog logs/freeside_access_log combined&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Install Docs and Freeside's Apache Includes ===&lt;br /&gt;
&lt;br /&gt;
Inside the freeside source directory, run &amp;quot;make install-docs&amp;quot; and &amp;quot;make install-apache&amp;quot; as root.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-docs&lt;br /&gt;
# make install-apache&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Edit the config file that was just created (/etc/httpd-freeside/conf.d/freeside-base2.conf) by &amp;quot;make install-apache&amp;quot; and change the AuthUserFile directive to match our new path.&lt;br /&gt;
&lt;br /&gt;
* AuthUserFile /etc/freeside/htpasswd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Populating the Database ==&lt;br /&gt;
&lt;br /&gt;
Populate the freeside database with the initial data, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ freeside-setup -d example.com&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the freeside system users, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ freeside-adduser -g 1 fs_queue&lt;br /&gt;
$ freeside-adduser -g 1 fs_daily&lt;br /&gt;
$ freeside-adduser -g 1 fs_selfservice&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create whatever other freeside users you want, again, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
freeside-adduser -g 1 username&lt;br /&gt;
htpasswd /etc/freeside/htpasswd username&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Repeat the last two commands as many times as you want for your internal staff's freeside accounts.&lt;br /&gt;
&lt;br /&gt;
== Startup Configuration ==&lt;br /&gt;
&lt;br /&gt;
We just need to make sure that our new instance of Apache and the freeside queue daemon start when we boot.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-init&lt;br /&gt;
&lt;br /&gt;
# chkconfig freeside on&lt;br /&gt;
# chkconfig httpd-freeside on&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And last but not least...start freeside's Apache instance.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# service httpd-freeside start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hopefully, Apache should start without errors.  If you do get errors, check /var/log/httpd/freeside_error_log.&lt;br /&gt;
&lt;br /&gt;
Assuming Apache started correctly, you should now be able to access freeside via http://&amp;amp;lt;Your server's FQDN or IP&amp;amp;gt;:8080/.  You can login using the username and password you set earlier with htpasswd.&lt;br /&gt;
&lt;br /&gt;
From here, consult the standard freeside install documentation in the wiki on how to proceed with initial configuration.  Good luck!&lt;br /&gt;
&lt;br /&gt;
== Problems ==&lt;br /&gt;
&lt;br /&gt;
There might be some formatting issues as this was converted from TWiki to MediaWiki markup.  If the syntax of a command doesn't look correct or doesn't make sense, it probably didn't get escaped correctly, or your web browser gobbled up some angle brackets, or both!&lt;/div&gt;</summary>
		<author><name>Tmcarter</name></author>	</entry>

	<entry>
		<id>https://secure.freeside.biz/mediawiki/index.php?title=Freeside:1.7:Documentation:InstallingOnCentOS4&amp;diff=2212</id>
		<title>Freeside:1.7:Documentation:InstallingOnCentOS4</title>
		<link rel="alternate" type="text/html" href="https://secure.freeside.biz/mediawiki/index.php?title=Freeside:1.7:Documentation:InstallingOnCentOS4&amp;diff=2212"/>
				<updated>2007-06-05T04:23:32Z</updated>
		
		<summary type="html">&lt;p&gt;Tmcarter: /* Perl Packages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Installing Freeside 1.7.x on CentOS 4.4 =&lt;br /&gt;
&lt;br /&gt;
This is a (hopefully) step-by-step guide for doing a basic installation of Freeside on CentOS 4.4 using RPMs whenever possible.  It would probably be easier to use CPAN directly in some cases, but that wouldn't be very fun now would it?&lt;br /&gt;
&lt;br /&gt;
== Software Installation ==&lt;br /&gt;
&lt;br /&gt;
Run the correct command below depending on your architecture.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# export BASEARCH=i386&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
...or...&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# export BASEARCH=x86_64&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Binary Packages ===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Package*||*Repo*||*Version*&lt;br /&gt;
|-&lt;br /&gt;
|httpd||base||2.0.52-28.ent.centos4&lt;br /&gt;
|-&lt;br /&gt;
|postgresql-server||update||7.4.16-1.RHEL4.1&lt;br /&gt;
|-&lt;br /&gt;
|tetex||base||2.0.2-22.EL4.7&lt;br /&gt;
|-&lt;br /&gt;
|ghostscript||base||7.07-33&lt;br /&gt;
|-&lt;br /&gt;
|perl||centosplus||4:5.8.8-4.el4s1&lt;br /&gt;
|-&lt;br /&gt;
|gcc||base||3.4.6-8&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install httpd postgresql-server tetex ghostscript.$BASEARCH&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Upgrade to perl 5.8.8 to get CGI &amp;gt;= 3.08.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum --enablerepo=centosplus upgrade perl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next install the gcc complier&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install gcc&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Perl Packages ===&lt;br /&gt;
&lt;br /&gt;
Setup 3rd party repos for most of the extra perl modules.&lt;br /&gt;
**Some of the links here have changed, you may have to d/l the RPM locally and install from local source**&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# rpm -ivh ftp://rpmfind.net/linux/dag/redhat/el4/en/i386/dag/RPMS/rpmforge-release-0.3.6-1.el4.rf.i386.rpm&lt;br /&gt;
# rpm --import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt&lt;br /&gt;
&lt;br /&gt;
# cat &amp;amp;lt;&amp;amp;lt;END&amp;amp;gt;/etc/yum.repos.d/dries.repo&lt;br /&gt;
[dries]&lt;br /&gt;
name=Extra Fedora rpms dries - \$releasever - \$basearch&lt;br /&gt;
baseurl=http://ftp.belnet.be/packages/dries.ulyssis.org/redhat/el\$releasever/en/\$basearch/dries/RPMS&lt;br /&gt;
END&lt;br /&gt;
# rpm --import http://dries.ulyssis.org/rpm/RPM-GPG-KEY.dries.txt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install the cpan2rpm tool so we can build RPMs from CPAN packages.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# rpm --import http://perl.arix.com/cpan2rpm/gpg.pub.asc&lt;br /&gt;
# yum install rpm-build perl-Module-Build&lt;br /&gt;
# rpm -ivh http://superb-east.dl.sourceforge.net/sourceforge/cpan2rpm/cpan2rpm-2.027-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== mod_perl2 ====&lt;br /&gt;
&lt;br /&gt;
Grab mod_perl 2.03 from the centosplus repo.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum --enablerepo=centosplus install mod_perl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Freeside Prereqs ====&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Perl Module*||*Package*||*Version*||*Repo*&lt;br /&gt;
|-&lt;br /&gt;
|libnet||libnet||1.1.2.1-2.rf||extras&lt;br /&gt;
|-&lt;br /&gt;
|libwww-perl||perl-libwww-perl.noarch||5.79-5||base&lt;br /&gt;
|-&lt;br /&gt;
|URI||perl-URI.noarch||1.30-4||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Tagset||perl-HTML-Tagset.noarch||3.03-30||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Parser||perl-HTML-Parser||3.35-6||base&lt;br /&gt;
|-&lt;br /&gt;
|DBI||perl-DBI||1.40-8||base&lt;br /&gt;
|-&lt;br /&gt;
|DBD::MySQL||perl-DBD-MySQL||2.9004-3.1||base&lt;br /&gt;
|-&lt;br /&gt;
|MailTools||perl-MailTools.noarch||1.74-1.c4||extras&lt;br /&gt;
|-&lt;br /&gt;
|TimeDate||perl-TimeDate.noarch||1.16-1.c4||extras&lt;br /&gt;
|-&lt;br /&gt;
|Date::Manip||perl-DateManip.noarch||5.42a-3||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Mason||perl-HTML-Mason||1.3200-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Text::Template||perl-Text-Template||1.44-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DateTime||perl-DateTime||0.2901-1.2.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Chart||perl-Chart||2.4.1-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Cache::Cache||perl-Cache-Cache||1.05-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|NetAddr::IP||perl-NetAddr-IP||4.004-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|String::Approx||perl-String-Approx||3.26-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Locale::SubCountry||perl-Locale-SubCountry||1.38-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Term::ReadKey||perl-Term-ReadKey||2.30-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DateTime::Format::Strptime||perl-DateTime-Format-Strptime||1.0700-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Net::Whois::Raw||perl-Net-Whois-Raw||1.20-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBIx::DBSchema||perl-DBIx-DBSchema||0.31-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Tie::IxHash||perl-Tie-IxHash||1.21-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::PasswdMD5||perl-Crypt-PasswdMD5||1.3-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|File::CounterFile||perl-File-CounterFile||1.04-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|IPC::Run3||perl-IPC-Run3||0.036-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Net::SSH||perl-Net-SSH||0.08-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|String::ShellQuote||perl-String-ShellQuote||1.03-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|JSON||perl-JSON||1.07-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Data::Table||perl-Data-Table||1.50-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Lingua::EN::NameParse||perl-Lingua-EN-NameParse||1.22-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Lingua::EN::Inflect||perl-Lingua-EN-Inflect||1.89-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Apache::DBI||perl-Apache-DBI||0.9901-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|IO::Scalar||perl-IO-stringy||2.110-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::CSV_XS||perl-Text-CSV_XS||0.23-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Spreadsheet::WriteExcel||perl-Spreadsheet-WriteExcel||2.17-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|MIME-tools||perl-MIME-tools||5.420-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Date::Manip||perl-DateManip||5.42a-3||base&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::DES||perl-Crypt-DES||2.05-3.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Blowfish||perl-Crypt-Blowfish||2.10-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Digest::MD4||perl-Digest-MD4||1.5-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Rijndael||perl-Crypt-Rijndael||0.05-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|ExtUtils::CBuilder||perl-ExtUtils-CBuilder||0.18-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBD::Pg||perl-DBD-Pg||1.49-1.el4s1||centosplus&lt;br /&gt;
|-&lt;br /&gt;
|Locale-Codes|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Frontier::RPC2|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Business::CreditCard|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Time::Duration|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Widgets::SelectLayers|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Color::Scheme|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Params::Classify||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Scalar::Number||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Integer||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Float||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Module::Runtime||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Authen::DecHpwd||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Authen::Passphrase||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Entropy::Algorithms||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::MySQL||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Eksblowfish||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::UnixCrypt_XS||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Fax::Hylafax::Client||||cpan2rpm&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install libnet perl-libwww-perl perl-URI perl-HTML-Tagset&lt;br /&gt;
# yum install perl-HTML-Parser &lt;br /&gt;
# yum install perl-MailTools perl-TimeDate&lt;br /&gt;
&lt;br /&gt;
# yum install perl-HTML-Mason perl-Text-Template perl-DateTime perl-Chart&lt;br /&gt;
# yum install perl-Cache-Cache perl-NetAddr-IP perl-String-Approx&lt;br /&gt;
# yum install perl-Locale-SubCountry perl-Term-ReadKey&lt;br /&gt;
# yum install perl-DateTime-Format-Strptime perl-Net-Whois-Raw&lt;br /&gt;
# yum install perl-Tie-IxHash perl-Crypt-PasswdMD5&lt;br /&gt;
# yum install perl-File-CounterFile perl-IPC-Run3 perl-Net-SSH&lt;br /&gt;
# yum install perl-String-ShellQuote perl-JSON perl-Data-Table&lt;br /&gt;
# yum install perl-Lingua-EN-NameParse perl-Lingua-EN-Inflect&lt;br /&gt;
# yum install perl-IO-stringy perl-Text-CSV_XS perl-Spreadsheet-WriteExcel&lt;br /&gt;
# yum install perl-MIME-tools perl-DateManip&lt;br /&gt;
# yum install perl-DBI perl-DBD-MySQL perl-Apache-DBI &lt;br /&gt;
# yum install --enablerepo=centosplus perl-DBD-Pg&lt;br /&gt;
# yum install perl-Crypt-DES perl-Crypt-Blowfish perl-Digest-MD4&lt;br /&gt;
# yum install perl-Crypt-Rijndael perl-ExtUtils-CBuilder&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can install these using cpan, or follow the directions here using cpan2rpm.&lt;br /&gt;
&lt;br /&gt;
* DBIx::DBSchema&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-DBIx-DBSchema&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Frontier::RPC2&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-XML-Parser&lt;br /&gt;
# cpan2rpm --author='Ken MacLeod &amp;amp;lt;ken@bitsko.slc.ut.us&amp;amp;gt;' --version='0.07b4' Frontier-RPC&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Frontier-RPC-0.07b4-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Business::CreditCard&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Business::CreditCard&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Business-CreditCard-0.30-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Time::Duration&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Test-Pod perl-Test-Pod-Coverage&lt;br /&gt;
# cpan2rpm Time::Duration&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Time-Duration-1.04-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* HTML::Widgets::SelectLayers&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm http://search.cpan.org/CPAN/authors/id/I/IV/IVAN/HTML-Widgets-SelectLayers-0.07.tar.gz&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-HTML-Widgets-SelectLayers-0.07-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Color::Scheme&lt;br /&gt;
&lt;br /&gt;
Ran into much brokenness when trying to build Test-Simple-0.67.  Just skip the dep checks and test phase and hope.  I mean, come on, it's Color::Scheme for crying out loud!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Test-Differences&lt;br /&gt;
# cpan2rpm --make-no-test --no-depchk Color::Scheme&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Color-Scheme-1.02-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Params::Classify&lt;br /&gt;
&lt;br /&gt;
Install some deps first...&lt;br /&gt;
&lt;br /&gt;
** Scalar::Number&lt;br /&gt;
&lt;br /&gt;
*** Data::Integer&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Data::Integer&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Integer-0.001-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*** Data::Float&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Data::Float&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Float-0.005-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Scalar::Number&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Scalar-Number-0.001-1.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
# cpan2rpm Params::Classify&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Params-Classify-0.002-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Module::Runtime&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Module::Runtime&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Module-Runtime-0.003-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Authen::DecHpwd&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Authen::DecHpwd&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Authen-DecHpwd-2.001-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Authen::Passphrase&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Authen::Passphrase&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Authen-Passphrase-0.005-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Data::Entropy::Algorithms&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --make-no-test Data::Entropy&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Entropy-0.003-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::MySQL&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --version='0.04' --author='IKEBE Tomohiro &amp;lt;ikebe@shebang.jp&amp;gt;' Crypt::MySQL&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-MySQL-0.04-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::Eksblowfish&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Crypt::Eksblowfish&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-Eksblowfish-0.001-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::UnixCrypt_XS&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Crypt::UnixCrypt_XS&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-UnixCrypt_XS-0.05-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Fax::Hylafax::Client (Optional)&lt;br /&gt;
&lt;br /&gt;
Skip the tests here as well, unless you happen to have a properly configured HylaFAX server handy.&lt;br /&gt;
Or, skip the package entirely if you don't plan on sending FAX invoices.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --make-no-test Fax::Hylafax::Client&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Fax-Hylafax-Client-1.02-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== RT Prereqs ====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Perl Module*||*Package*||*Version*||*Repo*&lt;br /&gt;
|-&lt;br /&gt;
|Apache::Session||perl-Apache-Session||1.81-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML-Format||perl-HTML-Format||2.04-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Class::ReturnValue||perl-Class-ReturnValue||0.53-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBIx::SearchBuilder||perl-DBIx-SearchBuilder||1.43-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Log::Dispatch||perl-Log-Dispatch||2.11-1.2.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Locale::Maketext::Lexicon||perl-Locale-Maketext-Lexicon||0.62-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Locale::Maketext::Fuzzy||perl-Locale-Maketext-Fuzzy||0.02-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Wrapper||perl-Text-Wrapper||1.000-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Time-modules||perl-Time-modules||2003.1126-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Autoformat||perl-Text-Autoformat||1.13-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Quoted||perl-Text-Quoted||1.8-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Regexp::Common||perl-Regexp-Common||2.120-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Scrubber||perl-HTML-Scrubber||0.08-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Tree::Simple||perl-Tree-Simple||1.17-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML::TreeBuilder||perl-HTML-Tree||3.23-1.el4.rf||dries&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Apache-Session perl-HTML-Format perl-Class-ReturnValue&lt;br /&gt;
# yum install perl-Locale-Maketext-Lexicon perl-Locale-Maketext-Fuzzy&lt;br /&gt;
# yum install perl-Text-Wrapper perl-Time-modules&lt;br /&gt;
# yum install perl-Text-Autoformat perl-Text-Quoted perl-Regexp-Common&lt;br /&gt;
# yum install perl-HTML-Scrubber perl-Tree-Simple perl-HTML-Tree&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Log::Dispatch&lt;br /&gt;
&lt;br /&gt;
Use the SRPM from Fedora Core 5.  They have the correct and properly patched version that supports mod_perl 2.&lt;br /&gt;
&lt;br /&gt;
But first, a couple of prereqs.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-File-Find-Rule perl-IO-String&lt;br /&gt;
# yum install perl-MIME-Lite perl-Mail-Sender perl-Mail-Sendmail&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now build and install Log::Dispatch itself. (There seems to be another rpm too, but it need Apache::Log)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# wget -O /usr/src/redhat/SRPMS/perl-Log-Dispatch-2.15-2.fc5.src.rpm http://download.fedora.redhat.com/pub/fedora/linux/extras/5/SRPMS/perl-Log-Dispatch-2.15-2.fc5.src.rpm&lt;br /&gt;
&lt;br /&gt;
# rpmbuild --rebuild /usr/src/redhat/SRPMS/perl-Log-Dispatch-2.15-2.src.rpm&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Log-Dispatch-2.15-2.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* DBIx::SearchBuilder&lt;br /&gt;
&lt;br /&gt;
DBIx::searchBuilder is a little painful to install because it requires DBD::Oracle.  You can just run &amp;quot;yum install perl-DBIx-SearchBuilder&amp;quot; if you want to go through the trouble of building and installing DBD::Oracle first.  Again, that can be rather painful and isn't within the scope of this guide.&lt;br /&gt;
&lt;br /&gt;
The alternative below is to force install the RPM for DBIx::SearchBuilder since we're not going to use Oracle anyway.  You have to exclude it from future updates in yum otherwise you'll get dep failures everytime you do a &amp;quot;yum upgrade&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
If you're not going to use RT, just skip DBIx::SearchBuilder altogether.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Want perl-Clone perl-Cache-Simple-TimedExpiry&lt;br /&gt;
# yum install perl-DBD-SQLite perl-capitalization perl-Class-Accessor&lt;br /&gt;
&lt;br /&gt;
# rpm -ivh --nodeps http://apt.sw.be/redhat/el4/en/${BASEARCH}/dag/RPMS/perl-DBIx-SearchBuilder-1.43-1.el4.rf.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
# echo &amp;quot;exclude=perl-DBIx-SearchBuilder&amp;quot; &amp;gt;&amp;gt; /etc/yum.conf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== System configuration ==&lt;br /&gt;
&lt;br /&gt;
This is just following the directions with CentOS-specific commands.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# groupadd freeside&lt;br /&gt;
# useradd -g freeside freeside&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With CentOS 4.4, postgresql wouldn't start if SELinux was enabled.  We call &amp;quot;setenforce 0&amp;quot; here to temporarily disable it.  Some claim that it only needs to be disabled the first time postgresql is started.&lt;br /&gt;
&lt;br /&gt;
Enable postgresql at startup, disable selinux temporarily, and start postgresql.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# chkconfig postgresql on&lt;br /&gt;
# setenfore 0&lt;br /&gt;
# service postgresql start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the freeside datbase user for postgresql.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# su -c &amp;quot;createuser -P freeside&amp;quot; - postgres&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Installing Freeside ==&lt;br /&gt;
&lt;br /&gt;
su to the freeside user, extract a copy of the freeside tarball or check out the code from CVS into the freeside user's home directory.  You should have the freeside top-level Makefile in /home/freeside/freeside/Makefile or /home/freeside/freeside-1.7.0/Makefile at this point.  1.7.0 wasn't officially released at the time of writing, so we're using a version checked-out from CVS.&lt;br /&gt;
&lt;br /&gt;
Edit freeside's top-level Makefile with your configuration.  Here are some examples...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
FREESIDE_CONF = /etc/freeside&lt;br /&gt;
FREESIDE_LOG = /var/log/freeside&lt;br /&gt;
FREESIDE_LOCK = /var/lib/freeside&lt;br /&gt;
FREESIDE_CACHE = /var/lib/freeside&lt;br /&gt;
FREESIDE_EXPORT = /var/lib/freeside&lt;br /&gt;
&lt;br /&gt;
APACHE_VERSION = 2&lt;br /&gt;
FREESIDE_DOCUMENT_ROOT = /var/www/freeside/html&lt;br /&gt;
&lt;br /&gt;
INIT_FILE = /etc/init.d/freeside&lt;br /&gt;
INIT_INSTALL = /sbin/chkconfig freeside on&lt;br /&gt;
&lt;br /&gt;
HTTPD_RESTART = /etc/init.d/httpd restart&lt;br /&gt;
APACHE_CONF = /etc/httpd-freeside/conf.d&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As the freeside user, create the database and make the perl modules.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ createdb -E sql_ascii freeside&lt;br /&gt;
&lt;br /&gt;
$ make perl-modules&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As root, install the perl modules and create the initial config.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-perl-modules&lt;br /&gt;
&lt;br /&gt;
# mkdir -m 770 /var/lib/freeside&lt;br /&gt;
# chown -R freeside:root /var/lib/freeside/&lt;br /&gt;
# make create-config&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Apache Configuration ==&lt;br /&gt;
&lt;br /&gt;
=== Creating Freeside's Apache Instance ===&lt;br /&gt;
&lt;br /&gt;
The default Apache init script for CentOS doesn't make it very easy to setup multiple instances of Apache.  A few small modifications take care of that problem.&lt;br /&gt;
&lt;br /&gt;
Start by making a copy of the init script, as well as download the patch and apply it to your httpd-freeside init script.  You can make a symlink if you'd like to eventually setup additional Apache instances.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ln -s /etc/init.d/httpd /etc/init.d/httpd-freeside&lt;br /&gt;
&lt;br /&gt;
# cd /etc/init.d/&lt;br /&gt;
# wget -O /tmp/httpd-freeside.patch http://users.fire2wire.com/~khoff/freeside/1.7.0/httpd-freeside.patch&lt;br /&gt;
# patch &amp;lt; /tmp/httpd-freeside.patch&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Make a copy of the Apache server root.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cp -av /etc/httpd /etc/httpd-freeside&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can remove any extra conf files from /etc/httpd-freeside/conf.d (webdav, php, etc.) if you're not using them.  They'll only take up more memory and potentially make freeside slower.&lt;br /&gt;
&lt;br /&gt;
=== /etc/httpd-freeside/conf/httpd.conf ===&lt;br /&gt;
&lt;br /&gt;
Change the following Apache configuration directives in /etc/httpd-freeside/conf/httpd.conf to match our previous changes.&lt;br /&gt;
&lt;br /&gt;
* ServerRoot &amp;quot;/etc/httpd-freeside&amp;quot;&lt;br /&gt;
* PidFile run/httpd-freeside.pid&lt;br /&gt;
&lt;br /&gt;
We're changing the listening port in case you're using the default Apache configuration (and port) for something else. This can be remedied by binding to a specific IP address as well (eg. 192.168.0.2:80).&lt;br /&gt;
&lt;br /&gt;
* Listen 8080&lt;br /&gt;
&lt;br /&gt;
Freeside's instance of Apache needs to run as the freeside user and group.&lt;br /&gt;
&lt;br /&gt;
* User freeside&lt;br /&gt;
* Group freeside&lt;br /&gt;
&lt;br /&gt;
* DocumentRoot &amp;quot;/var/www/freeside/html&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* &amp;amp;lt;Directory &amp;quot;/var/www/freeside/html&amp;quot;&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
* ErrorLog logs/freeside_error_log&lt;br /&gt;
* CustomLog logs/freeside_access_log combined&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Install Docs and Freeside's Apache Includes ===&lt;br /&gt;
&lt;br /&gt;
Inside the freeside source directory, run &amp;quot;make install-docs&amp;quot; and &amp;quot;make install-apache&amp;quot; as root.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-docs&lt;br /&gt;
# make install-apache&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Edit the config file that was just created (/etc/httpd-freeside/conf.d/freeside-base2.conf) by &amp;quot;make install-apache&amp;quot; and change the AuthUserFile directive to match our new path.&lt;br /&gt;
&lt;br /&gt;
* AuthUserFile /etc/freeside/htpasswd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Populating the Database ==&lt;br /&gt;
&lt;br /&gt;
Populate the freeside database with the initial data, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ freeside-setup -d example.com&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the freeside system users, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ freeside-adduser -g 1 fs_queue&lt;br /&gt;
$ freeside-adduser -g 1 fs_daily&lt;br /&gt;
$ freeside-adduser -g 1 fs_selfservice&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create whatever other freeside users you want, again, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
freeside-adduser -g 1 username&lt;br /&gt;
htpasswd /etc/freeside/htpasswd username&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Repeat the last two commands as many times as you want for your internal staff's freeside accounts.&lt;br /&gt;
&lt;br /&gt;
== Startup Configuration ==&lt;br /&gt;
&lt;br /&gt;
We just need to make sure that our new instance of Apache and the freeside queue daemon start when we boot.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-init&lt;br /&gt;
&lt;br /&gt;
# chkconfig freeside on&lt;br /&gt;
# chkconfig httpd-freeside on&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And last but not least...start freeside's Apache instance.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# service httpd-freeside start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hopefully, Apache should start without errors.  If you do get errors, check /var/log/httpd/freeside_error_log.&lt;br /&gt;
&lt;br /&gt;
Assuming Apache started correctly, you should now be able to access freeside via http://&amp;amp;lt;Your server's FQDN or IP&amp;amp;gt;:8080/.  You can login using the username and password you set earlier with htpasswd.&lt;br /&gt;
&lt;br /&gt;
From here, consult the standard freeside install documentation in the wiki on how to proceed with initial configuration.  Good luck!&lt;br /&gt;
&lt;br /&gt;
== Problems ==&lt;br /&gt;
&lt;br /&gt;
There might be some formatting issues as this was converted from TWiki to MediaWiki markup.  If the syntax of a command doesn't look correct or doesn't make sense, it probably didn't get escaped correctly, or your web browser gobbled up some angle brackets, or both!&lt;/div&gt;</summary>
		<author><name>Tmcarter</name></author>	</entry>

	<entry>
		<id>https://secure.freeside.biz/mediawiki/index.php?title=Freeside:1.7:Documentation:InstallingOnCentOS4&amp;diff=2208</id>
		<title>Freeside:1.7:Documentation:InstallingOnCentOS4</title>
		<link rel="alternate" type="text/html" href="https://secure.freeside.biz/mediawiki/index.php?title=Freeside:1.7:Documentation:InstallingOnCentOS4&amp;diff=2208"/>
				<updated>2007-06-04T12:42:33Z</updated>
		
		<summary type="html">&lt;p&gt;Tmcarter: /* Perl Packages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Installing Freeside 1.7.x on CentOS 4.4 =&lt;br /&gt;
&lt;br /&gt;
This is a (hopefully) step-by-step guide for doing a basic installation of Freeside on CentOS 4.4 using RPMs whenever possible.  It would probably be easier to use CPAN directly in some cases, but that wouldn't be very fun now would it?&lt;br /&gt;
&lt;br /&gt;
== Software Installation ==&lt;br /&gt;
&lt;br /&gt;
Run the correct command below depending on your architecture.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# export BASEARCH=i386&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
...or...&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# export BASEARCH=x86_64&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Binary Packages ===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Package*||*Repo*||*Version*&lt;br /&gt;
|-&lt;br /&gt;
|httpd||base||2.0.52-28.ent.centos4&lt;br /&gt;
|-&lt;br /&gt;
|postgresql-server||update||7.4.16-1.RHEL4.1&lt;br /&gt;
|-&lt;br /&gt;
|tetex||base||2.0.2-22.EL4.7&lt;br /&gt;
|-&lt;br /&gt;
|ghostscript||base||7.07-33&lt;br /&gt;
|-&lt;br /&gt;
|perl||centosplus||4:5.8.8-4.el4s1&lt;br /&gt;
|-&lt;br /&gt;
|gcc||base||3.4.6-8&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install httpd postgresql-server tetex ghostscript.$BASEARCH&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Upgrade to perl 5.8.8 to get CGI &amp;gt;= 3.08.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum --enablerepo=centosplus upgrade perl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next install the gcc complier&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install gcc&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Perl Packages ===&lt;br /&gt;
&lt;br /&gt;
Setup 3rd party repos for most of the extra perl modules.&lt;br /&gt;
**Some of the links here have changed, you may have to d/l the RPM locally and install from local source**&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# rpm -ivh http://dag.wieers.com/rpm/packages/rpmforge-release/rpmforge-release-0.3.6-1.el4.rf.i386.rpm&lt;br /&gt;
# rpm --import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt&lt;br /&gt;
&lt;br /&gt;
# cat &amp;amp;lt;&amp;amp;lt;END&amp;amp;gt;/etc/yum.repos.d/dries.repo&lt;br /&gt;
[dries]&lt;br /&gt;
name=Extra Fedora rpms dries - \$releasever - \$basearch&lt;br /&gt;
baseurl=http://ftp.belnet.be/packages/dries.ulyssis.org/redhat/el\$releasever/en/\$basearch/dries/RPMS&lt;br /&gt;
END&lt;br /&gt;
# rpm --import http://dries.ulyssis.org/rpm/RPM-GPG-KEY.dries.txt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install the cpan2rpm tool so we can build RPMs from CPAN packages.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# rpm --import http://perl.arix.com/cpan2rpm/gpg.pub.asc&lt;br /&gt;
# yum install rpm-build perl-Module-Build&lt;br /&gt;
# rpm -ivh http://superb-east.dl.sourceforge.net/sourceforge/cpan2rpm/cpan2rpm-2.027-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== mod_perl2 ====&lt;br /&gt;
&lt;br /&gt;
Grab mod_perl 2.03 from the centosplus repo.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum --enablerepo=centosplus install mod_perl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Freeside Prereqs ====&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Perl Module*||*Package*||*Version*||*Repo*&lt;br /&gt;
|-&lt;br /&gt;
|libnet||libnet||1.1.2.1-2.rf||extras&lt;br /&gt;
|-&lt;br /&gt;
|libwww-perl||perl-libwww-perl.noarch||5.79-5||base&lt;br /&gt;
|-&lt;br /&gt;
|URI||perl-URI.noarch||1.30-4||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Tagset||perl-HTML-Tagset.noarch||3.03-30||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Parser||perl-HTML-Parser||3.35-6||base&lt;br /&gt;
|-&lt;br /&gt;
|DBI||perl-DBI||1.40-8||base&lt;br /&gt;
|-&lt;br /&gt;
|DBD::MySQL||perl-DBD-MySQL||2.9004-3.1||base&lt;br /&gt;
|-&lt;br /&gt;
|MailTools||perl-MailTools.noarch||1.74-1.c4||extras&lt;br /&gt;
|-&lt;br /&gt;
|TimeDate||perl-TimeDate.noarch||1.16-1.c4||extras&lt;br /&gt;
|-&lt;br /&gt;
|Date::Manip||perl-DateManip.noarch||5.42a-3||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Mason||perl-HTML-Mason||1.3200-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Text::Template||perl-Text-Template||1.44-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DateTime||perl-DateTime||0.2901-1.2.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Chart||perl-Chart||2.4.1-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Cache::Cache||perl-Cache-Cache||1.05-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|NetAddr::IP||perl-NetAddr-IP||4.004-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|String::Approx||perl-String-Approx||3.26-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Locale::SubCountry||perl-Locale-SubCountry||1.38-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Term::ReadKey||perl-Term-ReadKey||2.30-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DateTime::Format::Strptime||perl-DateTime-Format-Strptime||1.0700-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Net::Whois::Raw||perl-Net-Whois-Raw||1.20-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBIx::DBSchema||perl-DBIx-DBSchema||0.31-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Tie::IxHash||perl-Tie-IxHash||1.21-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::PasswdMD5||perl-Crypt-PasswdMD5||1.3-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|File::CounterFile||perl-File-CounterFile||1.04-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|IPC::Run3||perl-IPC-Run3||0.036-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Net::SSH||perl-Net-SSH||0.08-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|String::ShellQuote||perl-String-ShellQuote||1.03-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|JSON||perl-JSON||1.07-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Data::Table||perl-Data-Table||1.50-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Lingua::EN::NameParse||perl-Lingua-EN-NameParse||1.22-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Lingua::EN::Inflect||perl-Lingua-EN-Inflect||1.89-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Apache::DBI||perl-Apache-DBI||0.9901-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|IO::Scalar||perl-IO-stringy||2.110-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::CSV_XS||perl-Text-CSV_XS||0.23-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Spreadsheet::WriteExcel||perl-Spreadsheet-WriteExcel||2.17-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|MIME-tools||perl-MIME-tools||5.420-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Date::Manip||perl-DateManip||5.42a-3||base&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::DES||perl-Crypt-DES||2.05-3.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Blowfish||perl-Crypt-Blowfish||2.10-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Digest::MD4||perl-Digest-MD4||1.5-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Rijndael||perl-Crypt-Rijndael||0.05-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|ExtUtils::CBuilder||perl-ExtUtils-CBuilder||0.18-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBD::Pg||perl-DBD-Pg||1.49-1.el4s1||centosplus&lt;br /&gt;
|-&lt;br /&gt;
|Locale-Codes|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Frontier::RPC2|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Business::CreditCard|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Time::Duration|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Widgets::SelectLayers|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Color::Scheme|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Params::Classify||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Scalar::Number||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Integer||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Float||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Module::Runtime||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Authen::DecHpwd||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Authen::Passphrase||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Entropy::Algorithms||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::MySQL||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Eksblowfish||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::UnixCrypt_XS||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Fax::Hylafax::Client||||cpan2rpm&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install libnet perl-libwww-perl perl-URI perl-HTML-Tagset&lt;br /&gt;
# yum install perl-HTML-Parser &lt;br /&gt;
# yum install perl-MailTools perl-TimeDate&lt;br /&gt;
&lt;br /&gt;
# yum install perl-HTML-Mason perl-Text-Template perl-DateTime perl-Chart&lt;br /&gt;
# yum install perl-Cache-Cache perl-NetAddr-IP perl-String-Approx&lt;br /&gt;
# yum install perl-Locale-SubCountry perl-Term-ReadKey&lt;br /&gt;
# yum install perl-DateTime-Format-Strptime perl-Net-Whois-Raw&lt;br /&gt;
# yum install perl-Tie-IxHash perl-Crypt-PasswdMD5&lt;br /&gt;
# yum install perl-File-CounterFile perl-IPC-Run3 perl-Net-SSH&lt;br /&gt;
# yum install perl-String-ShellQuote perl-JSON perl-Data-Table&lt;br /&gt;
# yum install perl-Lingua-EN-NameParse perl-Lingua-EN-Inflect&lt;br /&gt;
# yum install perl-IO-stringy perl-Text-CSV_XS perl-Spreadsheet-WriteExcel&lt;br /&gt;
# yum install perl-MIME-tools perl-DateManip&lt;br /&gt;
# yum install perl-DBI perl-DBD-MySQL perl-Apache-DBI &lt;br /&gt;
# yum install --enablerepo=centosplus perl-DBD-Pg&lt;br /&gt;
# yum install perl-Crypt-DES perl-Crypt-Blowfish perl-Digest-MD4&lt;br /&gt;
# yum install perl-Crypt-Rijndael perl-ExtUtils-CBuilder&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can install these using cpan, or follow the directions here using cpan2rpm.&lt;br /&gt;
&lt;br /&gt;
* DBIx::DBSchema&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-DBIx-DBSchema&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Frontier::RPC2&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-XML-Parser&lt;br /&gt;
# cpan2rpm --author='Ken MacLeod &amp;amp;lt;ken@bitsko.slc.ut.us&amp;amp;gt;' --version='0.07b4' Frontier-RPC&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Frontier-RPC-0.07b4-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Business::CreditCard&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Business::CreditCard&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Business-CreditCard-0.30-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Time::Duration&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Test-Pod perl-Test-Pod-Coverage&lt;br /&gt;
# cpan2rpm Time::Duration&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Time-Duration-1.04-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* HTML::Widgets::SelectLayers&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm http://search.cpan.org/CPAN/authors/id/I/IV/IVAN/HTML-Widgets-SelectLayers-0.07.tar.gz&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-HTML-Widgets-SelectLayers-0.07-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Color::Scheme&lt;br /&gt;
&lt;br /&gt;
Ran into much brokenness when trying to build Test-Simple-0.67.  Just skip the dep checks and test phase and hope.  I mean, come on, it's Color::Scheme for crying out loud!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Test-Differences&lt;br /&gt;
# cpan2rpm --make-no-test --no-depchk Color::Scheme&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Color-Scheme-1.02-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Params::Classify&lt;br /&gt;
&lt;br /&gt;
Install some deps first...&lt;br /&gt;
&lt;br /&gt;
** Scalar::Number&lt;br /&gt;
&lt;br /&gt;
*** Data::Integer&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Data::Integer&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Integer-0.001-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*** Data::Float&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Data::Float&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Float-0.005-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Scalar::Number&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Scalar-Number-0.001-1.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
# cpan2rpm Params::Classify&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Params-Classify-0.002-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Module::Runtime&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Module::Runtime&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Module-Runtime-0.003-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Authen::DecHpwd&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Authen::DecHpwd&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Authen-DecHpwd-2.001-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Authen::Passphrase&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Authen::Passphrase&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Authen-Passphrase-0.005-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Data::Entropy::Algorithms&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --make-no-test Data::Entropy&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Entropy-0.003-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::MySQL&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --version='0.04' --author='IKEBE Tomohiro &amp;lt;ikebe@shebang.jp&amp;gt;' Crypt::MySQL&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-MySQL-0.04-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::Eksblowfish&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Crypt::Eksblowfish&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-Eksblowfish-0.001-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::UnixCrypt_XS&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Crypt::UnixCrypt_XS&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-UnixCrypt_XS-0.05-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Fax::Hylafax::Client (Optional)&lt;br /&gt;
&lt;br /&gt;
Skip the tests here as well, unless you happen to have a properly configured HylaFAX server handy.&lt;br /&gt;
Or, skip the package entirely if you don't plan on sending FAX invoices.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --make-no-test Fax::Hylafax::Client&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Fax-Hylafax-Client-1.02-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== RT Prereqs ====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Perl Module*||*Package*||*Version*||*Repo*&lt;br /&gt;
|-&lt;br /&gt;
|Apache::Session||perl-Apache-Session||1.81-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML-Format||perl-HTML-Format||2.04-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Class::ReturnValue||perl-Class-ReturnValue||0.53-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBIx::SearchBuilder||perl-DBIx-SearchBuilder||1.43-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Log::Dispatch||perl-Log-Dispatch||2.11-1.2.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Locale::Maketext::Lexicon||perl-Locale-Maketext-Lexicon||0.62-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Locale::Maketext::Fuzzy||perl-Locale-Maketext-Fuzzy||0.02-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Wrapper||perl-Text-Wrapper||1.000-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Time-modules||perl-Time-modules||2003.1126-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Autoformat||perl-Text-Autoformat||1.13-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Quoted||perl-Text-Quoted||1.8-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Regexp::Common||perl-Regexp-Common||2.120-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Scrubber||perl-HTML-Scrubber||0.08-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Tree::Simple||perl-Tree-Simple||1.17-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML::TreeBuilder||perl-HTML-Tree||3.23-1.el4.rf||dries&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Apache-Session perl-HTML-Format perl-Class-ReturnValue&lt;br /&gt;
# yum install perl-Locale-Maketext-Lexicon perl-Locale-Maketext-Fuzzy&lt;br /&gt;
# yum install perl-Text-Wrapper perl-Time-modules&lt;br /&gt;
# yum install perl-Text-Autoformat perl-Text-Quoted perl-Regexp-Common&lt;br /&gt;
# yum install perl-HTML-Scrubber perl-Tree-Simple perl-HTML-Tree&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Log::Dispatch&lt;br /&gt;
&lt;br /&gt;
Use the SRPM from Fedora Core 5.  They have the correct and properly patched version that supports mod_perl 2.&lt;br /&gt;
&lt;br /&gt;
But first, a couple of prereqs.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-File-Find-Rule perl-IO-String&lt;br /&gt;
# yum install perl-MIME-Lite perl-Mail-Sender perl-Mail-Sendmail&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now build and install Log::Dispatch itself. (There seems to be another rpm too, but it need Apache::Log)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# wget -O /usr/src/redhat/SRPMS/perl-Log-Dispatch-2.15-2.fc5.src.rpm http://download.fedora.redhat.com/pub/fedora/linux/extras/5/SRPMS/perl-Log-Dispatch-2.15-2.fc5.src.rpm&lt;br /&gt;
&lt;br /&gt;
# rpmbuild --rebuild /usr/src/redhat/SRPMS/perl-Log-Dispatch-2.15-2.src.rpm&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Log-Dispatch-2.15-2.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* DBIx::SearchBuilder&lt;br /&gt;
&lt;br /&gt;
DBIx::searchBuilder is a little painful to install because it requires DBD::Oracle.  You can just run &amp;quot;yum install perl-DBIx-SearchBuilder&amp;quot; if you want to go through the trouble of building and installing DBD::Oracle first.  Again, that can be rather painful and isn't within the scope of this guide.&lt;br /&gt;
&lt;br /&gt;
The alternative below is to force install the RPM for DBIx::SearchBuilder since we're not going to use Oracle anyway.  You have to exclude it from future updates in yum otherwise you'll get dep failures everytime you do a &amp;quot;yum upgrade&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
If you're not going to use RT, just skip DBIx::SearchBuilder altogether.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Want perl-Clone perl-Cache-Simple-TimedExpiry&lt;br /&gt;
# yum install perl-DBD-SQLite perl-capitalization perl-Class-Accessor&lt;br /&gt;
&lt;br /&gt;
# rpm -ivh --nodeps http://apt.sw.be/redhat/el4/en/${BASEARCH}/dag/RPMS/perl-DBIx-SearchBuilder-1.43-1.el4.rf.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
# echo &amp;quot;exclude=perl-DBIx-SearchBuilder&amp;quot; &amp;gt;&amp;gt; /etc/yum.conf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== System configuration ==&lt;br /&gt;
&lt;br /&gt;
This is just following the directions with CentOS-specific commands.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# groupadd freeside&lt;br /&gt;
# useradd -g freeside freeside&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With CentOS 4.4, postgresql wouldn't start if SELinux was enabled.  We call &amp;quot;setenforce 0&amp;quot; here to temporarily disable it.  Some claim that it only needs to be disabled the first time postgresql is started.&lt;br /&gt;
&lt;br /&gt;
Enable postgresql at startup, disable selinux temporarily, and start postgresql.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# chkconfig postgresql on&lt;br /&gt;
# setenfore 0&lt;br /&gt;
# service postgresql start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the freeside datbase user for postgresql.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# su -c &amp;quot;createuser -P freeside&amp;quot; - postgres&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Installing Freeside ==&lt;br /&gt;
&lt;br /&gt;
su to the freeside user, extract a copy of the freeside tarball or check out the code from CVS into the freeside user's home directory.  You should have the freeside top-level Makefile in /home/freeside/freeside/Makefile or /home/freeside/freeside-1.7.0/Makefile at this point.  1.7.0 wasn't officially released at the time of writing, so we're using a version checked-out from CVS.&lt;br /&gt;
&lt;br /&gt;
Edit freeside's top-level Makefile with your configuration.  Here are some examples...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
FREESIDE_CONF = /etc/freeside&lt;br /&gt;
FREESIDE_LOG = /var/log/freeside&lt;br /&gt;
FREESIDE_LOCK = /var/lib/freeside&lt;br /&gt;
FREESIDE_CACHE = /var/lib/freeside&lt;br /&gt;
FREESIDE_EXPORT = /var/lib/freeside&lt;br /&gt;
&lt;br /&gt;
APACHE_VERSION = 2&lt;br /&gt;
FREESIDE_DOCUMENT_ROOT = /var/www/freeside/html&lt;br /&gt;
&lt;br /&gt;
INIT_FILE = /etc/init.d/freeside&lt;br /&gt;
INIT_INSTALL = /sbin/chkconfig freeside on&lt;br /&gt;
&lt;br /&gt;
HTTPD_RESTART = /etc/init.d/httpd restart&lt;br /&gt;
APACHE_CONF = /etc/httpd-freeside/conf.d&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As the freeside user, create the database and make the perl modules.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ createdb -E sql_ascii freeside&lt;br /&gt;
&lt;br /&gt;
$ make perl-modules&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As root, install the perl modules and create the initial config.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-perl-modules&lt;br /&gt;
&lt;br /&gt;
# mkdir -m 770 /var/lib/freeside&lt;br /&gt;
# chown -R freeside:root /var/lib/freeside/&lt;br /&gt;
# make create-config&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Apache Configuration ==&lt;br /&gt;
&lt;br /&gt;
=== Creating Freeside's Apache Instance ===&lt;br /&gt;
&lt;br /&gt;
The default Apache init script for CentOS doesn't make it very easy to setup multiple instances of Apache.  A few small modifications take care of that problem.&lt;br /&gt;
&lt;br /&gt;
Start by making a copy of the init script, as well as download the patch and apply it to your httpd-freeside init script.  You can make a symlink if you'd like to eventually setup additional Apache instances.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ln -s /etc/init.d/httpd /etc/init.d/httpd-freeside&lt;br /&gt;
&lt;br /&gt;
# cd /etc/init.d/&lt;br /&gt;
# wget -O /tmp/httpd-freeside.patch http://users.fire2wire.com/~khoff/freeside/1.7.0/httpd-freeside.patch&lt;br /&gt;
# patch &amp;lt; /tmp/httpd-freeside.patch&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Make a copy of the Apache server root.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cp -av /etc/httpd /etc/httpd-freeside&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can remove any extra conf files from /etc/httpd-freeside/conf.d (webdav, php, etc.) if you're not using them.  They'll only take up more memory and potentially make freeside slower.&lt;br /&gt;
&lt;br /&gt;
=== /etc/httpd-freeside/conf/httpd.conf ===&lt;br /&gt;
&lt;br /&gt;
Change the following Apache configuration directives in /etc/httpd-freeside/conf/httpd.conf to match our previous changes.&lt;br /&gt;
&lt;br /&gt;
* ServerRoot &amp;quot;/etc/httpd-freeside&amp;quot;&lt;br /&gt;
* PidFile run/httpd-freeside.pid&lt;br /&gt;
&lt;br /&gt;
We're changing the listening port in case you're using the default Apache configuration (and port) for something else. This can be remedied by binding to a specific IP address as well (eg. 192.168.0.2:80).&lt;br /&gt;
&lt;br /&gt;
* Listen 8080&lt;br /&gt;
&lt;br /&gt;
Freeside's instance of Apache needs to run as the freeside user and group.&lt;br /&gt;
&lt;br /&gt;
* User freeside&lt;br /&gt;
* Group freeside&lt;br /&gt;
&lt;br /&gt;
* DocumentRoot &amp;quot;/var/www/freeside/html&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* &amp;amp;lt;Directory &amp;quot;/var/www/freeside/html&amp;quot;&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
* ErrorLog logs/freeside_error_log&lt;br /&gt;
* CustomLog logs/freeside_access_log combined&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Install Docs and Freeside's Apache Includes ===&lt;br /&gt;
&lt;br /&gt;
Inside the freeside source directory, run &amp;quot;make install-docs&amp;quot; and &amp;quot;make install-apache&amp;quot; as root.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-docs&lt;br /&gt;
# make install-apache&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Edit the config file that was just created (/etc/httpd-freeside/conf.d/freeside-base2.conf) by &amp;quot;make install-apache&amp;quot; and change the AuthUserFile directive to match our new path.&lt;br /&gt;
&lt;br /&gt;
* AuthUserFile /etc/freeside/htpasswd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Populating the Database ==&lt;br /&gt;
&lt;br /&gt;
Populate the freeside database with the initial data, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ freeside-setup -d example.com&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the freeside system users, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ freeside-adduser -g 1 fs_queue&lt;br /&gt;
$ freeside-adduser -g 1 fs_daily&lt;br /&gt;
$ freeside-adduser -g 1 fs_selfservice&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create whatever other freeside users you want, again, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
freeside-adduser -g 1 username&lt;br /&gt;
htpasswd /etc/freeside/htpasswd username&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Repeat the last two commands as many times as you want for your internal staff's freeside accounts.&lt;br /&gt;
&lt;br /&gt;
== Startup Configuration ==&lt;br /&gt;
&lt;br /&gt;
We just need to make sure that our new instance of Apache and the freeside queue daemon start when we boot.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-init&lt;br /&gt;
&lt;br /&gt;
# chkconfig freeside on&lt;br /&gt;
# chkconfig httpd-freeside on&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And last but not least...start freeside's Apache instance.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# service httpd-freeside start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hopefully, Apache should start without errors.  If you do get errors, check /var/log/httpd/freeside_error_log.&lt;br /&gt;
&lt;br /&gt;
Assuming Apache started correctly, you should now be able to access freeside via http://&amp;amp;lt;Your server's FQDN or IP&amp;amp;gt;:8080/.  You can login using the username and password you set earlier with htpasswd.&lt;br /&gt;
&lt;br /&gt;
From here, consult the standard freeside install documentation in the wiki on how to proceed with initial configuration.  Good luck!&lt;br /&gt;
&lt;br /&gt;
== Problems ==&lt;br /&gt;
&lt;br /&gt;
There might be some formatting issues as this was converted from TWiki to MediaWiki markup.  If the syntax of a command doesn't look correct or doesn't make sense, it probably didn't get escaped correctly, or your web browser gobbled up some angle brackets, or both!&lt;/div&gt;</summary>
		<author><name>Tmcarter</name></author>	</entry>

	<entry>
		<id>https://secure.freeside.biz/mediawiki/index.php?title=Freeside:1.7:Documentation:InstallingOnCentOS4&amp;diff=2207</id>
		<title>Freeside:1.7:Documentation:InstallingOnCentOS4</title>
		<link rel="alternate" type="text/html" href="https://secure.freeside.biz/mediawiki/index.php?title=Freeside:1.7:Documentation:InstallingOnCentOS4&amp;diff=2207"/>
				<updated>2007-06-04T12:35:38Z</updated>
		
		<summary type="html">&lt;p&gt;Tmcarter: /* Perl Packages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Installing Freeside 1.7.x on CentOS 4.4 =&lt;br /&gt;
&lt;br /&gt;
This is a (hopefully) step-by-step guide for doing a basic installation of Freeside on CentOS 4.4 using RPMs whenever possible.  It would probably be easier to use CPAN directly in some cases, but that wouldn't be very fun now would it?&lt;br /&gt;
&lt;br /&gt;
== Software Installation ==&lt;br /&gt;
&lt;br /&gt;
Run the correct command below depending on your architecture.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# export BASEARCH=i386&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
...or...&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# export BASEARCH=x86_64&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Binary Packages ===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Package*||*Repo*||*Version*&lt;br /&gt;
|-&lt;br /&gt;
|httpd||base||2.0.52-28.ent.centos4&lt;br /&gt;
|-&lt;br /&gt;
|postgresql-server||update||7.4.16-1.RHEL4.1&lt;br /&gt;
|-&lt;br /&gt;
|tetex||base||2.0.2-22.EL4.7&lt;br /&gt;
|-&lt;br /&gt;
|ghostscript||base||7.07-33&lt;br /&gt;
|-&lt;br /&gt;
|perl||centosplus||4:5.8.8-4.el4s1&lt;br /&gt;
|-&lt;br /&gt;
|gcc||base||3.4.6-8&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install httpd postgresql-server tetex ghostscript.$BASEARCH&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Upgrade to perl 5.8.8 to get CGI &amp;gt;= 3.08.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum --enablerepo=centosplus upgrade perl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next install the gcc complier&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install gcc&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Perl Packages ===&lt;br /&gt;
&lt;br /&gt;
Setup 3rd party repos for most of the extra perl modules.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# rpm -ivh http://dag.wieers.com/rpm/packages/rpmforge-release/rpmforge-release-0.3.6-1.el4.rf.i386.rpm&lt;br /&gt;
# rpm --import http://dag.wieers.com/packages/RPM-GPG-KEY.dag.txt&lt;br /&gt;
&lt;br /&gt;
# cat &amp;amp;lt;&amp;amp;lt;END&amp;amp;gt;/etc/yum.repos.d/dries.repo&lt;br /&gt;
[dries]&lt;br /&gt;
name=Extra Fedora rpms dries - \$releasever - \$basearch&lt;br /&gt;
baseurl=http://ftp.belnet.be/packages/dries.ulyssis.org/redhat/el\$releasever/en/\$basearch/dries/RPMS&lt;br /&gt;
END&lt;br /&gt;
# rpm --import http://dries.ulyssis.org/rpm/RPM-GPG-KEY.dries.txt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install the cpan2rpm tool so we can build RPMs from CPAN packages.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# rpm --import http://perl.arix.com/cpan2rpm/gpg.pub.asc&lt;br /&gt;
# yum install rpm-build perl-Module-Build&lt;br /&gt;
# rpm -ivh http://superb-east.dl.sourceforge.net/sourceforge/cpan2rpm/cpan2rpm-2.027-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== mod_perl2 ====&lt;br /&gt;
&lt;br /&gt;
Grab mod_perl 2.03 from the centosplus repo.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum --enablerepo=centosplus install mod_perl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Freeside Prereqs ====&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Perl Module*||*Package*||*Version*||*Repo*&lt;br /&gt;
|-&lt;br /&gt;
|libnet||libnet||1.1.2.1-2.rf||extras&lt;br /&gt;
|-&lt;br /&gt;
|libwww-perl||perl-libwww-perl.noarch||5.79-5||base&lt;br /&gt;
|-&lt;br /&gt;
|URI||perl-URI.noarch||1.30-4||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Tagset||perl-HTML-Tagset.noarch||3.03-30||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Parser||perl-HTML-Parser||3.35-6||base&lt;br /&gt;
|-&lt;br /&gt;
|DBI||perl-DBI||1.40-8||base&lt;br /&gt;
|-&lt;br /&gt;
|DBD::MySQL||perl-DBD-MySQL||2.9004-3.1||base&lt;br /&gt;
|-&lt;br /&gt;
|MailTools||perl-MailTools.noarch||1.74-1.c4||extras&lt;br /&gt;
|-&lt;br /&gt;
|TimeDate||perl-TimeDate.noarch||1.16-1.c4||extras&lt;br /&gt;
|-&lt;br /&gt;
|Date::Manip||perl-DateManip.noarch||5.42a-3||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Mason||perl-HTML-Mason||1.3200-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Text::Template||perl-Text-Template||1.44-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DateTime||perl-DateTime||0.2901-1.2.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Chart||perl-Chart||2.4.1-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Cache::Cache||perl-Cache-Cache||1.05-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|NetAddr::IP||perl-NetAddr-IP||4.004-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|String::Approx||perl-String-Approx||3.26-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Locale::SubCountry||perl-Locale-SubCountry||1.38-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Term::ReadKey||perl-Term-ReadKey||2.30-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DateTime::Format::Strptime||perl-DateTime-Format-Strptime||1.0700-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Net::Whois::Raw||perl-Net-Whois-Raw||1.20-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBIx::DBSchema||perl-DBIx-DBSchema||0.31-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Tie::IxHash||perl-Tie-IxHash||1.21-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::PasswdMD5||perl-Crypt-PasswdMD5||1.3-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|File::CounterFile||perl-File-CounterFile||1.04-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|IPC::Run3||perl-IPC-Run3||0.036-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Net::SSH||perl-Net-SSH||0.08-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|String::ShellQuote||perl-String-ShellQuote||1.03-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|JSON||perl-JSON||1.07-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Data::Table||perl-Data-Table||1.50-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Lingua::EN::NameParse||perl-Lingua-EN-NameParse||1.22-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Lingua::EN::Inflect||perl-Lingua-EN-Inflect||1.89-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Apache::DBI||perl-Apache-DBI||0.9901-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|IO::Scalar||perl-IO-stringy||2.110-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::CSV_XS||perl-Text-CSV_XS||0.23-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Spreadsheet::WriteExcel||perl-Spreadsheet-WriteExcel||2.17-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|MIME-tools||perl-MIME-tools||5.420-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Date::Manip||perl-DateManip||5.42a-3||base&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::DES||perl-Crypt-DES||2.05-3.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Blowfish||perl-Crypt-Blowfish||2.10-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Digest::MD4||perl-Digest-MD4||1.5-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Rijndael||perl-Crypt-Rijndael||0.05-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|ExtUtils::CBuilder||perl-ExtUtils-CBuilder||0.18-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBD::Pg||perl-DBD-Pg||1.49-1.el4s1||centosplus&lt;br /&gt;
|-&lt;br /&gt;
|Locale-Codes|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Frontier::RPC2|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Business::CreditCard|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Time::Duration|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Widgets::SelectLayers|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Color::Scheme|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Params::Classify||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Scalar::Number||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Integer||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Float||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Module::Runtime||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Authen::DecHpwd||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Authen::Passphrase||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Entropy::Algorithms||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::MySQL||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Eksblowfish||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::UnixCrypt_XS||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Fax::Hylafax::Client||||cpan2rpm&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install libnet perl-libwww-perl perl-URI perl-HTML-Tagset&lt;br /&gt;
# yum install perl-HTML-Parser &lt;br /&gt;
# yum install perl-MailTools perl-TimeDate&lt;br /&gt;
&lt;br /&gt;
# yum install perl-HTML-Mason perl-Text-Template perl-DateTime perl-Chart&lt;br /&gt;
# yum install perl-Cache-Cache perl-NetAddr-IP perl-String-Approx&lt;br /&gt;
# yum install perl-Locale-SubCountry perl-Term-ReadKey&lt;br /&gt;
# yum install perl-DateTime-Format-Strptime perl-Net-Whois-Raw&lt;br /&gt;
# yum install perl-Tie-IxHash perl-Crypt-PasswdMD5&lt;br /&gt;
# yum install perl-File-CounterFile perl-IPC-Run3 perl-Net-SSH&lt;br /&gt;
# yum install perl-String-ShellQuote perl-JSON perl-Data-Table&lt;br /&gt;
# yum install perl-Lingua-EN-NameParse perl-Lingua-EN-Inflect&lt;br /&gt;
# yum install perl-IO-stringy perl-Text-CSV_XS perl-Spreadsheet-WriteExcel&lt;br /&gt;
# yum install perl-MIME-tools perl-DateManip&lt;br /&gt;
# yum install perl-DBI perl-DBD-MySQL perl-Apache-DBI &lt;br /&gt;
# yum install --enablerepo=centosplus perl-DBD-Pg&lt;br /&gt;
# yum install perl-Crypt-DES perl-Crypt-Blowfish perl-Digest-MD4&lt;br /&gt;
# yum install perl-Crypt-Rijndael perl-ExtUtils-CBuilder&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can install these using cpan, or follow the directions here using cpan2rpm.&lt;br /&gt;
&lt;br /&gt;
* DBIx::DBSchema&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-DBIx-DBSchema&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Frontier::RPC2&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-XML-Parser&lt;br /&gt;
# cpan2rpm --author='Ken MacLeod &amp;amp;lt;ken@bitsko.slc.ut.us&amp;amp;gt;' --version='0.07b4' Frontier-RPC&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Frontier-RPC-0.07b4-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Business::CreditCard&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Business::CreditCard&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Business-CreditCard-0.30-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Time::Duration&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Test-Pod perl-Test-Pod-Coverage&lt;br /&gt;
# cpan2rpm Time::Duration&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Time-Duration-1.04-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* HTML::Widgets::SelectLayers&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm http://search.cpan.org/CPAN/authors/id/I/IV/IVAN/HTML-Widgets-SelectLayers-0.07.tar.gz&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-HTML-Widgets-SelectLayers-0.07-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Color::Scheme&lt;br /&gt;
&lt;br /&gt;
Ran into much brokenness when trying to build Test-Simple-0.67.  Just skip the dep checks and test phase and hope.  I mean, come on, it's Color::Scheme for crying out loud!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Test-Differences&lt;br /&gt;
# cpan2rpm --make-no-test --no-depchk Color::Scheme&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Color-Scheme-1.02-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Params::Classify&lt;br /&gt;
&lt;br /&gt;
Install some deps first...&lt;br /&gt;
&lt;br /&gt;
** Scalar::Number&lt;br /&gt;
&lt;br /&gt;
*** Data::Integer&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Data::Integer&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Integer-0.001-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*** Data::Float&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Data::Float&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Float-0.005-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Scalar::Number&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Scalar-Number-0.001-1.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
# cpan2rpm Params::Classify&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Params-Classify-0.002-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Module::Runtime&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Module::Runtime&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Module-Runtime-0.003-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Authen::DecHpwd&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Authen::DecHpwd&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Authen-DecHpwd-2.001-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Authen::Passphrase&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Authen::Passphrase&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Authen-Passphrase-0.005-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Data::Entropy::Algorithms&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --make-no-test Data::Entropy&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Entropy-0.003-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::MySQL&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --version='0.04' --author='IKEBE Tomohiro &amp;lt;ikebe@shebang.jp&amp;gt;' Crypt::MySQL&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-MySQL-0.04-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::Eksblowfish&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Crypt::Eksblowfish&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-Eksblowfish-0.001-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::UnixCrypt_XS&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Crypt::UnixCrypt_XS&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-UnixCrypt_XS-0.05-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Fax::Hylafax::Client (Optional)&lt;br /&gt;
&lt;br /&gt;
Skip the tests here as well, unless you happen to have a properly configured HylaFAX server handy.&lt;br /&gt;
Or, skip the package entirely if you don't plan on sending FAX invoices.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --make-no-test Fax::Hylafax::Client&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Fax-Hylafax-Client-1.02-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== RT Prereqs ====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Perl Module*||*Package*||*Version*||*Repo*&lt;br /&gt;
|-&lt;br /&gt;
|Apache::Session||perl-Apache-Session||1.81-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML-Format||perl-HTML-Format||2.04-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Class::ReturnValue||perl-Class-ReturnValue||0.53-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBIx::SearchBuilder||perl-DBIx-SearchBuilder||1.43-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Log::Dispatch||perl-Log-Dispatch||2.11-1.2.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Locale::Maketext::Lexicon||perl-Locale-Maketext-Lexicon||0.62-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Locale::Maketext::Fuzzy||perl-Locale-Maketext-Fuzzy||0.02-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Wrapper||perl-Text-Wrapper||1.000-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Time-modules||perl-Time-modules||2003.1126-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Autoformat||perl-Text-Autoformat||1.13-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Quoted||perl-Text-Quoted||1.8-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Regexp::Common||perl-Regexp-Common||2.120-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Scrubber||perl-HTML-Scrubber||0.08-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Tree::Simple||perl-Tree-Simple||1.17-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML::TreeBuilder||perl-HTML-Tree||3.23-1.el4.rf||dries&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Apache-Session perl-HTML-Format perl-Class-ReturnValue&lt;br /&gt;
# yum install perl-Locale-Maketext-Lexicon perl-Locale-Maketext-Fuzzy&lt;br /&gt;
# yum install perl-Text-Wrapper perl-Time-modules&lt;br /&gt;
# yum install perl-Text-Autoformat perl-Text-Quoted perl-Regexp-Common&lt;br /&gt;
# yum install perl-HTML-Scrubber perl-Tree-Simple perl-HTML-Tree&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Log::Dispatch&lt;br /&gt;
&lt;br /&gt;
Use the SRPM from Fedora Core 5.  They have the correct and properly patched version that supports mod_perl 2.&lt;br /&gt;
&lt;br /&gt;
But first, a couple of prereqs.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-File-Find-Rule perl-IO-String&lt;br /&gt;
# yum install perl-MIME-Lite perl-Mail-Sender perl-Mail-Sendmail&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now build and install Log::Dispatch itself. (There seems to be another rpm too, but it need Apache::Log)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# wget -O /usr/src/redhat/SRPMS/perl-Log-Dispatch-2.15-2.fc5.src.rpm http://download.fedora.redhat.com/pub/fedora/linux/extras/5/SRPMS/perl-Log-Dispatch-2.15-2.fc5.src.rpm&lt;br /&gt;
&lt;br /&gt;
# rpmbuild --rebuild /usr/src/redhat/SRPMS/perl-Log-Dispatch-2.15-2.src.rpm&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Log-Dispatch-2.15-2.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* DBIx::SearchBuilder&lt;br /&gt;
&lt;br /&gt;
DBIx::searchBuilder is a little painful to install because it requires DBD::Oracle.  You can just run &amp;quot;yum install perl-DBIx-SearchBuilder&amp;quot; if you want to go through the trouble of building and installing DBD::Oracle first.  Again, that can be rather painful and isn't within the scope of this guide.&lt;br /&gt;
&lt;br /&gt;
The alternative below is to force install the RPM for DBIx::SearchBuilder since we're not going to use Oracle anyway.  You have to exclude it from future updates in yum otherwise you'll get dep failures everytime you do a &amp;quot;yum upgrade&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
If you're not going to use RT, just skip DBIx::SearchBuilder altogether.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Want perl-Clone perl-Cache-Simple-TimedExpiry&lt;br /&gt;
# yum install perl-DBD-SQLite perl-capitalization perl-Class-Accessor&lt;br /&gt;
&lt;br /&gt;
# rpm -ivh --nodeps http://apt.sw.be/redhat/el4/en/${BASEARCH}/dag/RPMS/perl-DBIx-SearchBuilder-1.43-1.el4.rf.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
# echo &amp;quot;exclude=perl-DBIx-SearchBuilder&amp;quot; &amp;gt;&amp;gt; /etc/yum.conf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== System configuration ==&lt;br /&gt;
&lt;br /&gt;
This is just following the directions with CentOS-specific commands.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# groupadd freeside&lt;br /&gt;
# useradd -g freeside freeside&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With CentOS 4.4, postgresql wouldn't start if SELinux was enabled.  We call &amp;quot;setenforce 0&amp;quot; here to temporarily disable it.  Some claim that it only needs to be disabled the first time postgresql is started.&lt;br /&gt;
&lt;br /&gt;
Enable postgresql at startup, disable selinux temporarily, and start postgresql.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# chkconfig postgresql on&lt;br /&gt;
# setenfore 0&lt;br /&gt;
# service postgresql start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the freeside datbase user for postgresql.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# su -c &amp;quot;createuser -P freeside&amp;quot; - postgres&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Installing Freeside ==&lt;br /&gt;
&lt;br /&gt;
su to the freeside user, extract a copy of the freeside tarball or check out the code from CVS into the freeside user's home directory.  You should have the freeside top-level Makefile in /home/freeside/freeside/Makefile or /home/freeside/freeside-1.7.0/Makefile at this point.  1.7.0 wasn't officially released at the time of writing, so we're using a version checked-out from CVS.&lt;br /&gt;
&lt;br /&gt;
Edit freeside's top-level Makefile with your configuration.  Here are some examples...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
FREESIDE_CONF = /etc/freeside&lt;br /&gt;
FREESIDE_LOG = /var/log/freeside&lt;br /&gt;
FREESIDE_LOCK = /var/lib/freeside&lt;br /&gt;
FREESIDE_CACHE = /var/lib/freeside&lt;br /&gt;
FREESIDE_EXPORT = /var/lib/freeside&lt;br /&gt;
&lt;br /&gt;
APACHE_VERSION = 2&lt;br /&gt;
FREESIDE_DOCUMENT_ROOT = /var/www/freeside/html&lt;br /&gt;
&lt;br /&gt;
INIT_FILE = /etc/init.d/freeside&lt;br /&gt;
INIT_INSTALL = /sbin/chkconfig freeside on&lt;br /&gt;
&lt;br /&gt;
HTTPD_RESTART = /etc/init.d/httpd restart&lt;br /&gt;
APACHE_CONF = /etc/httpd-freeside/conf.d&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As the freeside user, create the database and make the perl modules.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ createdb -E sql_ascii freeside&lt;br /&gt;
&lt;br /&gt;
$ make perl-modules&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As root, install the perl modules and create the initial config.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-perl-modules&lt;br /&gt;
&lt;br /&gt;
# mkdir -m 770 /var/lib/freeside&lt;br /&gt;
# chown -R freeside:root /var/lib/freeside/&lt;br /&gt;
# make create-config&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Apache Configuration ==&lt;br /&gt;
&lt;br /&gt;
=== Creating Freeside's Apache Instance ===&lt;br /&gt;
&lt;br /&gt;
The default Apache init script for CentOS doesn't make it very easy to setup multiple instances of Apache.  A few small modifications take care of that problem.&lt;br /&gt;
&lt;br /&gt;
Start by making a copy of the init script, as well as download the patch and apply it to your httpd-freeside init script.  You can make a symlink if you'd like to eventually setup additional Apache instances.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ln -s /etc/init.d/httpd /etc/init.d/httpd-freeside&lt;br /&gt;
&lt;br /&gt;
# cd /etc/init.d/&lt;br /&gt;
# wget -O /tmp/httpd-freeside.patch http://users.fire2wire.com/~khoff/freeside/1.7.0/httpd-freeside.patch&lt;br /&gt;
# patch &amp;lt; /tmp/httpd-freeside.patch&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Make a copy of the Apache server root.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cp -av /etc/httpd /etc/httpd-freeside&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can remove any extra conf files from /etc/httpd-freeside/conf.d (webdav, php, etc.) if you're not using them.  They'll only take up more memory and potentially make freeside slower.&lt;br /&gt;
&lt;br /&gt;
=== /etc/httpd-freeside/conf/httpd.conf ===&lt;br /&gt;
&lt;br /&gt;
Change the following Apache configuration directives in /etc/httpd-freeside/conf/httpd.conf to match our previous changes.&lt;br /&gt;
&lt;br /&gt;
* ServerRoot &amp;quot;/etc/httpd-freeside&amp;quot;&lt;br /&gt;
* PidFile run/httpd-freeside.pid&lt;br /&gt;
&lt;br /&gt;
We're changing the listening port in case you're using the default Apache configuration (and port) for something else. This can be remedied by binding to a specific IP address as well (eg. 192.168.0.2:80).&lt;br /&gt;
&lt;br /&gt;
* Listen 8080&lt;br /&gt;
&lt;br /&gt;
Freeside's instance of Apache needs to run as the freeside user and group.&lt;br /&gt;
&lt;br /&gt;
* User freeside&lt;br /&gt;
* Group freeside&lt;br /&gt;
&lt;br /&gt;
* DocumentRoot &amp;quot;/var/www/freeside/html&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* &amp;amp;lt;Directory &amp;quot;/var/www/freeside/html&amp;quot;&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
* ErrorLog logs/freeside_error_log&lt;br /&gt;
* CustomLog logs/freeside_access_log combined&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Install Docs and Freeside's Apache Includes ===&lt;br /&gt;
&lt;br /&gt;
Inside the freeside source directory, run &amp;quot;make install-docs&amp;quot; and &amp;quot;make install-apache&amp;quot; as root.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-docs&lt;br /&gt;
# make install-apache&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Edit the config file that was just created (/etc/httpd-freeside/conf.d/freeside-base2.conf) by &amp;quot;make install-apache&amp;quot; and change the AuthUserFile directive to match our new path.&lt;br /&gt;
&lt;br /&gt;
* AuthUserFile /etc/freeside/htpasswd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Populating the Database ==&lt;br /&gt;
&lt;br /&gt;
Populate the freeside database with the initial data, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ freeside-setup -d example.com&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the freeside system users, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ freeside-adduser -g 1 fs_queue&lt;br /&gt;
$ freeside-adduser -g 1 fs_daily&lt;br /&gt;
$ freeside-adduser -g 1 fs_selfservice&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create whatever other freeside users you want, again, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
freeside-adduser -g 1 username&lt;br /&gt;
htpasswd /etc/freeside/htpasswd username&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Repeat the last two commands as many times as you want for your internal staff's freeside accounts.&lt;br /&gt;
&lt;br /&gt;
== Startup Configuration ==&lt;br /&gt;
&lt;br /&gt;
We just need to make sure that our new instance of Apache and the freeside queue daemon start when we boot.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-init&lt;br /&gt;
&lt;br /&gt;
# chkconfig freeside on&lt;br /&gt;
# chkconfig httpd-freeside on&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And last but not least...start freeside's Apache instance.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# service httpd-freeside start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hopefully, Apache should start without errors.  If you do get errors, check /var/log/httpd/freeside_error_log.&lt;br /&gt;
&lt;br /&gt;
Assuming Apache started correctly, you should now be able to access freeside via http://&amp;amp;lt;Your server's FQDN or IP&amp;amp;gt;:8080/.  You can login using the username and password you set earlier with htpasswd.&lt;br /&gt;
&lt;br /&gt;
From here, consult the standard freeside install documentation in the wiki on how to proceed with initial configuration.  Good luck!&lt;br /&gt;
&lt;br /&gt;
== Problems ==&lt;br /&gt;
&lt;br /&gt;
There might be some formatting issues as this was converted from TWiki to MediaWiki markup.  If the syntax of a command doesn't look correct or doesn't make sense, it probably didn't get escaped correctly, or your web browser gobbled up some angle brackets, or both!&lt;/div&gt;</summary>
		<author><name>Tmcarter</name></author>	</entry>

	<entry>
		<id>https://secure.freeside.biz/mediawiki/index.php?title=Freeside:1.7:Documentation:InstallingOnCentOS4&amp;diff=2206</id>
		<title>Freeside:1.7:Documentation:InstallingOnCentOS4</title>
		<link rel="alternate" type="text/html" href="https://secure.freeside.biz/mediawiki/index.php?title=Freeside:1.7:Documentation:InstallingOnCentOS4&amp;diff=2206"/>
				<updated>2007-06-04T12:25:17Z</updated>
		
		<summary type="html">&lt;p&gt;Tmcarter: /* Binary Packages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Installing Freeside 1.7.x on CentOS 4.4 =&lt;br /&gt;
&lt;br /&gt;
This is a (hopefully) step-by-step guide for doing a basic installation of Freeside on CentOS 4.4 using RPMs whenever possible.  It would probably be easier to use CPAN directly in some cases, but that wouldn't be very fun now would it?&lt;br /&gt;
&lt;br /&gt;
== Software Installation ==&lt;br /&gt;
&lt;br /&gt;
Run the correct command below depending on your architecture.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# export BASEARCH=i386&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
...or...&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# export BASEARCH=x86_64&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Binary Packages ===&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Package*||*Repo*||*Version*&lt;br /&gt;
|-&lt;br /&gt;
|httpd||base||2.0.52-28.ent.centos4&lt;br /&gt;
|-&lt;br /&gt;
|postgresql-server||update||7.4.16-1.RHEL4.1&lt;br /&gt;
|-&lt;br /&gt;
|tetex||base||2.0.2-22.EL4.7&lt;br /&gt;
|-&lt;br /&gt;
|ghostscript||base||7.07-33&lt;br /&gt;
|-&lt;br /&gt;
|perl||centosplus||4:5.8.8-4.el4s1&lt;br /&gt;
|-&lt;br /&gt;
|gcc||base||3.4.6-8&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install httpd postgresql-server tetex ghostscript.$BASEARCH&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Upgrade to perl 5.8.8 to get CGI &amp;gt;= 3.08.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum --enablerepo=centosplus upgrade perl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next install the gcc complier&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install gcc&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Perl Packages ===&lt;br /&gt;
&lt;br /&gt;
Setup 3rd party repos for most of the extra perl modules.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# rpm -ivh http://dag.wieers.com/packages/rpmforge-release/rpmforge-release-0.3.6-1.el4.rf.$BASEARCH.rpm&lt;br /&gt;
# rpm --import http://dag.wieers.com/packages/RPM-GPG-KEY.dag.txt&lt;br /&gt;
&lt;br /&gt;
# cat &amp;amp;lt;&amp;amp;lt;END&amp;amp;gt;/etc/yum.repos.d/dries.repo&lt;br /&gt;
[dries]&lt;br /&gt;
name=Extra Fedora rpms dries - \$releasever - \$basearch&lt;br /&gt;
baseurl=http://ftp.belnet.be/packages/dries.ulyssis.org/redhat/el\$releasever/en/\$basearch/dries/RPMS&lt;br /&gt;
END&lt;br /&gt;
# rpm --import http://dries.ulyssis.org/rpm/RPM-GPG-KEY.dries.txt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install the cpan2rpm tool so we can build RPMs from CPAN packages.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# rpm --import http://perl.arix.com/cpan2rpm/gpg.pub.asc&lt;br /&gt;
# yum install rpm-build perl-Module-Build&lt;br /&gt;
# rpm -ivh http://superb-east.dl.sourceforge.net/sourceforge/cpan2rpm/cpan2rpm-2.027-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== mod_perl2 ====&lt;br /&gt;
&lt;br /&gt;
Grab mod_perl 2.03 from the centosplus repo.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum --enablerepo=centosplus install mod_perl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Freeside Prereqs ====&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Perl Module*||*Package*||*Version*||*Repo*&lt;br /&gt;
|-&lt;br /&gt;
|libnet||libnet||1.1.2.1-2.rf||extras&lt;br /&gt;
|-&lt;br /&gt;
|libwww-perl||perl-libwww-perl.noarch||5.79-5||base&lt;br /&gt;
|-&lt;br /&gt;
|URI||perl-URI.noarch||1.30-4||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Tagset||perl-HTML-Tagset.noarch||3.03-30||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Parser||perl-HTML-Parser||3.35-6||base&lt;br /&gt;
|-&lt;br /&gt;
|DBI||perl-DBI||1.40-8||base&lt;br /&gt;
|-&lt;br /&gt;
|DBD::MySQL||perl-DBD-MySQL||2.9004-3.1||base&lt;br /&gt;
|-&lt;br /&gt;
|MailTools||perl-MailTools.noarch||1.74-1.c4||extras&lt;br /&gt;
|-&lt;br /&gt;
|TimeDate||perl-TimeDate.noarch||1.16-1.c4||extras&lt;br /&gt;
|-&lt;br /&gt;
|Date::Manip||perl-DateManip.noarch||5.42a-3||base&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Mason||perl-HTML-Mason||1.3200-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Text::Template||perl-Text-Template||1.44-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DateTime||perl-DateTime||0.2901-1.2.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Chart||perl-Chart||2.4.1-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Cache::Cache||perl-Cache-Cache||1.05-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|NetAddr::IP||perl-NetAddr-IP||4.004-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|String::Approx||perl-String-Approx||3.26-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Locale::SubCountry||perl-Locale-SubCountry||1.38-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Term::ReadKey||perl-Term-ReadKey||2.30-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DateTime::Format::Strptime||perl-DateTime-Format-Strptime||1.0700-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Net::Whois::Raw||perl-Net-Whois-Raw||1.20-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBIx::DBSchema||perl-DBIx-DBSchema||0.31-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Tie::IxHash||perl-Tie-IxHash||1.21-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::PasswdMD5||perl-Crypt-PasswdMD5||1.3-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|File::CounterFile||perl-File-CounterFile||1.04-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|IPC::Run3||perl-IPC-Run3||0.036-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Net::SSH||perl-Net-SSH||0.08-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|String::ShellQuote||perl-String-ShellQuote||1.03-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|JSON||perl-JSON||1.07-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Data::Table||perl-Data-Table||1.50-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Lingua::EN::NameParse||perl-Lingua-EN-NameParse||1.22-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Lingua::EN::Inflect||perl-Lingua-EN-Inflect||1.89-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Apache::DBI||perl-Apache-DBI||0.9901-2.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|IO::Scalar||perl-IO-stringy||2.110-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::CSV_XS||perl-Text-CSV_XS||0.23-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Spreadsheet::WriteExcel||perl-Spreadsheet-WriteExcel||2.17-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|MIME-tools||perl-MIME-tools||5.420-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Date::Manip||perl-DateManip||5.42a-3||base&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::DES||perl-Crypt-DES||2.05-3.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Blowfish||perl-Crypt-Blowfish||2.10-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Digest::MD4||perl-Digest-MD4||1.5-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Rijndael||perl-Crypt-Rijndael||0.05-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|ExtUtils::CBuilder||perl-ExtUtils-CBuilder||0.18-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBD::Pg||perl-DBD-Pg||1.49-1.el4s1||centosplus&lt;br /&gt;
|-&lt;br /&gt;
|Locale-Codes|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Frontier::RPC2|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Business::CreditCard|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Time::Duration|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Widgets::SelectLayers|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Color::Scheme|| | ||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Params::Classify||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Scalar::Number||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Integer||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Float||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Module::Runtime||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Authen::DecHpwd||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Authen::Passphrase||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Data::Entropy::Algorithms||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::MySQL||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::Eksblowfish||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Crypt::UnixCrypt_XS||||cpan2rpm&lt;br /&gt;
|-&lt;br /&gt;
|Fax::Hylafax::Client||||cpan2rpm&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install libnet perl-libwww-perl perl-URI perl-HTML-Tagset&lt;br /&gt;
# yum install perl-HTML-Parser &lt;br /&gt;
# yum install perl-MailTools perl-TimeDate&lt;br /&gt;
&lt;br /&gt;
# yum install perl-HTML-Mason perl-Text-Template perl-DateTime perl-Chart&lt;br /&gt;
# yum install perl-Cache-Cache perl-NetAddr-IP perl-String-Approx&lt;br /&gt;
# yum install perl-Locale-SubCountry perl-Term-ReadKey&lt;br /&gt;
# yum install perl-DateTime-Format-Strptime perl-Net-Whois-Raw&lt;br /&gt;
# yum install perl-Tie-IxHash perl-Crypt-PasswdMD5&lt;br /&gt;
# yum install perl-File-CounterFile perl-IPC-Run3 perl-Net-SSH&lt;br /&gt;
# yum install perl-String-ShellQuote perl-JSON perl-Data-Table&lt;br /&gt;
# yum install perl-Lingua-EN-NameParse perl-Lingua-EN-Inflect&lt;br /&gt;
# yum install perl-IO-stringy perl-Text-CSV_XS perl-Spreadsheet-WriteExcel&lt;br /&gt;
# yum install perl-MIME-tools perl-DateManip&lt;br /&gt;
# yum install perl-DBI perl-DBD-MySQL perl-Apache-DBI &lt;br /&gt;
# yum install --enablerepo=centosplus perl-DBD-Pg&lt;br /&gt;
# yum install perl-Crypt-DES perl-Crypt-Blowfish perl-Digest-MD4&lt;br /&gt;
# yum install perl-Crypt-Rijndael perl-ExtUtils-CBuilder&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can install these using cpan, or follow the directions here using cpan2rpm.&lt;br /&gt;
&lt;br /&gt;
* DBIx::DBSchema&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-DBIx-DBSchema&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Frontier::RPC2&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-XML-Parser&lt;br /&gt;
# cpan2rpm --author='Ken MacLeod &amp;amp;lt;ken@bitsko.slc.ut.us&amp;amp;gt;' --version='0.07b4' Frontier-RPC&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Frontier-RPC-0.07b4-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Business::CreditCard&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Business::CreditCard&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Business-CreditCard-0.30-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Time::Duration&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Test-Pod perl-Test-Pod-Coverage&lt;br /&gt;
# cpan2rpm Time::Duration&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Time-Duration-1.04-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* HTML::Widgets::SelectLayers&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm http://search.cpan.org/CPAN/authors/id/I/IV/IVAN/HTML-Widgets-SelectLayers-0.07.tar.gz&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-HTML-Widgets-SelectLayers-0.07-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Color::Scheme&lt;br /&gt;
&lt;br /&gt;
Ran into much brokenness when trying to build Test-Simple-0.67.  Just skip the dep checks and test phase and hope.  I mean, come on, it's Color::Scheme for crying out loud!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Test-Differences&lt;br /&gt;
# cpan2rpm --make-no-test --no-depchk Color::Scheme&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Color-Scheme-1.02-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Params::Classify&lt;br /&gt;
&lt;br /&gt;
Install some deps first...&lt;br /&gt;
&lt;br /&gt;
** Scalar::Number&lt;br /&gt;
&lt;br /&gt;
*** Data::Integer&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Data::Integer&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Integer-0.001-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*** Data::Float&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Data::Float&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Float-0.005-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Scalar::Number&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Scalar-Number-0.001-1.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
# cpan2rpm Params::Classify&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Params-Classify-0.002-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Module::Runtime&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Module::Runtime&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Module-Runtime-0.003-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Authen::DecHpwd&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Authen::DecHpwd&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Authen-DecHpwd-2.001-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Authen::Passphrase&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Authen::Passphrase&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Authen-Passphrase-0.005-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Data::Entropy::Algorithms&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --make-no-test Data::Entropy&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Data-Entropy-0.003-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::MySQL&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --version='0.04' --author='IKEBE Tomohiro &amp;lt;ikebe@shebang.jp&amp;gt;' Crypt::MySQL&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-MySQL-0.04-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::Eksblowfish&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Crypt::Eksblowfish&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-Eksblowfish-0.001-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Crypt::UnixCrypt_XS&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm Crypt::UnixCrypt_XS&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/${BASEARCH}/perl-Crypt-UnixCrypt_XS-0.05-1.${BASEARCH}.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Fax::Hylafax::Client (Optional)&lt;br /&gt;
&lt;br /&gt;
Skip the tests here as well, unless you happen to have a properly configured HylaFAX server handy.&lt;br /&gt;
Or, skip the package entirely if you don't plan on sending FAX invoices.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cpan2rpm --make-no-test Fax::Hylafax::Client&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Fax-Hylafax-Client-1.02-1.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== RT Prereqs ====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|*Perl Module*||*Package*||*Version*||*Repo*&lt;br /&gt;
|-&lt;br /&gt;
|Apache::Session||perl-Apache-Session||1.81-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML-Format||perl-HTML-Format||2.04-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Class::ReturnValue||perl-Class-ReturnValue||0.53-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|DBIx::SearchBuilder||perl-DBIx-SearchBuilder||1.43-1.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Log::Dispatch||perl-Log-Dispatch||2.11-1.2.el4.rf||rpmforge&lt;br /&gt;
|-&lt;br /&gt;
|Locale::Maketext::Lexicon||perl-Locale-Maketext-Lexicon||0.62-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Locale::Maketext::Fuzzy||perl-Locale-Maketext-Fuzzy||0.02-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Wrapper||perl-Text-Wrapper||1.000-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Time-modules||perl-Time-modules||2003.1126-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Autoformat||perl-Text-Autoformat||1.13-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Text::Quoted||perl-Text-Quoted||1.8-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Regexp::Common||perl-Regexp-Common||2.120-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML::Scrubber||perl-HTML-Scrubber||0.08-1.2.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|Tree::Simple||perl-Tree-Simple||1.17-1.el4.rf||dries&lt;br /&gt;
|-&lt;br /&gt;
|HTML::TreeBuilder||perl-HTML-Tree||3.23-1.el4.rf||dries&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Apache-Session perl-HTML-Format perl-Class-ReturnValue&lt;br /&gt;
# yum install perl-Locale-Maketext-Lexicon perl-Locale-Maketext-Fuzzy&lt;br /&gt;
# yum install perl-Text-Wrapper perl-Time-modules&lt;br /&gt;
# yum install perl-Text-Autoformat perl-Text-Quoted perl-Regexp-Common&lt;br /&gt;
# yum install perl-HTML-Scrubber perl-Tree-Simple perl-HTML-Tree&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Log::Dispatch&lt;br /&gt;
&lt;br /&gt;
Use the SRPM from Fedora Core 5.  They have the correct and properly patched version that supports mod_perl 2.&lt;br /&gt;
&lt;br /&gt;
But first, a couple of prereqs.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-File-Find-Rule perl-IO-String&lt;br /&gt;
# yum install perl-MIME-Lite perl-Mail-Sender perl-Mail-Sendmail&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now build and install Log::Dispatch itself. (There seems to be another rpm too, but it need Apache::Log)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# wget -O /usr/src/redhat/SRPMS/perl-Log-Dispatch-2.15-2.fc5.src.rpm http://download.fedora.redhat.com/pub/fedora/linux/extras/5/SRPMS/perl-Log-Dispatch-2.15-2.fc5.src.rpm&lt;br /&gt;
&lt;br /&gt;
# rpmbuild --rebuild /usr/src/redhat/SRPMS/perl-Log-Dispatch-2.15-2.src.rpm&lt;br /&gt;
# rpm -ivh /usr/src/redhat/RPMS/noarch/perl-Log-Dispatch-2.15-2.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* DBIx::SearchBuilder&lt;br /&gt;
&lt;br /&gt;
DBIx::searchBuilder is a little painful to install because it requires DBD::Oracle.  You can just run &amp;quot;yum install perl-DBIx-SearchBuilder&amp;quot; if you want to go through the trouble of building and installing DBD::Oracle first.  Again, that can be rather painful and isn't within the scope of this guide.&lt;br /&gt;
&lt;br /&gt;
The alternative below is to force install the RPM for DBIx::SearchBuilder since we're not going to use Oracle anyway.  You have to exclude it from future updates in yum otherwise you'll get dep failures everytime you do a &amp;quot;yum upgrade&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
If you're not going to use RT, just skip DBIx::SearchBuilder altogether.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# yum install perl-Want perl-Clone perl-Cache-Simple-TimedExpiry&lt;br /&gt;
# yum install perl-DBD-SQLite perl-capitalization perl-Class-Accessor&lt;br /&gt;
&lt;br /&gt;
# rpm -ivh --nodeps http://apt.sw.be/redhat/el4/en/${BASEARCH}/dag/RPMS/perl-DBIx-SearchBuilder-1.43-1.el4.rf.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
# echo &amp;quot;exclude=perl-DBIx-SearchBuilder&amp;quot; &amp;gt;&amp;gt; /etc/yum.conf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== System configuration ==&lt;br /&gt;
&lt;br /&gt;
This is just following the directions with CentOS-specific commands.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# groupadd freeside&lt;br /&gt;
# useradd -g freeside freeside&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With CentOS 4.4, postgresql wouldn't start if SELinux was enabled.  We call &amp;quot;setenforce 0&amp;quot; here to temporarily disable it.  Some claim that it only needs to be disabled the first time postgresql is started.&lt;br /&gt;
&lt;br /&gt;
Enable postgresql at startup, disable selinux temporarily, and start postgresql.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# chkconfig postgresql on&lt;br /&gt;
# setenfore 0&lt;br /&gt;
# service postgresql start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the freeside datbase user for postgresql.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# su -c &amp;quot;createuser -P freeside&amp;quot; - postgres&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Installing Freeside ==&lt;br /&gt;
&lt;br /&gt;
su to the freeside user, extract a copy of the freeside tarball or check out the code from CVS into the freeside user's home directory.  You should have the freeside top-level Makefile in /home/freeside/freeside/Makefile or /home/freeside/freeside-1.7.0/Makefile at this point.  1.7.0 wasn't officially released at the time of writing, so we're using a version checked-out from CVS.&lt;br /&gt;
&lt;br /&gt;
Edit freeside's top-level Makefile with your configuration.  Here are some examples...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
FREESIDE_CONF = /etc/freeside&lt;br /&gt;
FREESIDE_LOG = /var/log/freeside&lt;br /&gt;
FREESIDE_LOCK = /var/lib/freeside&lt;br /&gt;
FREESIDE_CACHE = /var/lib/freeside&lt;br /&gt;
FREESIDE_EXPORT = /var/lib/freeside&lt;br /&gt;
&lt;br /&gt;
APACHE_VERSION = 2&lt;br /&gt;
FREESIDE_DOCUMENT_ROOT = /var/www/freeside/html&lt;br /&gt;
&lt;br /&gt;
INIT_FILE = /etc/init.d/freeside&lt;br /&gt;
INIT_INSTALL = /sbin/chkconfig freeside on&lt;br /&gt;
&lt;br /&gt;
HTTPD_RESTART = /etc/init.d/httpd restart&lt;br /&gt;
APACHE_CONF = /etc/httpd-freeside/conf.d&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As the freeside user, create the database and make the perl modules.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ createdb -E sql_ascii freeside&lt;br /&gt;
&lt;br /&gt;
$ make perl-modules&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As root, install the perl modules and create the initial config.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-perl-modules&lt;br /&gt;
&lt;br /&gt;
# mkdir -m 770 /var/lib/freeside&lt;br /&gt;
# chown -R freeside:root /var/lib/freeside/&lt;br /&gt;
# make create-config&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Apache Configuration ==&lt;br /&gt;
&lt;br /&gt;
=== Creating Freeside's Apache Instance ===&lt;br /&gt;
&lt;br /&gt;
The default Apache init script for CentOS doesn't make it very easy to setup multiple instances of Apache.  A few small modifications take care of that problem.&lt;br /&gt;
&lt;br /&gt;
Start by making a copy of the init script, as well as download the patch and apply it to your httpd-freeside init script.  You can make a symlink if you'd like to eventually setup additional Apache instances.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ln -s /etc/init.d/httpd /etc/init.d/httpd-freeside&lt;br /&gt;
&lt;br /&gt;
# cd /etc/init.d/&lt;br /&gt;
# wget -O /tmp/httpd-freeside.patch http://users.fire2wire.com/~khoff/freeside/1.7.0/httpd-freeside.patch&lt;br /&gt;
# patch &amp;lt; /tmp/httpd-freeside.patch&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Make a copy of the Apache server root.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cp -av /etc/httpd /etc/httpd-freeside&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can remove any extra conf files from /etc/httpd-freeside/conf.d (webdav, php, etc.) if you're not using them.  They'll only take up more memory and potentially make freeside slower.&lt;br /&gt;
&lt;br /&gt;
=== /etc/httpd-freeside/conf/httpd.conf ===&lt;br /&gt;
&lt;br /&gt;
Change the following Apache configuration directives in /etc/httpd-freeside/conf/httpd.conf to match our previous changes.&lt;br /&gt;
&lt;br /&gt;
* ServerRoot &amp;quot;/etc/httpd-freeside&amp;quot;&lt;br /&gt;
* PidFile run/httpd-freeside.pid&lt;br /&gt;
&lt;br /&gt;
We're changing the listening port in case you're using the default Apache configuration (and port) for something else. This can be remedied by binding to a specific IP address as well (eg. 192.168.0.2:80).&lt;br /&gt;
&lt;br /&gt;
* Listen 8080&lt;br /&gt;
&lt;br /&gt;
Freeside's instance of Apache needs to run as the freeside user and group.&lt;br /&gt;
&lt;br /&gt;
* User freeside&lt;br /&gt;
* Group freeside&lt;br /&gt;
&lt;br /&gt;
* DocumentRoot &amp;quot;/var/www/freeside/html&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* &amp;amp;lt;Directory &amp;quot;/var/www/freeside/html&amp;quot;&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
* ErrorLog logs/freeside_error_log&lt;br /&gt;
* CustomLog logs/freeside_access_log combined&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Install Docs and Freeside's Apache Includes ===&lt;br /&gt;
&lt;br /&gt;
Inside the freeside source directory, run &amp;quot;make install-docs&amp;quot; and &amp;quot;make install-apache&amp;quot; as root.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-docs&lt;br /&gt;
# make install-apache&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Edit the config file that was just created (/etc/httpd-freeside/conf.d/freeside-base2.conf) by &amp;quot;make install-apache&amp;quot; and change the AuthUserFile directive to match our new path.&lt;br /&gt;
&lt;br /&gt;
* AuthUserFile /etc/freeside/htpasswd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Populating the Database ==&lt;br /&gt;
&lt;br /&gt;
Populate the freeside database with the initial data, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ freeside-setup -d example.com&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the freeside system users, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ freeside-adduser -g 1 fs_queue&lt;br /&gt;
$ freeside-adduser -g 1 fs_daily&lt;br /&gt;
$ freeside-adduser -g 1 fs_selfservice&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create whatever other freeside users you want, again, as the freeside user.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
freeside-adduser -g 1 username&lt;br /&gt;
htpasswd /etc/freeside/htpasswd username&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Repeat the last two commands as many times as you want for your internal staff's freeside accounts.&lt;br /&gt;
&lt;br /&gt;
== Startup Configuration ==&lt;br /&gt;
&lt;br /&gt;
We just need to make sure that our new instance of Apache and the freeside queue daemon start when we boot.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# make install-init&lt;br /&gt;
&lt;br /&gt;
# chkconfig freeside on&lt;br /&gt;
# chkconfig httpd-freeside on&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And last but not least...start freeside's Apache instance.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# service httpd-freeside start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hopefully, Apache should start without errors.  If you do get errors, check /var/log/httpd/freeside_error_log.&lt;br /&gt;
&lt;br /&gt;
Assuming Apache started correctly, you should now be able to access freeside via http://&amp;amp;lt;Your server's FQDN or IP&amp;amp;gt;:8080/.  You can login using the username and password you set earlier with htpasswd.&lt;br /&gt;
&lt;br /&gt;
From here, consult the standard freeside install documentation in the wiki on how to proceed with initial configuration.  Good luck!&lt;br /&gt;
&lt;br /&gt;
== Problems ==&lt;br /&gt;
&lt;br /&gt;
There might be some formatting issues as this was converted from TWiki to MediaWiki markup.  If the syntax of a command doesn't look correct or doesn't make sense, it probably didn't get escaped correctly, or your web browser gobbled up some angle brackets, or both!&lt;/div&gt;</summary>
		<author><name>Tmcarter</name></author>	</entry>

	</feed>