<?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 Endpoint Server Not Connecting on Linux-based Qlik Replicate server in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Endpoint-Server-Not-Connecting-on-Linux-based-Qlik-Replicate/ta-p/2513341</link>
    <description>&lt;P&gt;The following errors may occur after upgrading the Linux environment running a Linux-based Qlik Replicate server:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Endpoint Server not showing &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Endpoint Server not connecting&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Environment:&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;Qlik Replicate&lt;/LI&gt;
&lt;LI&gt;Linux&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the Qlik Replicate service attempts to run Java executables from a mounted temporary directory, it's essential to check if the &lt;STRONG&gt;noexec&lt;/STRONG&gt; option is set on the mounted disk.&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Checking /etc/fstab&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;You can use the command &lt;FONT face="courier new,courier"&gt;cat /etc/fstab&lt;/FONT&gt; to display the contents of the &lt;FONT face="courier new,courier"&gt;/etc/fstab&lt;/FONT&gt; file.&lt;/P&gt;
&lt;P&gt;Example of Temporary Directory with &lt;STRONG&gt;noexec&lt;/STRONG&gt;:# Added by CIS Linux Build Kit&lt;/P&gt;
&lt;PRE&gt;tmpfs /tmp tmpfs defaults,noexec,nosuid,nodev 0 0&lt;/PRE&gt;
&lt;P&gt;Example of Temporary Directory without &lt;STRONG&gt;noexec&lt;/STRONG&gt;:# Added by CIS Linux Build Kit&lt;/P&gt;
&lt;PRE&gt;tmpfs /tmp tmpfs defaults,nosuid,nodev 0 0&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Understanding "noexec"&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;The &lt;STRONG&gt;noexec&lt;/STRONG&gt; option in Linux is used to prevent the execution of binaries on a mounted filesystem. This feature enhances security by ensuring that scripts or executables cannot be run from certain directories, such as temporary directories.&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Understanding "mount"&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;The &lt;FONT color="#339966"&gt;&lt;STRONG&gt;mount&lt;/STRONG&gt;&lt;/FONT&gt; command in Linux is used to attach filesystems to the directory tree at a specified mount point. This allows access to files and directories on various storage devices, including hard drives, USB drives, or network shares.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Resolution&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;To resolve the problem:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;STRONG&gt;Stop all Qlik Replicate tasks&lt;/STRONG&gt;: Ensure all replicate tasks are stopped.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Edit the &lt;FONT face="courier new,courier"&gt;/etc/fstab&lt;/FONT&gt; file:&lt;/STRONG&gt; Use &lt;FONT face="courier new,courier"&gt;vi&lt;/FONT&gt; to remove the &lt;FONT face="courier new,courier"&gt;noexec &lt;/FONT&gt;option from the &lt;FONT face="courier new,courier"&gt;fstab&lt;/FONT&gt; file and save the changes.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Stop the Qlik Replicate service&lt;/STRONG&gt;: Execute the command:
&lt;PRE&gt;systemctl stop areplicate&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Verify the service status&lt;/STRONG&gt;: Check if the service has stopped by running:
&lt;PRE&gt;systemctl status areplicate&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Reboot the system&lt;/STRONG&gt;: Run the command:
&lt;PRE&gt;sudo shutdown now&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Verify &lt;FONT face="courier new,courier"&gt;noexec&lt;/FONT&gt; was removed successfully&lt;/STRONG&gt;: After the system has restarted, verify if &lt;FONT face="courier new,courier"&gt;noexec &lt;/FONT&gt;has been removed by running:
&lt;PRE&gt;cat /etc/fstab&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Check the Qlik Replicate status&lt;/STRONG&gt;: Verify that all Qlik Replicate services are running with:
&lt;PRE&gt;ps -ef | grep rep&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;STRONG&gt;Check Endpoint Server Status&lt;/STRONG&gt;: Ensure the endpoint server is running by executing:&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;PRE&gt;ps -ef | grep endpointserver&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Final Steps&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Open the Qlik Replicate UI to confirm that the endpoint server is operational.&lt;/LI&gt;
&lt;LI&gt;Navigate to the endpoint connection screen and verify that you can see the endpoint (e.g., SAP, ODP, etc.).&lt;/LI&gt;
&lt;/OL&gt;</description>
    <pubDate>Mon, 07 Apr 2025 12:13:53 GMT</pubDate>
    <dc:creator>avidary_qlik</dc:creator>
    <dc:date>2025-04-07T12:13:53Z</dc:date>
    <item>
      <title>Endpoint Server Not Connecting on Linux-based Qlik Replicate server</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Endpoint-Server-Not-Connecting-on-Linux-based-Qlik-Replicate/ta-p/2513341</link>
      <description>&lt;P&gt;The following errors may occur after upgrading the Linux environment running a Linux-based Qlik Replicate server:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Endpoint Server not showing &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Endpoint Server not connecting&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Environment:&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;Qlik Replicate&lt;/LI&gt;
