Tutorial

How To Set Up a Help Desk System with OTRS on CentOS 7

Published on March 3, 2016
How To Set Up a Help Desk System with OTRS on CentOS 7
Not using CentOS 7?Choose a different version or distribution.
CentOS 7

Introduction

OTRS is an Open source Ticket Request System. It provides a single point of contact for users, customers, IT personnel, IT services, and any external organizations. The program is written in Perl, supports a variety of databases (MySQL, PostgreSQL, etc), and can integrate with LDAP directories.

In this tutorial, you will learn how to install and set up OTRS on your CentOS server.

Prerequisites

To follow this tutorial, you will need:

Step 1 — Installing MariaDB

In this step, we’ll install the prerequisite programs for OTRS.

First, enable the EPEL (Extra Packages for Enterprise Linux) repository.

  1. sudo yum install epel-release

Then update your system.

  1. sudo yum update

In this tutorial, we’ll use MySQL for our database, so install MariaDB (which is a fork of MySQL).

  1. sudo yum install mariadb-server mariadb

You will need to change the default MySQL settings in order to make it suitable for OTRS. Open its configuration file using vi or your favorite text editor.

  1. sudo vi /etc/my.cnf

Add the following lines under the [mysqld] section, which specify the sizes of a few files.

/etc/my.cnf
[mysqld]
max_allowed_packet = 20M
query_cache_size = 32M
innodb_log_file_size = 256M
datadir=/var/lib/mysql
. . .

Then save and close the file. Make sure you do this before you start MySQL for the first time.

Now, start MariaDB.

  1. sudo systemctl start mariadb.service

Next, secure the MySQL database.

  1. sudo mysql_secure_installation

You will be asked a few questions. You can accept the default values for all of the questions by just pressing ENTER for each, except for setting the new root password. Make a note of your root user password because you will need it later in this tutorial.

Now we have everything we need to install the OTRS application.

Step 2 — Installing OTRS

We will install OTRS using the pre-built RPM package for CentOS. First, we need to download the latest RPM from their official repository. You can browse the repository directory to determine the latest version.

  1. wget http://ftp.otrs.org/pub/otrs/RPMS/rhel/7/otrs-5.0.7-01.noarch.rpm

Next, install OTRS.

  1. sudo yum install otrs-5.0.7-01.noarch.rpm

Because OTRS is written in Perl, it uses a number of Perl modules. We can check for missing modules by using the CheckModules.pl script included with OTRS.

  1. sudo /opt/otrs/bin/otrs.CheckModules.pl

You’ll see output like this.

Output
  o Apache::DBI......................ok (v1.12)
  o Apache2::Reload..................FAILED! Not all prerequisites for this module correctly installed. 
. . .
  o XML::LibXSLT.....................ok (v1.80)
  o XML::Parser......................ok (v2.41)
  o YAML::XS.........................Not installed! Use: 'yum install "perl(YAML::XS)"' (required - Very important)

Some modules are only needed for optional functionality, such as communication with other databases or handling mail with Chinese character sets. You can install the missing modules with the yum commands provided in the output. Feel free to go through them manually, or use the command below.

  1. sudo yum install "perl(Apache2::Reload)" "perl(Crypt::Eksblowfish::Bcrypt)" "perl(Encode::HanExtra)" "perl(JSON::XS)" "perl(Mail::IMAPClient)" "perl(ModPerl::Util)" "perl(Text::CSV_XS)" "perl(YAML::XS)"

Whenever you’re done installing modules, you can rerun the script to make sure that all the required modules have been installed.

Step 3 — Сonfiguring OTRS

In this step, we’ll configure OTRS’s database and mail settings.

First, we need to restart Apache to load the configuration changes for OTRS.

  1. sudo systemctl restart httpd.service

Now you can access the installer’s web page. Open http://your_server_ip/otrs/installer.pl in your favorite web browser. On the first screen, you will see a welcome screen with information about the OTRS offices. Click Next. The next screen will have the license, which you can accept by clicking Accept license and continue after reading.

On the next screen, you will be prompted to select a database type. The defaults (MySQL and Create a new database for OTRS) are fine, so click Next to proceed.

Database selection

Then you’ll have to enter the MySQL credentials you chose in a previous step. Click Check database settings to make sure it works.

Configure MySQL

The installer will generate credentials for the new database. There is no need to remember this generated password, so click Next to proceed.

Configure MySQL Check successful

The database will be created and you will see the successful result. Click Next.

Next you have to provide some required system settings:

  • System FQDN: A fully qualified domain name. You can set up your own host name, or you can just use your server’s IP address here.
  • AdminEmail: The e-mail address of your system administrator. Emails about errors with OTRS will go here.
  • Organization: Your organization’s name.

Leave all other options at their default values.

System settings

In order to be able to receive e-mails from users, you have to configure an incoming mail account.

Provide the necessary credentials in the Configure Inbound Mail section. For example, if you use Google as your mail provider, you can create an app password and enter the following information:

  • Inbound mail type: IMAPS
  • Inbound mail host: imap.gmail.com
  • Inbound mail user: your_email_address
  • Inbound mail password: your_app_password

To check the configuration, press the corresponding button. After a few seconds you will see the message: “Mail check successful.” Click OK to proceed to final screen.

Mail configuration

The installation is complete! As a result, you will see the page with a link to the admin panel and the credentials of the superuser.

Make sure you write down the generated password for the root@localhost user and the start page URL.

