Linux binary packages

Supported distributions

Binary installation packages are available for:

  • Ubuntu 18 LTS

  • Red Hat Enterprise Linux 8 (Enterprise Edition only)

  • CentOS 8 (Enterprise Edition only)

  • Suse 15 (Enterprise Edition only)

  • OpenSuse 15 (Enterprise Edition only)

Installing on other Linux distributions is also possible, but you’ll first need to build the frePPLe package from the source package as described in a following page. The build and installation process are completely standardized for debian-based distributions and RPM-based based distributions.

Installation and configuration

The binary package installs the solver engine executables as well as the user interface. The user interface is installed as a WSGI application deployed on the Apache web server with the mod_wsgi module.

Here are the steps to get a fully working environment.

  1. Download the installation package

    For installation on Linux you need a .deb (debian-based distributions) or .rpm (Red Hat based distributions) package file.

    For the Community Edition these can be freely downloaded from https://github.com/frePPLe/frepple/releases.

    For the Enterprise Edition you need to download these from the customer portal on the frePPLe website https://frepple.com/customer-portal/downloads/

  2. Install and tune the PostgreSQL database

    Install postgreSQL 9.5 or higher, the world’s most advanced open source database.

    FrePPLe assumes that the database uses UTF-8 encoding.

    FrePPLe needs the following settings for its database connections. If these values are configured as default for the database (in the file postgresql.conf) or the database role (using the ‘alter role’ command), a small performance optimization is achieved:

    client_encoding: 'UTF8',
    default_transaction_isolation: 'read committed',
    timezone: 'Europe/Brussels'  # Value of TIME_ZONE in your djangosettings.py file
    

    FrePPLe can communicate with the PostgreSQL server using either a) Unix domain sockets (‘local’ in pg_hba.conf) or b) TCP IP4 or IP6 sockets.

    FrePPLe can authenticate on the PostgreSQL database using either a) a password (‘md5’ in pg_hba.conf) or b) OS username (‘peer’ and ‘ident’ in pg_hba.conf).

    In case of error (while creating the databases) “Postgres PG::Error: ERROR: new encoding (UTF8) is incompatible”:

    UPDATE pg_database SET datistemplate = FALSE WHERE datname = 'template1';
    DROP DATABASE template1;
    CREATE DATABASE template1 WITH TEMPLATE = template0 ENCODING = 'UNICODE';
    UPDATE pg_database SET datistemplate = TRUE WHERE datname = 'template1';
    \c template1
    VACUUM FREEZE;
    
  3. Tune the database

    The default installation of PostgreSQL is not configured right for intensive use. We highly recommend using the pgtune utility (or its online version at http://pgtune.leopard.in.ua/) to optimize the configuration for your hardware.

  4. Create the database and database user

    A database needs to be created for the default database, and one for each of the what-if scenarios you want to configure.

    The same user is normally used as the owner of these databases.

    The typical SQL statements are shown below. Replace USR, PWD, DB with the suitable values.

    create user USR with password 'PWD';
    create database DB encoding 'utf-8' owner USR;
    
  5. Install Python3 and pip3

    You’ll need to install the Python 3.4 or higher and ensure the pip3 command is available. Most Linux distributions provide python2 by default, and you’ll need python3 in parallel with it.

    On RPM based distributions:

    dnf install python3 python3-pip
    

    On Debian based distributions:

    apt-get install python3 python3-pip
    
  6. Install the Python modules

    The python3 modules used by frePPLe are listed in the dependency file “requirements.txt”. You can install these with a pip3 command. Make sure to run it as root user or use sudo (otherwise the packages will be installed locally for that user instead of system-wide), and to replace 6.0.0 with the appropriate version number.

    sudo -H pip3 install -r https://raw.githubusercontent.com/frepple/frepple/6.0.0/requirements.txt
    
  7. Install the frepple binary package

    On Fedora:

    dnf install frepple
    

    On Debian based distributions:

    dpkg -i frepple_*.deb
    apt-get -f -y -q install
    

    On RHEL:

    dnf --nogpgcheck localinstall  *.rpm
    
  8. Configure frePPLe

    The previous step installed a number of configuration files, which you now need to review and edit:

    1. /etc/frepple/djangosettings.py

      Edit the “TIMEZONE” variable to your local setting:
      TIME_ZONE = 'Europe/Brussels'
      

      Edit the “DATABASES” with your database parameters. Make sure the settings match the connection and authentication configured in the file pg_hba.conf of the PostgreSQL database.

      DATABASES = {
        'default': {
          'ENGINE': 'django.db.backends.postgresql',
          'NAME': 'frepple',
          'USER': 'frepple',     # Role name when using md5 authentication.
                                 # Leave as an empty string when using peer or
                                 # ident authencation.
          'PASSWORD': 'frepple', # Role password when using md5 authentication.
                                 # Leave as an empty string when using peer or
                                 # ident authencation.
          'HOST': '',            # When using TCP sockets specify the hostname,
                                 # the ip4 address or the ip6 address here.
                                 # Leave as an empty string to use Unix domain
                                 # socket ("local" lines in pg_hba.conf).
          'PORT': '',            # Leave to empty string when using Unix domain sockets.
                                 # Specify the port number when using a TCP socket.
          'OPTIONS': {},         # Backend specific configuration parameters.
          'TEST': {
            'NAME': 'test_frepple' # Database name used when running the test suite.
            }
          },
       ...
      

      Change the “SECRET_KEY” to some arbitrary value - important for security reasons.

      SECRET_KEY = '%@mzit!i8b*$zc&6oev96=RANDOMSTRING'
      

      Change the “INSTALLED_APPS” to match your environment and the licensed modules.

      INSTALLED_APPS = (
        'django.contrib.auth',
        'django.contrib.contenttypes',
        'django.contrib.messages',
        'django.contrib.staticfiles',
        'bootstrap3',
        'freppledb.boot',
        #                                << ADD YOUR CUSTOM EXTENSION APPS HERE
        'freppledb.wizard',              << COMMENT IF MODEL BUILDING WIZARD ISN'T NEEDED
        'freppledb.quoting',
        'freppledb.demandhits',        # << COMMENT IF YOU DON'T NEED THE FORECASTING MODULE
        'freppledb.input',
        'freppledb.forecast',          # << COMMENT IF YOU DON'T NEED THE FORECASTING MODULE
        'freppledb.inventoryplanning', # << COMMENT IF YOU DON'T NEED THE INVENTORY PLANNING MODULE
        #'freppledb.odoo',             # << UNCOMMENT TO ACTIVATE THE ODOO INTEGRATION
        #'freppledb.erpconnection',    # << UNCOMMENT TO ACTIVATE THE GENERIC ERP INTEGRATION
        #'freppledb.openbravo',        # << UNCOMMENT TO ACTIVATE THE OPENBRAVO INTEGRATION
        'freppledb.planningboard',
        'freppledb.webservice',        # << UNCOMMENT WHEN USING FORECASTING, QUOTING OR INVENTORY PLANNING APP
        'freppledb.metrics',
        'freppledb.output',
        'freppledb.execute',
        'freppledb.common',
        'django_filters',
        'rest_framework',
        'django_admin_bootstrapped',
        'django.contrib.admin',
        # The next two apps allow users to run their own SQL statements on
        # the database, using the SQL_ROLE configured above.
        'freppledb.reportmanager',
        'freppledb.executesql',
        )
      
    2. /etc/frepple/license.xml
      No license file is required for the Community Edition.
      If you are using the Enterprise Edition, replace this file with the
      license file you received from us.
    3. /etc/httpd/conf.d/z_frepple.conf
      For a standard deployment this file doesn’t need modification.
      It only needs review if you have specific requirements for the setup of
      the Apache web server.
  9. Create the database schema

    Your database is still empty now. The command below will create all objects in the database schema and load some standard parameters.

    frepplectl migrate
    
  10. Optionally, load the demo dataset

    On a first installation, you may choose to install the demo dataset.

    frepplectl loaddata demo
    
  11. Update apache web server (Ubuntu only)

    On Ubuntu the following statements are required to complete the deployment on the Apache web server.

    sudo a2enmod expires
    sudo a2enmod wsgi
    sudo a2enmod ssl
    sudo a2enmod proxy             # Only Enterprise Edition
    sudo a2enmod proxy_wstunnel    # Only Enterprise Edition
    sudo a2ensite default-ssl
    sudo a2ensite frepple
    sudo service apache2 restart
    
  12. Verify the installation

    If all went well you can now point your browser to http://localhost.

    An administrative user account is created by default: admin, with password admin.

    Try the following as a mini-test of the installation:

    1. Open the screen “input/demand” to see demand inputs.

    2. Open the screen “admin/execute” and generate a plan.

    3. Use the same “admin/execute” screen to copy the default data in a new scenario.

    4. Open the screen “output/resource report” to see the planned load on the resources.

    If these steps all give the expected results, you’re up and running!

Tip

For security reasons it is recommended to change the password of the admin user. Until it is changed, a message is displayed on the login page.

Debian installation script

This section shows the completely automated installation script for installing and configuring frePPLe with a PostgreSQL database on a Debian server.

We use this script for our unit tests. You can use it as a guideline and inspiration for your own deployments.

# Bring the server up to date
sudo apt-get -y -q update
sudo apt-get -y -q upgrade

# Install PostgreSQL
# For a production installation you'll need to tune the database
# configuration to match the available hardware.
sudo apt-get -y install postgresql
sudo su - postgres
psql template1 -c "create user frepple with password 'frepple' createrole"
psql template1 -c "create database frepple encoding 'utf-8' owner frepple"
psql template1 -c "create database scenario1 encoding 'utf-8' owner frepple"
psql template1 -c "create database scenario2 encoding 'utf-8' owner frepple"
psql template1 -c "create database scenario3 encoding 'utf-8' owner frepple"
exit
# The default frePPLe configuration uses md5 authentication on unix domain
# sockets to communicate with the PostgreSQL database.
sudo sed -i 's/local\(\s*\)all\(\s*\)all\(\s*\)peer/local\1all\2all\3\md5/g' /etc/postgresql/*/main/pg_hba.conf
sudo service postgresql restart

# Install python3 and required python modules
sudo apt-get -y install python3 python3-pip
sudo -H pip3 install -r https://raw.githubusercontent.com/frepple/frepple/6.0.0/requirements.txt

# Install the frePPLe binary .deb package and the necessary dependencies.
# There are frepple, frepple-doc and frepple-dev debian package files.
# Normally you only need to install the frepple debian package.
sudo dpkg -i frepple_*.deb
sudo apt-get -f -y -q install

# Configure apache web server
sudo a2enmod expires
sudo a2enmod wsgi
sudo a2enmod ssl
sudo a2enmod proxy             # Only Enterprise Edition
sudo a2enmod proxy_wstunnel    # Only Enterprise Edition
sudo a2ensite default-ssl
sudo a2ensite frepple
sudo service apache2 restart

# Create frepple database schema
sudo frepplectl migrate --noinput

Debian uninstallation script

Uninstallation is as simple as:

# Drop all postgresql database. Repeat this command for all databases
# configured in the /etc/frepple/djangosettings.py file
sudo dropdb -U <db-user>  <db-name>

# Uninstall the package, including log files and configuration files
sudo apt-get purge frepple

Red Hat installation script

This section shows the completely automated installation script for installing and configuring frePPLe with a PostgreSQL database on a RHEL 6 server.

We use this script for our unit tests. You can use it as a guideline and inspiration for your own deployments.

# Update and upgrade
sudo -S -n dnf -y update

# Install the PostgreSQL database
# For a production installation you'll need to tune the database
# configuration to match the available hardware.
sudo dnf install postgresql postgresql-server
sudo service postgresql initdb
sudo service postgresql start
sudo su - postgres
psql -dpostgres -c "create user frepple with password 'frepple' createrole"
psql -dpostgres -c "create database frepple encoding 'utf-8' owner frepple"
psql -dpostgres -c "create database scenario1 encoding 'utf-8' owner frepple"
psql -dpostgres -c "create database scenario2 encoding 'utf-8' owner frepple"
psql -dpostgres -c "create database scenario3 encoding 'utf-8' owner frepple"
exit
# The default frePPLe configuration uses md5 authentication on unix domain
# sockets to communicate with the PostgreSQL database.
sudo sed -i 's/local\(\s*\)all\(\s*\)all\(\s*\)peer/local\1all\2all\3\md5/g' /etc/postgresql/*/main/pg_hba.conf
sudo service postgresql restart

# Install python3 and required python modules
sudo dnf install python3 python3-pip
sudo -H pip3 install -r https://raw.githubusercontent.com/frepple/frepple/6.0.0/requirements.txt

# Install the frePPLe binary RPM package and the necessary dependencies.
# There are frepple, frepple-doc and frepple-dev package files.
# Normally you only need to install the frepple package.
sudo dnf --nogpgcheck localinstall  frepple*.rpm

# Create frepple database schema
sudo frepplectl migrate --noinput

Suse installation instructions

This section shows the instructions for installing and configuring frePPLe with a PostgreSQL database on a SLES 12 server.

You can use it as a guideline and inspiration for your own deployments.

# Update and Upgrade
sudo zypper refresh
sudo zypper update

# Install the PostgreSQL database
# tip: "sudo zypper se PACKAGENAME" to look for the correct package names
sudo zypper install postgresql94 postgresql94-server postgresql94-devel

# Note: frePPLe requires packages that may not be present in the basic Suse Enterprise Server repositories so you may need to add these repositories and install:
sudo zypper addrepo http://download.opensuse.org/repositories/Apache:Modules/SLE_12_SP1/Apache:Modules.repo
sudo zypper refresh
sudo zypper install apache2-mod_wsgi-python3
sudo zypper addrepo http://download.opensuse.org/repositories/devel:languages:python3/SLE_12_SP1/devel:languages:python3.repo
sudo zypper refresh
sudo zypper install python3-psycopg2

# Create user, create databases, configure access
sudo su
sudo systemctl start postgresql
su - postgres
psql
postgres=# ALTER USER postgres WITH PASSWORD 'postgres';
postgres=# \q
exit
sudo systemctl restart postgresql
su - postgres
psql -dpostgres -c "create user frepple with password 'frepple' createrole"
psql -dpostgres -c "create database frepple encoding 'utf-8' owner frepple"
psql -dpostgres -c "create database scenario1 encoding 'utf-8' owner frepple"
psql -dpostgres -c "create database scenario2 encoding 'utf-8' owner frepple"
psql -dpostgres -c "create database scenario3 encoding 'utf-8' owner frepple"
exit
# Allow local connections to the database using a username and password.
# The default peer authentication isn't good for frepple.
sudo sed -i 's/local\(\s*\)all\(\s*\)all\(\s*\)peer/local\1all\2all\3\md5/g' /var/lib/pgsql/data/pg_hba.conf
sudo systemctl restart postgresql

# Install python3 and required python modules
sudo zypper install python3 python3-pip
sudo python3 -m ensure pip
sudo -H pip3 install -r https://raw.githubusercontent.com/frepple/frepple/5.0.0/requirements.txt

#install Apache2 modules:
sudo a2enmod mod_access_compat mod_deflate
sudo a2enmod proxy proxy_wstunnel    # Only Enterprise Edition
sudo systemctl restart apache2
#for some reason some modules may not be loading in apache
#use "sudo httpd -t" to check is the syntax is ok
#is there are errors you may need to edit  "/etc/apache2/loadmodule.conf" and add the modules:
# LoadModule wsgi_module                               /usr/lib64/apache2/mod_wsgi.so
# LoadModule access_compat_module                 /usr/lib64/apache2/mod_access_compat.so
# LoadModule deflate_module                            /usr/lib64/apache2/mod_deflate.so
# LoadModule deflate_proxy                            /usr/lib64/apache2/mod_proxy.so
# LoadModule proxy_wstunnel                            /usr/lib64/apache2/mod_proxy_wstunnel.so

# Install the frePPLe binary RPM package and the necessary dependencies.
# There are frepple, frepple-doc and frepple-dev package files.
# Normally you only need to install the frepple package.
sudo rpm -i *.rpm
or
sudo zypper install *.rpm

# Create frepple database schema
sudo frepplectl migrate --noinput