<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>article Qlik Replicate Endpoint Server not starting in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-Endpoint-Server-not-starting/ta-p/2526747</link>
    <description>&lt;P&gt;This article provides a solution for the Qlik Replicate Endpoint server not starting as expected. Symptoms of this include:&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;Endpoints are not listed in the &lt;EM&gt;Create new endpoint&lt;/EM&gt; dialogue&lt;/LI&gt;
&lt;LI&gt;The message &lt;EM&gt;One or more Endpoint Servers cannot be reached&lt;/EM&gt; is displayed&lt;/LI&gt;
&lt;LI&gt;The Endpoint Server appears in an "Error" state&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;About the Endpoint Server&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;The &lt;FONT color="#339966"&gt;&lt;STRONG&gt;Endpoint Server&lt;/STRONG&gt;&lt;/FONT&gt; is a &lt;FONT color="#339966"&gt;&lt;STRONG&gt;Qlik Replicate JAVA subcomponent&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp;that will only start when an endpoint requiring it is enabled in the Qlik Replicate license.&amp;nbsp;Most endpoints will not need it (as they are written in C). A list of those that do can be found in &lt;A href="https://help.qlik.com/en-US/replicate/May2025/Content/Global_Common/Content/SharedEMReplicate/Server%20Settings/Endpoints.htm#anchor-2" target="_blank" rel="noopener"&gt;Endpoint Server | Supported Endpoints&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;For more information about the Qlik Replicate Endpoint Server, see &lt;A href="https://help.qlik.com/en-US/replicate/Content/Global_Common/Content/SharedEMReplicate/Server%20Settings/Endpoints.htm#anchor-1" target="_blank" rel="noopener"&gt;Endpoint Servers | help.qlik.com&lt;/A&gt;.&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Symptoms&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;Sometimes, when enabling Qlik Replicate endpoints such as SAP, Salesforce, or MongoDB, either explicitly or by importing an all-open license, the Endpoint Server Component may not start up on a Linux Server.&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;One or more Endpoint Servers cannot be reached&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;When looking at Endpoint Servers in the &lt;STRONG&gt;Qlik Replicate UI&amp;nbsp;&lt;/STRONG&gt;and navigating to &lt;STRONG&gt;Server&lt;/STRONG&gt; &amp;gt; &lt;STRONG&gt;Endpoints&lt;/STRONG&gt;&amp;nbsp;(&lt;STRONG&gt;A&lt;/STRONG&gt;) &amp;gt; &lt;STRONG&gt;Endpoint Servers&amp;nbsp;&lt;/STRONG&gt;(&lt;STRONG&gt;B&lt;/STRONG&gt;),&amp;nbsp;you may see that it failed and might have even been registered on &lt;STRONG&gt;port 0&amp;nbsp;&lt;/STRONG&gt;(&lt;STRONG&gt;C&lt;/STRONG&gt;) :&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="endpoint server cannot be reached.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/182777i0E45B119BC3FAE53/image-size/large?v=v2&amp;amp;px=999" role="button" title="endpoint server cannot be reached.png" alt="endpoint server cannot be reached.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Endpoint not available at endpoint creation&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;The expected endpoint may not be available, even if it has been correctly enabled in the license.&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Resolution&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;Review the parameters with which the &lt;EM&gt;/tmp&lt;/EM&gt; folder is mounted on the server:
&lt;PRE&gt;sh-4.4$ cat /proc/mounts | grep /tmp&lt;BR /&gt;tmpfs /tmp tmpfs rw,nosuid,nodev,&lt;STRONG&gt;noexec&lt;/STRONG&gt;,seclabel,size=32G,nr_inodes=1048576,mode=1777 0 0&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Allocate a temporary folder in the Qlik Replicate file system and make sure it’s under the same owner as the rest of the product libraries. Generally, this will be the “attunity” user ID:
&lt;PRE&gt;sh-4.4$ mkdir /opt/attunity/tmp&lt;BR /&gt;sh-4.4$ chown attunity:attunity /opt/attunity/tmp&lt;BR /&gt;sh-4.4$ chmod 755 /opt/attunity/tmp&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Take a backup of your current &lt;EM&gt;/opt/attunity/replicate/bin/site_arep_login.sh&lt;/EM&gt;&lt;/LI&gt;
&lt;LI&gt;Update the &lt;EM&gt;/opt/attunity/replicate/bin/site_arep_login.sh&lt;/EM&gt; adding a line:
&lt;PRE&gt;export AT_JVM_OPT=-Djava.io.tmpdir=/opt/attunity/tmp&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Stop the Qlik Replicate server&lt;/LI&gt;
&lt;LI&gt;Load the new settings:
&lt;PRE&gt;sh-4.4$ cd /opt/attunity/replicate/bin&lt;BR /&gt;sh-4.4$ source arep_ligin.sh&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Start the Qlik Replicate server&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;If the endpoint enablement prerequisites have been fully fulfilled, you will now see the new endpoints in the endpoint list, and the endpoint server will appear active and assigned to a non-zero port on the server:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="correctly started endpoint server.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/182780i8612C1CB5294BA7F/image-size/large?v=v2&amp;amp;px=999" role="button" title="correctly started endpoint server.png" alt="correctly started endpoint server.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Cause&lt;/FONT&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;This issue is typically caused by the default Linux &lt;EM&gt;/tmp&lt;/EM&gt; file system being mounted with the&amp;nbsp;&lt;STRONG&gt;noexec&amp;nbsp;&lt;/STRONG&gt;option, which prevents any executable (&lt;FONT face="courier new,courier"&gt;.so&lt;/FONT&gt; or &lt;FONT face="courier new,courier"&gt;.jar&lt;/FONT&gt;) from running from any sub-folder on this mount point.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Related Content&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/H3&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;A href="https://help.qlik.com/en-US/replicate/Content/Global_Common/Content/SharedEMReplicate/Server%20Settings/Endpoints.htm#anchor-1" target="_blank" rel="noopener"&gt;Endpoint Servers&lt;/A&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;A href="https://community.qlik.com/t5/Official-Support-Articles/Endpoint-Server-Not-Connecting-on-Linux-based-Qlik-Replicate/ta-p/2513341" target="_self"&gt;Endpoint Server Not Connecting on Linux based Qlik Replicate&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Internal Investigation ID(s)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P class="lia-indent-padding-left-30px" data-unlink="true"&gt;SUPPORT-4605&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Environment&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;UL&gt;
&lt;LI&gt;Qlik Replicate&lt;/LI&gt;
&lt;/UL&gt;</description>
    <pubDate>Mon, 01 Sep 2025 07:14:54 GMT</pubDate>
    <dc:creator>dima_etkin</dc:creator>
    <dc:date>2025-09-01T07:14:54Z</dc:date>
    <item>
      <title>Qlik Replicate Endpoint Server not starting</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-Endpoint-Server-not-starting/ta-p/2526747</link>
      <description>&lt;P&gt;This article provides a solution to when the endpoint server does not start, which could be manifested by endpoint server endpoints not appearing in the endpoint selection list of the “Create new endpoint” dialogue or/and the Endpoint Server appearing as failed.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 07:14:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Qlik-Replicate-Endpoint-Server-not-starting/ta-p/2526747</guid>
      <dc:creator>dima_etkin</dc:creator>
      <dc:date>2025-09-01T07:14:54Z</dc:date>
    </item>
  </channel>
</rss>