The only thing left after a successful installation is to start the OTRS daemon and activate its cronjob.

  1. sudo su - otrs -c "/opt/otrs/bin/otrs.Daemon.pl start"
  2. sudo su - otrs -c "/opt/otrs/bin/Cron.sh start"

Step 4 — Securing OTRS

At the moment, we have a fully functional application, but it’s not secure to use the superuser account with OTRS. Instead, we’ll create new agents.

In OTRS, agents are users who have rights to the various functions of the system. In our example, we will use single agent who has access to the all functions of the system.

First of all, we have to log in as root@localhost to create new agents. Open the link which we received at the end of the installation. Enter root@localhost for the username and the password you copied at the end of step 3, then click Login.

You will see the main dashboard. It contains several widgets which show different information about tickets, statistics, news, etc. You can freely rearrange them by dragging or switch their visibility in settings.

Login screen

First we have to create a new agent. To do this, follow the link by clicking on the red message in the top of the screen, then click the Add agent button. This will bring you to a screen with a lot of fields. Fortunately, most of the default options are fine. You can simply fill in the first name, last name, username, password, and email fields.

Next, you need to change group relations for the new agent. Because our agent will also be the administrator, we will give it full read and write access to all groups. To do this, click the checkmark next to RW all the way on the right, under Change Group Relations for Agent.

Finally, click Submit. Now you can log out and log back in again using the newly created account. You can customize your agent’s preferences by clicking on the gear in the top left corner of the screen. There you can change your password, choose the interface language, setup notifications, setup the favorite queues, change interface skin, etc.

Once you save your settings, you are ready to accept tickets from customers.

Step 5 — Handling Tickets

Let’s go over how to deal with tickets. Customers have two ways to forward new tickets to OTRS: via the customer front-end or by sending an email.

The customer front end is located at http://your_server_ip/otrs/customer.pl. You can create a customer account there and submit a ticket using the GUI.

You can also create new ticket by sending an email to the address specified during installation. By default, all tickets received by mail are stored in one queue and have normal priority. All customer tickets can be viewed in the customer web interface regardless of how they were sent.

All new tickets created using the customer front-end, will immediately appear on the agent’s dashboard. Tickets sent by mail may not immediately appear on the dashboard because OTRS checks for them every 10 minutes.

On the agent dashboard, you can see the information on all currently actual tickets: their status (new, opened, escalated, etc.), their age (the time elapsed from the moment when ticket was received), and subject.

Agent dashboard

