You shoud install RPM as root
Here are my notes for instal:
yum upgrade
yum -y install net-tools vim wget
yum -y install mariadb-server mariadb
vim /etc/my.cnf
max_allowed_packet=20M
query_cache_size=32M
#MYSQL
service mariadb start
/usr/bin/mysql_secure_installation
#OTRS
wget
http://ftp.otrs.org/pub/otrs//RPMS/rhel ... noarch.rpm
useradd otrs
passwd otrs
yum install --nogpgcheck otrs-4.0.0.beta1-01.noarch.rpm
#APACHE
chkconfig httpd on
service httpd start
#add repo
wget
http://ftp-stud.hs-esslingen.de/pub/epe ... noarch.rpm
yum -y install epel-release-7-1.noarch.rpm
vim /etc/sysconfig/otrs
OTRS_USED_WEBSERVER_TEST="/bin/systemctl is-active httpd"
/opt/otrs/bin/otrs.CheckModules.pl
yum -y install "perl(YAML::XS)"
yum -y install "perl(Text::CSV_XS)" "perl(PDF::API2)" "perl(ModPerl::Util)" "perl(Mail::IMAPClient)"
yum -y install "perl(Crypt::Eksblowfish::Bcrypt)" "perl(GD)" "perl(GD::Text)" "perl(GD::Graph)" "perl(JSON::XS)"
#firewall OFF
systemctl stop firewalld
systemctl mask firewalld
#open port on Firewall
firewall-cmd --zone=public --add-service=http --permanent
firewall-cmd --reload
#SElinux OFF
vim /etc/selinux/config
add otrs to group apache
usermod -a -G apache otrs