Increase the user process limits for the apg user account to a maximum of 65534. This modification enables services to open 65534 files and 65534 processes when needed. This step is required for proper functioning of the core software.

Prerequisites

  • Make sure you have a login with root privileges.
  • The core software installed on a server running Red Hat Enterprise Linux 6/7/8, SUSE Linux Enterprise Server (SLES) 12, or any other supported Linux operating systems.

Procedure

  1. Open the /etc/security/limits.conf file.
  2. Add the following lines for the user.
    In this example, the user is apg.
    apg   hard  nofile  65534
    apg   soft  nofile  65534
    apg   hard  nproc   65534
    apg   soft  nproc   65534
    
  3. Save the file.
  4. To verify the changes, type the following command:
    su apg -c 'ulimit -n -u'
  5. In the apg.properties file, edit the hostname to a FQDN host name.
  6. To restart the services, type the following commands from the bin directory of the installation:
    ./manage-modules.sh service stop all
    ./manage-modules.sh service start all