You can click on the ticket number (in the Ticket # column) to view its details. The agent can also take actions on the ticket here, like changing its priority or state, moving it to another queue, closing it, adding a note, and so on.

Conclusion

In this tutorial, we have learned how to set up and use a simple help desk service using OTRS. You can learn more about OTRS by reading the OTRS Admin Manual.

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about our products

About the author(s)

Vadym Kalsin
Vadym Kalsin
See author profile
Category:
Tutorial

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
10 Comments
Leave a comment...

This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Hi, Im getting this!

Forbidden

You don’t have permission to access /otrs/installer.pl on this server.

Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.

What should I do ?

Thanks in advance!

Just you need configure the apache and firewall

rm /etc/httpd/conf.d/welcome.conf systemctl enable httpd.service systemctl start httpd.service firewall-cmd --permanent --zone=public --add-service=http firewall-cmd --reload

I am trying to install OTRS following your instructions. When I get to accessing the installer webpage, I can’t seem to connect to the site. ERR_Connection_TIMED_OUT

You can verify Apache is running or not

systemctl status httpd.service

keep getting Internal Server Error when trying to access the installer page :( the install seems to have left /var/www/html empty…

The installation script is located in /opt/otrs/bin/cgi-bin/ directory. Maybe you have some issues with perl modules - please check the server logs to see if there any problems.

I got the same error. So i need to copy installer.pl script inside /opt/otrs/bin/cgi-bin to /opt/otrs. Is that what you mean? If so, it didn’t work. I still got "500 Internal server error "

They have excluded vital information.

You have to disable SE Linux

Hi,

running into a few problems here. I seem to be stuck at step 3 bullet 2. When I go to the site I get this: * Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at root@localhost to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.*

I did try to figure out what was going on but I’m really new to linux.

[root@localhost ~]# sudo systemctl status httpd.service ● httpd.service - The Apache HTTP Server Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled) Active: active (running) since Thu 2016-07-07 08:19:32 CDT; 3h 0min ago Docs: man:httpd(8) man:apachectl(8) Main PID: 7534 (/usr/sbin/httpd) Status: “Total requests: 4; Current requests/sec: 0; Current traffic: 0 B/sec” CGroup: /system.slice/httpd.service ├─7534 /usr/sbin/httpd -DFOREGROUND ├─7535 /usr/sbin/httpd -DFOREGROUND ├─7537 /usr/sbin/httpd -DFOREGROUND ├─7539 /usr/sbin/httpd -DFOREGROUND ├─7540 /usr/sbin/httpd -DFOREGROUND ├─7541 /usr/sbin/httpd -DFOREGROUND └─7637 /usr/sbin/httpd -DFOREGROUND

Jul 07 08:19:31 localhost.localdomain systemd[1]: Starting The Apache HTTP Server… Jul 07 08:19:31 localhost.localdomain httpd[7534]: AH00558: httpd: Could not reliab…e Jul 07 08:19:32 localhost.localdomain systemd[1]: Started The Apache HTTP Server. Jul 07 08:20:24 localhost.localdomain OTRS-CGI-10[7537]: [Error][Kernel::System::Cac… Jul 07 11:17:18 localhost.localdomain systemd[1]: Started The Apache HTTP Server. Jul 07 11:19:17 localhost.localdomain OTRS-CGI-10[7540]: [Error][Kernel::System::Cac… Jul 07 11:19:18 localhost.localdomain OTRS-CGI-10[7541]: [Error][Kernel::System::Cac… Hint: Some lines were ellipsized, use -l to show in full.

Any help???

Hello. I think you have some troubles with perl modules.

Can you post here your error logs? You can find them here:

/var/log/httpd/error_log

This comment has been deleted

    [Tue Jul 05 16:18:09.500764 2016] [core:notice] [pid 28459] SELinux policy enabled; httpd running as context system_u:system_r:httpd_t:s0 [Tue Jul 05 16:18:09.501782 2016] [suexec:notice] [pid 28459] AH01232: suEXEC mechanism enabled (wrapper: /usr/sbin/suexec) AH00558: httpd: Could not reliably determine the server’s fully qualified domain name, using localhost.localdomain. Set the ‘ServerName’ directive globally to suppress this message [Tue Jul 05 16:18:09.617079 2016] [auth_digest:notice] [pid 28459] AH01757: generating secret for digest authentication … [Tue Jul 05 16:18:09.617895 2016] [lbmethod_heartbeat:notice] [pid 28459] AH02282: No slotmem from mod_heartmonitor [Tue Jul 05 16:18:09.622783 2016] [mpm_prefork:notice] [pid 28459] AH00163: Apache/2.4.6 (CentOS) mod_perl/2.0.9dev Perl/v5.16.3 configured – resuming normal operations [Tue Jul 05 16:18:09.622809 2016] [core:notice] [pid 28459] AH00094: Command line: ‘/usr/sbin/httpd -D FOREGROUND’ ERROR: OTRS-CGI-10 Perl: 5.16.3 OS: linux Time: Tue Jul 5 16:19:43 2016

    Message: Can’t create directory ‘/opt/otrs/var/tmp/CacheFileStorable’:

    RemoteAddress: 192.168.16.33 RequestURI: /otrs/installer.pl

    Traceback (28463): Module: Kernel::System::Cache::FileStorable::new Line: 46 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::Cache::new Line: 63 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::SysConfig::_Init Line: 1643 Module: Kernel::System::SysConfig::new Line: 73 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::Modules::Installer::Run Line: 148 Module: Kernel::System::Web::InterfaceInstaller::Run Line: 129 Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_installer_2epl::handler Line: 39 Module: (eval) (v1.99) Line: 207 Module: ModPerl::RegistryCooker::run (v1.99) Line: 207 Module: ModPerl::RegistryCooker::default_handler (v1.99) Line: 173 Module: ModPerl::Registry::handler (v1.99) Line: 32

    [Tue Jul 05 16:19:43.206753 2016] [:error] [pid 28463] mkdir /opt/otrs/var/tmp/CacheFileStorable: Permission denied at /opt/otrs//Kernel/System/Cache/FileStorable.pm line 87.\n ERROR: OTRS-CGI-10 Perl: 5.16.3 OS: linux Time: Tue Jul 5 16:19:54 2016

    Message: Can’t create directory ‘/opt/otrs/var/tmp/CacheFileStorable’:

    RemoteAddress: 192.168.16.33 RequestURI: /otrs/installer.pl

    Traceback (28460): Module: Kernel::System::Cache::FileStorable::new Line: 46 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::Cache::new Line: 63 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::SysConfig::_Init Line: 1643 Module: Kernel::System::SysConfig::new Line: 73 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::Modules::Installer::Run Line: 148 Module: Kernel::System::Web::InterfaceInstaller::Run Line: 129 Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_installer_2epl::handler Line: 39 Module: (eval) (v1.99) Line: 207 Module: ModPerl::RegistryCooker::run (v1.99) Line: 207 Module: ModPerl::RegistryCooker::default_handler (v1.99) Line: 173 Module: ModPerl::Registry::handler (v1.99) Line: 32

    [Tue Jul 05 16:19:54.317574 2016] [:error] [pid 28460] mkdir /opt/otrs/var/tmp/CacheFileStorable: Permission denied at /opt/otrs//Kernel/System/Cache/FileStorable.pm line 87.\n ERROR: OTRS-CGI-10 Perl: 5.16.3 OS: linux Time: Tue Jul 5 16:20:51 2016

    Message: Can’t create directory ‘/opt/otrs/var/tmp/CacheFileStorable’:

    RemoteAddress: 192.168.16.33 RequestURI: /otrs/installer.pl

    Traceback (28462): Module: Kernel::System::Cache::FileStorable::new Line: 46 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::Cache::new Line: 63 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::SysConfig::_Init Line: 1643 Module: Kernel::System::SysConfig::new Line: 73 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::Modules::Installer::Run Line: 148 Module: Kernel::System::Web::InterfaceInstaller::Run Line: 129 Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_installer_2epl::handler Line: 39 Module: (eval) (v1.99) Line: 207 Module: ModPerl::RegistryCooker::run (v1.99) Line: 207 Module: ModPerl::RegistryCooker::default_handler (v1.99) Line: 173 Module: ModPerl::Registry::handler (v1.99) Line: 32

    [Tue Jul 05 16:20:51.337598 2016] [:error] [pid 28462] mkdir /opt/otrs/var/tmp/CacheFileStorable: Permission denied at /opt/otrs//Kernel/System/Cache/FileStorable.pm line 87.\n [Tue Jul 05 16:21:02.202902 2016] [mpm_prefork:notice] [pid 28459] AH00170: caught SIGWINCH, shutting down gracefully [Tue Jul 05 16:21:03.366950 2016] [core:notice] [pid 28618] SELinux policy enabled; httpd running as context system_u:system_r:httpd_t:s0 [Tue Jul 05 16:21:03.367734 2016] [suexec:notice] [pid 28618] AH01232: suEXEC mechanism enabled (wrapper: /usr/sbin/suexec) AH00558: httpd: Could not reliably determine the server’s fully qualified domain name, using localhost.localdomain. Set the ‘ServerName’ directive globally to suppress this message [Tue Jul 05 16:21:03.493411 2016] [auth_digest:notice] [pid 28618] AH01757: generating secret for digest authentication … [Tue Jul 05 16:21:03.494173 2016] [lbmethod_heartbeat:notice] [pid 28618] AH02282: No slotmem from mod_heartmonitor [Tue Jul 05 16:21:03.498397 2016] [mpm_prefork:notice] [pid 28618] AH00163: Apache/2.4.6 (CentOS) mod_perl/2.0.9dev Perl/v5.16.3 configured – resuming normal operations [Tue Jul 05 16:21:03.498414 2016] [core:notice] [pid 28618] AH00094: Command line: ‘/usr/sbin/httpd -D FOREGROUND’ ERROR: OTRS-CGI-10 Perl: 5.16.3 OS: linux Time: Tue Jul 5 16:21:10 2016

    Message: Can’t create directory ‘/opt/otrs/var/tmp/CacheFileStorable’:

    RemoteAddress: 192.168.16.33 RequestURI: /otrs/installer.pl

    Traceback (28619): Module: Kernel::System::Cache::FileStorable::new Line: 46 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::Cache::new Line: 63 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::SysConfig::_Init Line: 1643 Module: Kernel::System::SysConfig::new Line: 73 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::Modules::Installer::Run Line: 148 Module: Kernel::System::Web::InterfaceInstaller::Run Line: 129 Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_installer_2epl::handler Line: 39 Module: (eval) (v1.99) Line: 207 Module: ModPerl::RegistryCooker::run (v1.99) Line: 207 Module: ModPerl::RegistryCooker::default_handler (v1.99) Line: 173 Module: ModPerl::Registry::handler (v1.99) Line: 32

    [Tue Jul 05 16:21:10.092028 2016] [:error] [pid 28619] mkdir /opt/otrs/var/tmp/CacheFileStorable: Permission denied at /opt/otrs//Kernel/System/Cache/FileStorable.pm line 87.\n ERROR: OTRS-CGI-10 Perl: 5.16.3 OS: linux Time: Tue Jul 5 16:24:40 2016

    Message: Can’t create directory ‘/opt/otrs/var/tmp/CacheFileStorable’:

    RemoteAddress: 127.0.0.1 RequestURI: /otrs/installer.pl

    Traceback (28620): Module: Kernel::System::Cache::FileStorable::new Line: 46 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::Cache::new Line: 63 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::SysConfig::_Init Line: 1643 Module: Kernel::System::SysConfig::new Line: 73 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::Modules::Installer::Run Line: 148 Module: Kernel::System::Web::InterfaceInstaller::Run Line: 129 Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_installer_2epl::handler Line: 39 Module: (eval) (v1.99) Line: 207 Module: ModPerl::RegistryCooker::run (v1.99) Line: 207 Module: ModPerl::RegistryCooker::default_handler (v1.99) Line: 173 Module: ModPerl::Registry::handler (v1.99) Line: 32

    [Tue Jul 05 16:24:40.300280 2016] [:error] [pid 28620] mkdir /opt/otrs/var/tmp/CacheFileStorable: Permission denied at /opt/otrs//Kernel/System/Cache/FileStorable.pm line 87.\n ERROR: OTRS-CGI-10 Perl: 5.16.3 OS: linux Time: Tue Jul 5 16:26:43 2016

    Message: Can’t create directory ‘/opt/otrs/var/tmp/CacheFileStorable’:

    RemoteAddress: 192.168.16.33 RequestURI: /otrs/installer.pl

    Traceback (28622): Module: Kernel::System::Cache::FileStorable::new Line: 46 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::Cache::new Line: 63 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::SysConfig::_Init Line: 1643 Module: Kernel::System::SysConfig::new Line: 73 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::Modules::Installer::Run Line: 148 Module: Kernel::System::Web::InterfaceInstaller::Run Line: 129 Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_installer_2epl::handler Line: 39 Module: (eval) (v1.99) Line: 207 Module: ModPerl::RegistryCooker::run (v1.99) Line: 207 Module: ModPerl::RegistryCooker::default_handler (v1.99) Line: 173 Module: ModPerl::Registry::handler (v1.99) Line: 32

    [Tue Jul 05 16:26:43.273848 2016] [:error] [pid 28622] mkdir /opt/otrs/var/tmp/CacheFileStorable: Permission denied at /opt/otrs//Kernel/System/Cache/FileStorable.pm line 87.\n [Tue Jul 05 16:31:46.798642 2016] [mpm_prefork:notice] [pid 28618] AH00170: caught SIGWINCH, shutting down gracefully [Thu Jul 07 08:19:31.967808 2016] [core:notice] [pid 7534] SELinux policy enabled; httpd running as context system_u:system_r:httpd_t:s0 [Thu Jul 07 08:19:31.971796 2016] [suexec:notice] [pid 7534] AH01232: suEXEC mechanism enabled (wrapper: /usr/sbin/suexec) AH00558: httpd: Could not reliably determine the server’s fully qualified domain name, using localhost.localdomain. Set the ‘ServerName’ directive globally to suppress this message [Thu Jul 07 08:19:32.100583 2016] [auth_digest:notice] [pid 7534] AH01757: generating secret for digest authentication … [Thu Jul 07 08:19:32.101685 2016] [lbmethod_heartbeat:notice] [pid 7534] AH02282: No slotmem from mod_heartmonitor [Thu Jul 07 08:19:32.108613 2016] [mpm_prefork:notice] [pid 7534] AH00163: Apache/2.4.6 (CentOS) mod_perl/2.0.9dev Perl/v5.16.3 configured – resuming normal operations [Thu Jul 07 08:19:32.108644 2016] [core:notice] [pid 7534] AH00094: Command line: ‘/usr/sbin/httpd -D FOREGROUND’ ERROR: OTRS-CGI-10 Perl: 5.16.3 OS: linux Time: Thu Jul 7 08:20:24 2016

    Message: Can’t create directory ‘/opt/otrs/var/tmp/CacheFileStorable’:

    RemoteAddress: 192.168.16.33 RequestURI: /otrs/installer.pl

    Traceback (7537): Module: Kernel::System::Cache::FileStorable::new Line: 46 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::Cache::new Line: 63 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::SysConfig::_Init Line: 1643 Module: Kernel::System::SysConfig::new Line: 73 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::Modules::Installer::Run Line: 148 Module: Kernel::System::Web::InterfaceInstaller::Run Line: 129 Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_installer_2epl::handler Line: 39 Module: (eval) (v1.99) Line: 207 Module: ModPerl::RegistryCooker::run (v1.99) Line: 207 Module: ModPerl::RegistryCooker::default_handler (v1.99) Line: 173 Module: ModPerl::Registry::handler (v1.99) Line: 32

    [Thu Jul 07 08:20:24.208445 2016] [:error] [pid 7537] mkdir /opt/otrs/var/tmp/CacheFileStorable: Permission denied at /opt/otrs//Kernel/System/Cache/FileStorable.pm line 87.\n ERROR: OTRS-CGI-10 Perl: 5.16.3 OS: linux Time: Thu Jul 7 11:19:17 2016

    Message: Can’t create directory ‘/opt/otrs/var/tmp/CacheFileStorable’:

    RemoteAddress: 192.168.16.33 RequestURI: /otrs/installer.pl

    Traceback (7540): Module: Kernel::System::Cache::FileStorable::new Line: 46 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::Cache::new Line: 63 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::SysConfig::_Init Line: 1643 Module: Kernel::System::SysConfig::new Line: 73 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::Modules::Installer::Run Line: 148 Module: Kernel::System::Web::InterfaceInstaller::Run Line: 129 Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_installer_2epl::handler Line: 39 Module: (eval) (v1.99) Line: 207 Module: ModPerl::RegistryCooker::run (v1.99) Line: 207 Module: ModPerl::RegistryCooker::default_handler (v1.99) Line: 173 Module: ModPerl::Registry::handler (v1.99) Line: 32

    [Thu Jul 07 11:19:17.596875 2016] [:error] [pid 7540] mkdir /opt/otrs/var/tmp/CacheFileStorable: Permission denied at /opt/otrs//Kernel/System/Cache/FileStorable.pm line 87.\n ERROR: OTRS-CGI-10 Perl: 5.16.3 OS: linux Time: Thu Jul 7 11:19:18 2016

    Message: Can’t create directory ‘/opt/otrs/var/tmp/CacheFileStorable’:

    RemoteAddress: 192.168.16.33 RequestURI: /otrs/installer.pl

    Traceback (7541): Module: Kernel::System::Cache::FileStorable::new Line: 46 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::Cache::new Line: 63 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::SysConfig::_Init Line: 1643 Module: Kernel::System::SysConfig::new Line: 73 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::Modules::Installer::Run Line: 148 Module: Kernel::System::Web::InterfaceInstaller::Run Line: 129 Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_installer_2epl::handler Line: 39 Module: (eval) (v1.99) Line: 207 Module: ModPerl::RegistryCooker::run (v1.99) Line: 207 Module: ModPerl::RegistryCooker::default_handler (v1.99) Line: 173 Module: ModPerl::Registry::handler (v1.99) Line: 32

    [Thu Jul 07 11:19:18.755337 2016] [:error] [pid 7541] mkdir /opt/otrs/var/tmp/CacheFileStorable: Permission denied at /opt/otrs//Kernel/System/Cache/FileStorable.pm line 87.\n ERROR: OTRS-CGI-10 Perl: 5.16.3 OS: linux Time: Thu Jul 7 11:31:46 2016

    Message: Can’t create directory ‘/opt/otrs/var/tmp/CacheFileStorable’:

    RemoteAddress: 192.168.16.33 RequestURI: /otrs/installer.pl

    Traceback (7535): Module: Kernel::System::Cache::FileStorable::new Line: 46 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::Cache::new Line: 63 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::SysConfig::_Init Line: 1643 Module: Kernel::System::SysConfig::new Line: 73 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::Modules::Installer::Run Line: 148 Module: Kernel::System::Web::InterfaceInstaller::Run Line: 129 Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_installer_2epl::handler Line: 39 Module: (eval) (v1.99) Line: 207 Module: ModPerl::RegistryCooker::run (v1.99) Line: 207 Module: ModPerl::RegistryCooker::default_handler (v1.99) Line: 173 Module: ModPerl::Registry::handler (v1.99) Line: 32

    [Thu Jul 07 11:31:46.022581 2016] [:error] [pid 7535] mkdir /opt/otrs/var/tmp/CacheFileStorable: Permission denied at /opt/otrs//Kernel/System/Cache/FileStorable.pm line 87.\n ERROR: OTRS-CGI-10 Perl: 5.16.3 OS: linux Time: Thu Jul 7 14:17:25 2016

    Message: Can’t create directory ‘/opt/otrs/var/tmp/CacheFileStorable’:

    RemoteAddress: 192.168.16.33 RequestURI: /otrs/installer.pl

    Traceback (7535): Module: Kernel::System::Cache::FileStorable::new Line: 46 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::Cache::new Line: 63 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::SysConfig::_Init Line: 1643 Module: Kernel::System::SysConfig::new Line: 73 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::Modules::Installer::Run Line: 148 Module: Kernel::System::Web::InterfaceInstaller::Run Line: 129 Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_installer_2epl::handler Line: 39 Module: (eval) (v1.99) Line: 207 Module: ModPerl::RegistryCooker::run (v1.99) Line: 207 Module: ModPerl::RegistryCooker::default_handler (v1.99) Line: 173 Module: ModPerl::Registry::handler (v1.99) Line: 32

    [Thu Jul 07 14:17:25.996328 2016] [:error] [pid 7535] mkdir /opt/otrs/var/tmp/CacheFileStorable: Permission denied at /opt/otrs//Kernel/System/Cache/FileStorable.pm line 87.\n ERROR: OTRS-CGI-10 Perl: 5.16.3 OS: linux Time: Thu Jul 7 14:17:26 2016

    Message: Can’t create directory ‘/opt/otrs/var/tmp/CacheFileStorable’:

    RemoteAddress: 127.0.0.1 RequestURI: /otrs/installer.pl

    Traceback (7637): Module: Kernel::System::Cache::FileStorable::new Line: 46 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::Cache::new Line: 63 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::SysConfig::_Init Line: 1643 Module: Kernel::System::SysConfig::new Line: 73 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::Modules::Installer::Run Line: 148 Module: Kernel::System::Web::InterfaceInstaller::Run Line: 129 Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_installer_2epl::handler Line: 39 Module: (eval) (v1.99) Line: 207 Module: ModPerl::RegistryCooker::run (v1.99) Line: 207 Module: ModPerl::RegistryCooker::default_handler (v1.99) Line: 173 Module: ModPerl::Registry::handler (v1.99) Line: 32

    [Thu Jul 07 14:17:26.252177 2016] [:error] [pid 7637] mkdir /opt/otrs/var/tmp/CacheFileStorable: Permission denied at /opt/otrs//Kernel/System/Cache/FileStorable.pm line 87.\n [Thu Jul 07 14:41:47.150641 2016] [autoindex:error] [pid 11846] [client 192.168.16.33:42888] AH01276: Cannot serve directory /var/www/html/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive ERROR: OTRS-CGI-10 Perl: 5.16.3 OS: linux Time: Thu Jul 7 14:45:19 2016

    Message: Can’t create directory ‘/opt/otrs/var/tmp/CacheFileStorable’:

    RemoteAddress: 192.168.16.33 RequestURI: /otrs/installer.pl

    Traceback (7637): Module: Kernel::System::Cache::FileStorable::new Line: 46 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::Cache::new Line: 63 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::SysConfig::_Init Line: 1643 Module: Kernel::System::SysConfig::new Line: 73 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::Modules::Installer::Run Line: 148 Module: Kernel::System::Web::InterfaceInstaller::Run Line: 129 Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_installer_2epl::handler Line: 39 Module: (eval) (v1.99) Line: 207 Module: ModPerl::RegistryCooker::run (v1.99) Line: 207 Module: ModPerl::RegistryCooker::default_handler (v1.99) Line: 173 Module: ModPerl::Registry::handler (v1.99) Line: 32

    [Thu Jul 07 14:45:19.804649 2016] [:error] [pid 7637] mkdir /opt/otrs/var/tmp/CacheFileStorable: Permission denied at /opt/otrs//Kernel/System/Cache/FileStorable.pm line 87.\n [Thu Jul 07 14:56:07.122734 2016] [mpm_prefork:notice] [pid 7534] AH00170: caught SIGWINCH, shutting down gracefully [Thu Jul 07 14:56:08.292999 2016] [core:notice] [pid 12836] SELinux policy enabled; httpd running as context system_u:system_r:httpd_t:s0 [Thu Jul 07 14:56:08.293991 2016] [suexec:notice] [pid 12836] AH01232: suEXEC mechanism enabled (wrapper: /usr/sbin/suexec) AH00558: httpd: Could not reliably determine the server’s fully qualified domain name, using localhost.localdomain. Set the ‘ServerName’ directive globally to suppress this message [Thu Jul 07 14:56:08.424998 2016] [auth_digest:notice] [pid 12836] AH01757: generating secret for digest authentication … [Thu Jul 07 14:56:08.425888 2016] [lbmethod_heartbeat:notice] [pid 12836] AH02282: No slotmem from mod_heartmonitor [Thu Jul 07 14:56:08.431903 2016] [mpm_prefork:notice] [pid 12836] AH00163: Apache/2.4.6 (CentOS) mod_perl/2.0.9dev Perl/v5.16.3 configured – resuming normal operations [Thu Jul 07 14:56:08.431925 2016] [core:notice] [pid 12836] AH00094: Command line: ‘/usr/sbin/httpd -D FOREGROUND’ ERROR: OTRS-CGI-10 Perl: 5.16.3 OS: linux Time: Thu Jul 7 14:56:31 2016

    Message: Can’t create directory ‘/opt/otrs/var/tmp/CacheFileStorable’:

    RemoteAddress: 192.168.16.33 RequestURI: /otrs/installer.pl

    Traceback (12840): Module: Kernel::System::Cache::FileStorable::new Line: 46 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::Cache::new Line: 63 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::SysConfig::_Init Line: 1643 Module: Kernel::System::SysConfig::new Line: 73 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::Modules::Installer::Run Line: 148 Module: Kernel::System::Web::InterfaceInstaller::Run Line: 129 Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_installer_2epl::handler Line: 39 Module: (eval) (v1.99) Line: 207 Module: ModPerl::RegistryCooker::run (v1.99) Line: 207 Module: ModPerl::RegistryCooker::default_handler (v1.99) Line: 173 Module: ModPerl::Registry::handler (v1.99) Line: 32

    You have SELinux enebled. Try to disable it. Or if you do not want to disable SELinux you can otrs account to the apache group.

    So i installed OTRS on my CentOS server with IP address: 52.199.155.132 What’s the system FQDN should i enter? 52.199.155.132 or 52.199.155.132/otrs

    Besides, at this step: Provide the necessary credentials in the Configure Inbound Mail section I’m in Japan now, when generating app password, they said: The setting you are looking for is not available for your account. So what else could i do?

    FQDN - Fully Qualified Domain Name. You can run hostname -f to see it.

    Thank you for replying. So i have one more question. I created customer user in “Customer User Management” and set password for it. But i wasn’t be able to login to OTRS using that user. It said: Login failed! Your user name or password was entered incorrectly. I found out that the “Password” item is hidden, i really don’t understand the reason. Here’s the screenshot. http://www.upsieutoc.com/images/2016/07/11/hidden.jpg

    There are two types of users:

    • agents - resolve problems
    • users - customers, reporting them

    And there are two interfaces:

    Here you can try some demo versions: [https://www.otrs.com/otrs-demo-trial/#OTRS Online Demo](https://www.otrs.com/otrs-demo-trial/#OTRS Online Demo)

    Thank you so much. So when customer create new ticket, the agents could see that ticket in their interface. I wonder if there is something like “Notification” for that. I mean if there is new ticket, the agent will receive a new notification about new ticket automatically by email without opening web browser to see it.

    Certainly. You can setup agent notifications. Here the article about how to do that: http://blog.otrs.org/2011/07/06/otrs-tips-tricks-controlling-agent-notifications/

    You can skip the “Mail Configuration” step and configure it later (https://otrs.github.io/doc/manual/admin/5.0/en/html/email-settings.html)

    Hi,

    Can You help me? I’m getting this after installation:

    [root@otrs ~]# systemctl status httpd.service ● httpd.service - The Apache HTTP Server Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled) Active: active (running) since Fri 2016-07-22 08:52:39 CEST; 1min 50s ago Docs: man:httpd(8) man:apachectl(8) Process: 30598 ExecStop=/bin/kill -WINCH ${MAINPID} (code=exited, status=0/SUCCESS) Main PID: 30603 (/usr/sbin/httpd) Status: “Total requests: 10; Current requests/sec: 0; Current traffic: 0 B/sec” CGroup: /system.slice/httpd.service ├─30603 /usr/sbin/httpd -DFOREGROUND ├─30604 /usr/sbin/httpd -DFOREGROUND ├─30605 /usr/sbin/httpd -DFOREGROUND ├─30606 /usr/sbin/httpd -DFOREGROUND ├─30607 /usr/sbin/httpd -DFOREGROUND ├─30608 /usr/sbin/httpd -DFOREGROUND └─30672 /usr/sbin/httpd -DFOREGROUND

    Jul 22 08:52:38 otrs.x.org systemd[1]: Starting The Apache HTTP Server… Jul 22 08:52:39 otrs.x.org systemd[1]: Started The Apache HTTP Server. Jul 22 08:52:53 otrs.x.org OTRS-CGI-10[30604]: [Error][Kernel::System::Cache::FileStorable::new][Line:46]: Can’t create directory ‘/opt/otrs/var/t…orable’: Jul 22 08:53:07 otrs.x.org OTRS-CGI-10[30605]: [Error][Kernel::System::Cache::FileStorable::new][Line:46]: Can’t create directory ‘/opt/otrs/var/t…orable’: Jul 22 08:53:17 otrs.x.org OTRS-CGI-10[30606]: [Error][Kernel::System::Cache::FileStorable::new][Line:46]: Can’t create directory ‘/opt/otrs/var/t…orable’: Jul 22 08:53:26 otrs.x.org OTRS-CGI-10[30607]: [Error][Kernel::System::Cache::FileStorable::new][Line:46]: Can’t create directory ‘/opt/otrs/var/t…orable’: Jul 22 08:54:05 otrs.x.org OTRS-CGI-10[30672]: [Error][Kernel::System::Cache::FileStorable::new][Line:46]: Can’t create directory ‘/opt/otrs/var/t…orable’: Hint: Some lines were ellipsized, use -l to show in full.

    You permissions are incorrect: run the /opt/otrs/bin/otrs.SetPermissions.pl:

    /opt/otrs/bin/otrs.SetPermissions.pl --otrs-user=otrs --web-user=apache --otrs-group=apache --web-group=apache /opt/otrs
    

    Can I ask help again? now I get the following error message:

    Internal Server Error

    The server encountered an internal error or misconfiguration and was unable to complete your request.

    Please contact the server administrator at root@localhost to inform them of the time this error occurred, and the actions you performed just before this error.

    More information about this error may be available in the server error log.

    RemoteAddress: 172.20.68.101 RequestURI: /otrs/installer.pl

    Traceback (3278): Module: Kernel::System::Cache::FileStorable::new Line: 46 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::Cache::new Line: 63 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::SysConfig::_Init Line: 1643 Module: Kernel::System::SysConfig::new Line: 73 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::Modules::Installer::Run Line: 150 Module: Kernel::System::Web::InterfaceInstaller::Run Line: 132 Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_installer_2epl::handler Line: 39 Module: (eval) (v1.99) Line: 207 Module: ModPerl::RegistryCooker::run (v1.99) Line: 207 Module: ModPerl::RegistryCooker::default_handler (v1.99) Line: 173 Module: ModPerl::Registry::handler (v1.99) Line: 32

    [Fri Jul 22 13:26:08.044480 2016] [:error] [pid 3278] mkdir /opt/otrs/var/tmp/CacheFileStorable: Permission denied at /opt/otrs//Kernel/System/Cache/FileStorable.pm line 87.\n ERROR: OTRS-CGI-10 Perl: 5.16.3 OS: linux Time: Fri Jul 22 13:28:06 2016

    Message: Can’t create directory ‘/opt/otrs/var/tmp/CacheFileStorable’:

    RemoteAddress: 172.20.68.101 RequestURI: /otrs/installer.pl

    Traceback (3277): Module: Kernel::System::Cache::FileStorable::new Line: 46 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::Cache::new Line: 63 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::System::SysConfig::_Init Line: 1643 Module: Kernel::System::SysConfig::new Line: 73 Module: Kernel::System::ObjectManager::_ObjectBuild Line: 226 Module: Kernel::System::ObjectManager::Get Line: 180 Module: Kernel::Modules::Installer::Run Line: 150 Module: Kernel::System::Web::InterfaceInstaller::Run Line: 132 Module: ModPerl::ROOT::ModPerl::Registry::opt_otrs_bin_cgi_2dbin_installer_2epl::handler Line: 39 Module: (eval) (v1.99) Line: 207 Module: ModPerl::RegistryCooker::run (v1.99) Line: 207 Module: ModPerl::RegistryCooker::default_handler (v1.99) Line: 173 Module: ModPerl::Registry::handler (v1.99) Line: 32

    [Fri Jul 22 13:28:06.486796 2016] [:error] [pid 3277] mkdir /opt/otrs/var/tmp/CacheFileStorable: Permission denied at /opt/otrs//Kernel/System/Cache/FileStorable.pm line 87.\n

    Try to disable SELinux. Edit file /etc/selinux/config:

    # This file controls the state of SELinux on the system. 
    # SELINUX= can take one of these three values: 
    #     enforcing - SELinux security policy is enforced. 
    #     permissive - SELinux prints warnings instead of enforcing. 
    #     disabled - No SELinux policy is loaded. 
    SELINUX=disabled 
    # SELINUXTYPE= can take one of these two values: 
    #     targeted - Targeted processes are protected, 
    #     mls - Multi Level Security protection. 
    SELINUXTYPE=targeted
    

    Then reboot.

    Wihout SSL i can not send email with Otrs. I tryed otrs only with local Ip 192.168… address. Google says :“Let’s Encrypt will only issue certificates for domain names, not for IP addresses. So to get a Let’s Encrypt certificate, you should register a domain name and then request a certificate for that name.” This manul will work we send and receive gmail in local net?

    Hello. I had a problem in the very beginning. When I try to execute this command sudo yum install epel-release It tells me: Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile No package epel-release available. Error: Nothing to do Please help.

    Make sure you OS is updated. epel-release is now even in older CentOS 6

    Hi There, I have otrs-3.3.8-01.noarch installed on a CentOS 6 with http over few months. Now I need to enable ssl on the system. I configured SSL on ssl.conf file with my CA signed wildcard certificate. when I type https://support.domain.com, it works well with my SSL certificate details. But when I type https://support.domain.com/otrs/index.pl, I recieved error 404 ‘The requested URL /otrs/index.pl was not found on this server’


    Can someone help me to enable SSL on OTRS** ? * Note: I have configured firewall properly to allow port 443 , and public dns record has put for above URL. And http type configured as ‘https’ from Admin> Sysconfig>Framework> Core.

    This comment has been deleted

      hello I get an error message runing the database settings check:

      Error: Please set the value for innodb_log_file_size on your database to at least 256 MB (current: 5 MB, recommended: 512 MB). For more information, please have a look at http://dev.mysql.com/doc/refman/5.6/en/innodb-data-log-reconfiguration.html.

      even though I have added the innodb_log_file_size = 256M to my.cnf file

      Any help much appreciated

      Hello. Did you follow all 6 steps of this instruction: https://dev.mysql.com/doc/refman/5.6/en/innodb-data-log-reconfiguration.html? Adding 256M to my.cnf file is not enough.

      Join the Tech Talk
      Success! Thank you! Please check your email for further details.

      Please complete your information!

      Become a contributor for community

      Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

      DigitalOcean Documentation

      Full documentation for every DigitalOcean product.

      Resources for startups and SMBs

      The Wave has everything you need to know about building a business, from raising funding to marketing your product.

      Get our newsletter

      Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

      New accounts only. By submitting your email you agree to our Privacy Policy

      The developer cloud

      Scale up as you grow — whether you're running one virtual machine or ten thousand.

      Get started for free

      Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

      *This promotional offer applies to new accounts only.