Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

These are the minimum settings that should be reviewed when first installing Apliqo FPM. You should review all the settings and make sure they are appropriate for your environment.

In this section we will cover.

Table of Contents
stylenone

Welcome the Apliqo FPM

The first-time logging you log into Apliqo FPM you see the Get Started page.

...

If you change the Admin ADMIN password, you will also need to update the password in the following places.

...

Check that the following settings are true for your environment.

Menu: Apliqo Settings Navigate to the tab, Administration > System > Settings > Essential Params

...

Enter the Customer Name and Customer Key provided by Apliqo.

File System

Menu: Apliqo Settings Navigate to the tab, Administration > System > Settings > File System Location Params

...

For this training material we are using the Apliqo demo.sqlite database.

Menu: Apliqo Settings Navigate to the tab, Administration > System > Settings > Database Connection Params

...

The ODBC Datasource User parameter and ODBC Datasource Pwd parameter are left blank for the demo.sqlite database.

Backup Params

Navigate to the tab, Administration > System > Settings > Backup Params. Check the TM1 Server Name parameter has the value “ApliqoFPM” ApliqoFPM.

...

There is 7zip.exe installed with Apliqo FPM located at, .\[Apliqo FPM]\batch\7z\7za.exe.

Run To confirm the backup settings are correct, run the [Backup] process. You should get the message:

...

The chore: APQ.Server.Backup is scheduled daily at 08:45 to backup back-up the Apliqo FPM data folder.

Rule Splicing Tool

Open the file, .\ApliqoFPM\batch\rule-splicing-tool\config\connection.json. Check the values are correct for your environment.

  • address: Machine Name or IP address where the Apliqo FPM model is being hosted. You can use localhost if the splicer and Apliqo FPM are on the same machine.

  • port: The HTTPPortNumber parameter for the Apliqo FPM model.

  • ssl: true or false. The same value as the UseSSL parameter for the Apliqo FPM model.

  • user: Is ADMIN account or an account that has admin privileges.

  • password: The password for the user nominated in user parameter of the connection.json file.

Code Block
{
    "data_instance": {
        "address": "localhost",
        "port": "30031",
        "ssl": true,
        "user": "admin",
        "password": ""
    }
}

...