&lt;LI&gt;Linux&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the Qlik Replicate service attempts to run Java executables from a mounted temporary directory, it's essential to check if the &lt;STRONG&gt;noexec&lt;/STRONG&gt; option is set on the mounted disk.&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Checking /etc/fstab&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;You can use the command &lt;FONT face="courier new,courier"&gt;cat /etc/fstab&lt;/FONT&gt; to display the contents of the &lt;FONT face="courier new,courier"&gt;/etc/fstab&lt;/FONT&gt; file.&lt;/P&gt;
&lt;P&gt;Example of Temporary Directory with &lt;STRONG&gt;noexec&lt;/STRONG&gt;:# Added by CIS Linux Build Kit&lt;/P&gt;
&lt;PRE&gt;tmpfs /tmp tmpfs defaults,noexec,nosuid,nodev 0 0&lt;/PRE&gt;
&lt;P&gt;Example of Temporary Directory without &lt;STRONG&gt;noexec&lt;/STRONG&gt;:# Added by CIS Linux Build Kit&lt;/P&gt;
&lt;PRE&gt;tmpfs /tmp tmpfs defaults,nosuid,nodev 0 0&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Understanding "noexec"&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;The &lt;STRONG&gt;noexec&lt;/STRONG&gt; option in Linux is used to prevent the execution of binaries on a mounted filesystem. This feature enhances security by ensuring that scripts or executables cannot be run from certain directories, such as temporary directories.&lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Understanding "mount"&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;The &lt;FONT color="#339966"&gt;&lt;STRONG&gt;mount&lt;/STRONG&gt;&lt;/FONT&gt; command in Linux is used to attach filesystems to the directory tree at a specified mount point. This allows access to files and directories on various storage devices, including hard drives, USB drives, or network shares.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Resolution&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;To resolve the problem:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;STRONG&gt;Stop all Qlik Replicate tasks&lt;/STRONG&gt;: Ensure all replicate tasks are stopped.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Edit the &lt;FONT face="courier new,courier"&gt;/etc/fstab&lt;/FONT&gt; file:&lt;/STRONG&gt; Use &lt;FONT face="courier new,courier"&gt;vi&lt;/FONT&gt; to remove the &lt;FONT face="courier new,courier"&gt;noexec &lt;/FONT&gt;option from the &lt;FONT face="courier new,courier"&gt;fstab&lt;/FONT&gt; file and save the changes.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Stop the Qlik Replicate service&lt;/STRONG&gt;: Execute the command:
&lt;PRE&gt;systemctl stop areplicate&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Verify the service status&lt;/STRONG&gt;: Check if the service has stopped by running:
&lt;PRE&gt;systemctl status areplicate&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Reboot the system&lt;/STRONG&gt;: Run the command:
&lt;PRE&gt;sudo shutdown now&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Verify &lt;FONT face="courier new,courier"&gt;noexec&lt;/FONT&gt; was removed successfully&lt;/STRONG&gt;: After the system has restarted, verify if &lt;FONT face="courier new,courier"&gt;noexec &lt;/FONT&gt;has been removed by running:
&lt;PRE&gt;cat /etc/fstab&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Check the Qlik Replicate status&lt;/STRONG&gt;: Verify that all Qlik Replicate services are running with:
&lt;PRE&gt;ps -ef | grep rep&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;STRONG&gt;Check Endpoint Server Status&lt;/STRONG&gt;: Ensure the endpoint server is running by executing:&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;PRE&gt;ps -ef | grep endpointserver&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Final Steps&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Open the Qlik Replicate UI to confirm that the endpoint server is operational.&lt;/LI&gt;
&lt;LI&gt;Navigate to the endpoint connection screen and verify that you can see the endpoint (e.g., SAP, ODP, etc.).&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Mon, 07 Apr 2025 12:13:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Endpoint-Server-Not-Connecting-on-Linux-based-Qlik-Replicate/ta-p/2513341</guid>
      <dc:creator>avidary_qlik</dc:creator>
      <dc:date>2025-04-07T12:13:53Z</dc:date>
    </item>
  </channel>
</rss>

