fmeCommonConfig.txt
        
##########################################
                                            # FME Server Common Config File Parameters
                                            ##########################################
                                            #
                                            # Changes to any parameter value in this file will take effect only upon
                                            # subsequent restart of the FME Server.
                                            #
                                            # The following parameters must be present in the config file and named exactly
                                            # as shown:
                                            #
                                            #--------------------------------------------------------------------------
                                            # Connection Limits
                                            #--------------------------------------------------------------------------
                                            #
                                            # MAX_PENDING_CONNECT_REQUESTS - Maximum number of pending connect requests to allow on the
                                            #                                REQUEST_PORT. Connect requests after this number will be
                                            #                                rejected, rather than queued up for later processing.
                                            #
                                            # CHANNEL_READ_BUFFER_SIZE - Size of channel buffer used to read in client requests. The default is
                                            #                            8192. A larger buffer size may increase the speed of reading larger
                                            #                            client requests, however, excessively large buffer sizes may decrease
                                            #                            the speed of reading smaller client requests.
                                            #
                                            #--------------------------------------------------------------------------
                                            # Environment
                                            #--------------------------------------------------------------------------
                                            #
                                            #LOCALE_CONFIG_PATH - the path to the FME localization config file which contains the FME_LOCALE property
                                            #
                                            #          If no file path or an invalid file path is specified, then the default system locale is used.
                                            #
                                            #          If a valid file path is specified, the FME locale in the specified file is used.
                                            #          If there is no FME_LOCALE property in the file, then the default system locale is used.
                                            #
                                            #          The language, country and variant are separated by underscores.
                                            #          Language is always lower case, and country is always upper case.
                                            #					 Examples: "en", "de_DE", "_GB", "en_US_WIN", "de__POSIX", "fr__MAC"
                                            #
                                            #
                                            # ROOT_PATH - The root path under which FME Server system files can be found.
                                            #
                                            # SERVER_PATH - The root path under which Server files can be found on FME Server.
                                            #
                                            # RESOURCE_PATH - The root path under which FME Server system resources can be found. Resources
                                            #                 include localisable log message files, system properties, system state files, etc.
                                            #
                                            # CLIENTS_PATH - The root path under which FME Server client files can be found.
                                            #
                                            #--------------------------------------------------------------------------
                                            # Security Management
                                            #--------------------------------------------------------------------------
                                            #
                                            # SECURITY_HOME - The root path under which security modules reside.
                                            #
                                            # SECURITY_DEBUG - Can be true or false. If true, enables security debug messages to appear in
                                            #                  log files. If false, no security debug messages will appear.
                                            #
                                            #--------------------------------------
                                            # Authorization
                                            #--------------------------------------
                                            # DEFAULT_OWNER - The owner of the FME Server components added in the post-install scripts.
                                            #                 Components include services, repositories, tasks, topics and subscriptions.
                                            #                 The default owner must be a valid FME Server user.
                                            #
                                            #-------------------------------------
                                            # Distribution Management
                                            #-------------------------------------
                                            #
                                            # NODE_ENGINE_ADMIN_PORT - The integer port number on which the FME Server Engine node accepts requests.
                                            #                          The port number specified here must match the value assigned to the
                                            #                          NODE_ADMIN_PORT parameter defined in the processMonitorConfigEngines.txt
                                            #                          file used to configure the FME Engines Process Monitor.
                                            #
                                            # NODE_CORE_ADMIN_PORT - The Core administration port used to manage SYSTEM processes.
                                            #
                                            #-------------------------------------
                                            # Queue Connection
                                            #-------------------------------------
                                            #
                                            # QUEUE_PASSWORD - Queue password.
                                            #
                                            #--------------------------------------------------------------------------
                                             
                                            # ************** FME SERVER SETTINGS START **************
                                             
                                            FME_INCLUDE_FILE={{getv "/installdir"}}/Server/fmeDatabaseConfig.txt
                                             
                                            #--------------------------------------------------------------------------
                                            # Connection Limits
                                            #--------------------------------------------------------------------------
                                            MAX_PENDING_CONNECT_REQUESTS=500
                                            CHANNEL_READ_BUFFER_SIZE=8192
                                             
                                            #--------------------------------------------------------------------------
                                            # Environment
                                            #--------------------------------------------------------------------------
                                            LOCALE_CONFIG_PATH={{getv "/repositoryserverrootdir"}}/localization/fmeLocaleConfig.txt
                                            ROOT_PATH={{getv "/installdir"}}
                                            SERVER_PATH={{getv "/installdir"}}/Server
                                            RESOURCE_PATH={{getv "/repositoryserverrootdir"}}/localization
                                            CLIENTS_PATH={{getv "/installdir"}}/Clients
                                             
                                            #--------------------------------------------------------------------------
                                            # Key Management
                                            #--------------------------------------------------------------------------
                                            KEY_PATH={{getv "/repositoryserverrootdir"}}/key
                                             
                                            #--------------------------------------------------------------------------
                                            # Security Management
                                            #--------------------------------------------------------------------------
                                            SECURITY_HOME={{getv "/installdir"}}/Server/security
                                            SECURITY_DEBUG=false
                                             
                                            #--------------------------------------
                                            # Deployment Management
                                            #--------------------------------------
                                            NODE_NAME={{getv "/nodename"}}
                                            NODE_DESCRIPTION=FME Server running on {{getv "/nodename"}}
                                            NODE_HOST={{getv "/nodename"}}
                                             
                                            NODE_ENGINE_ADMIN_PORT={{getv "/processmonitoradminportengine" "7500"}}
                                            NODE_CORE_ADMIN_PORT={{getv "/processmonitoradminportcore" "7501"}}
                                             
                                            #--------------------------------------
                                            # Authorization
                                            #--------------------------------------
                                            SECURITY_FME_SERVER_CLUSTER={{getv "/securitycluster" "DEFAULT"}}
                                            DEFAULT_OWNER={{getv "/adminusername" "admin"}}
                                             
                                            #-------------------------------------
                                            # Queue Connection
                                            #-------------------------------------
                                             
                                            QUEUE_PASSWORD={{if eq (getv "/redispassword") "sozPpbLfgdI9WJoPejNMpSxGw"}}{{getv "/redispasswordencrypted" "fme_enc:a9S1BMk2qwTOvH6piD6/2U8nW0HpJbc82N2Evwlkuwk="}}{{else}}{{getv "/redispassword"}}{{end}}
                                            QUEUE_MAXNUMCLIENT=300
                                            QUEUE_PORT={{getv "/redisport" "6379"}}
                                            QUEUE_HOST={{getv "/redishosts" "localhost"}}
                                             
                                            # ************** FME SERVER SETTINGS END **************