I have put together a rough install howto for OTRS, I had a try with this app and it is not what I'm after. I prefer osticket instead
Maybe these install notes might help someone out there
Open Ticket Request System Installation Notes
Downloads Open Ticket Request System from
http://otrs.org/download/or
wget
ftp://ftp.otrs.org/pub/otrs/otrs-2.1.2.tar.gzthen unpack otrs-2.1.2.tar.gz
tar xvzf otrs-2.1.2.tar.gz
Now move otrs-2.1.2 to the /opt dir and rename otrs-2.1.2 to /otrs
these are commands I used to move and rename otrs to the opt directory, only use this command if downloaded otrs in a download dir
mv /downloads/otrs-2.1.2 /opt/otrs
chown -R
www.www /opt/otrs
chmod 755 /opt/otrs
cd /opt/otrs/Kernel
rename Config.pm.dist to Config.pm
===========================
Perl Modules Required
you should be able to get most of these from
http://dag.wieers.com/packages/or download rpmforge-release-0.3.4-1.el4.rf.i386.rpm
wget
http://dag.wieers.com/packages/rpmforge-release/rpmforge-release-0.3.4-1.el4.rf.i386.rpmand install rpm -Uvh rpmforge-release-0.3.4-1.el4.rf.i386.rpm
Download the required modules for OTRS using yum
===============================================
yum --enablerepo=base --enablerepo=updates --enablerepo=addons install mod_perl gd ImageMagick ImageMagick-perl gcc netpbm
and
yum install perl-GD.i386 perl-GD-Graph.i386 perl-GD-Graph3d.noarch perl-GD-Text-Util.i386 perl-Date-Pcalc.noarch perl-Email-Valid.noarch
==============================================
Check if all needed modules are installed:
run these commands to check install, if you get "syntax OK" great, if not, then find whats missing
cd /opt/otrs/bin
==============================================
perl -cw /opt/otrs/bin/cgi-bin/index.pl
perl -cw /opt/otrs/bin/PostMaster.pl
sh SetPermissions.sh /opt/otrs www www
cd /opt/otrs/bin/cgi-bin
perl -cw installer.pl
perl -cw /opt/otrs/bin/PostMaster.pl
chown -R
www.www /opt/otrs
===============================================
Create a template fragment for otrs
mkdir -p /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/
create a file called 89otrs, then copy and past in between the dotted lines
89otrs
===============================================
#OTRS
Alias /otrs/ "/opt/otrs/bin/cgi-bin/"
Alias /otrs-web/ "/opt/otrs/var/httpd/htdocs/"
Alias /otrs/public "/opt/otrs/bin/cgi-bin/"
PerlRequire /opt/otrs/scripts/apache2-perl-startup.pl
PerlModule Apache::Reload
PerlInitHandler Apache::Reload
MaxRequestsPerChild 400
<Location /otrs>
ErrorDocument 403 /otrs/customer.pl
ErrorDocument 403 /otrs/index.pl
AllowOverride All
SetHandler perl-script
PerlResponseHandler ModPerl::Registry
PerlOptions +ParseHeaders
Options +ExecCGI +FollowSymlinks
</Location>
<Directory "/opt/otrs/bin/cgi-bin/">
AllowOverride None
Options +ExecCGI -Includes
Order allow,deny
Allow from all
</Directory>
<Directory "/opt/otrs/var/httpd/htdocs/">
AllowOverride None
Order allow,deny
Allow from all
</Directory>
===============================================
Expand httpd.conf
==============================================
expand-template /etc/httpd/conf/httpd.conf
/etc/rc.d/init.d/httpd-admin restart
/etc/rc.d/init.d/httpd-e-smith restart
==============================================
step 2 create database, first get root password for mysql
cd /root and open or edit .my.cnf
#------------------------------------------------------------
# DO NOT MODIFY THIS FILE! It is updated automatically by the
# e-smith server and gateway software. Instead, modify the source
# template in the /etc/e-smith/templates directory. For more
# information, see
http://www.e-smith.org.
#
# copyright (C) 1999-2001 e-smith, inc.
#------------------------------------------------------------
[client]
password=eox24kly-example-of-wat-the-mysql-psw-looks-like-aB8Zva6NezKT58bcLM7QsdOAJcmPj
#------------------------------------------------------------
# TEMPLATE END
#------------------------------------------------------------
copy and paste your password for the root password for step 2
eox24kly-example-of-wat-the-mysql-psw-looks-like-aB8Zva6NezKT58bcLM7QsdOAJcmPj
Start the installer, go to web browser
http://yourdoamin.com or Ip/otrs/installer.pl
and then just follow the instructions to finish the installation