<?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>topic How Kill process task when Console in Windows and Server in Linux in Qlik Replicate</title>
    <link>https://community.qlik.com/t5/Qlik-Replicate/How-Kill-process-task-when-Console-in-Windows-and-Server-in/m-p/2547299#M16187</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I want to stop a task, but using process elimination, the server replicate are in linux and the server ui console are in windows.&lt;/P&gt;&lt;P&gt;When try to kill first i execute in linux replicate server:&amp;nbsp;ps -ef | grep repctl&lt;/P&gt;&lt;P&gt;and indetify the task and number process, then&amp;nbsp; kill this:&amp;nbsp;&amp;nbsp;kill -9 process&lt;/P&gt;&lt;P&gt;But after appear a new process with the same task.&lt;/P&gt;&lt;P&gt;What is the method to do it to kill task in this scenery?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Apr 2026 18:07:57 GMT</pubDate>
    <dc:creator>lguevara</dc:creator>
    <dc:date>2026-04-20T18:07:57Z</dc:date>
    <item>
      <title>How Kill process task when Console in Windows and Server in Linux</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-Kill-process-task-when-Console-in-Windows-and-Server-in/m-p/2547299#M16187</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I want to stop a task, but using process elimination, the server replicate are in linux and the server ui console are in windows.&lt;/P&gt;&lt;P&gt;When try to kill first i execute in linux replicate server:&amp;nbsp;ps -ef | grep repctl&lt;/P&gt;&lt;P&gt;and indetify the task and number process, then&amp;nbsp; kill this:&amp;nbsp;&amp;nbsp;kill -9 process&lt;/P&gt;&lt;P&gt;But after appear a new process with the same task.&lt;/P&gt;&lt;P&gt;What is the method to do it to kill task in this scenery?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2026 18:07:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-Kill-process-task-when-Console-in-Windows-and-Server-in/m-p/2547299#M16187</guid>
      <dc:creator>lguevara</dc:creator>
      <dc:date>2026-04-20T18:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: How Kill process task when Console in Windows and Server in Linux</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-Kill-process-task-when-Console-in-Windows-and-Server-in/m-p/2547312#M16188</link>
      <description>&lt;P&gt;To force-kill a process in Linux, you typically send the &lt;STRONG&gt;SIGKILL&lt;/STRONG&gt; signal (signal number &lt;STRONG&gt;9&lt;/STRONG&gt;), which instructs the kernel to terminate the process immediately without allowing it to perform cleanup tasks like saving data or closing open files.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;1. Identify the Process&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Before killing a process, you need its &lt;STRONG&gt;Process ID (PID)&lt;/STRONG&gt; or its exact name.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
 &lt;LI&gt;&lt;STRONG&gt;Find PID by Name:&lt;/STRONG&gt; Use the &lt;A href="https://www.cyberciti.biz/faq/how-force-kill-process-linux/" target="_blank"&gt;pidof&lt;/A&gt; command: pidof process_name.&lt;/LI&gt;
 &lt;LI&gt;&lt;STRONG&gt;List All Processes:&lt;/STRONG&gt; Use the &lt;A href="https://www.linuxfoundation.org/blog/blog/classic-sysadmin-how-to-kill-a-process-from-the-command-line" target="_blank"&gt;ps command&lt;/A&gt; to find the PID: ps aux | grep process_name.&lt;/LI&gt;
 &lt;LI&gt;&lt;STRONG&gt;Interactive List:&lt;/STRONG&gt; Use the &lt;A href="https://builtin.com/articles/kill-process-linux" target="_blank"&gt;top&lt;/A&gt; or htop command to view a real-time list of running processes.&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;2. Common Kill Commands&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use these commands depending on whether you have the PID or the process name:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
 &lt;LI&gt;&lt;STRONG&gt;By PID (Most Precise):&lt;/STRONG&gt;
  &lt;UL&gt;
   &lt;LI&gt;kill -9 &amp;lt;PID&amp;gt;&lt;/LI&gt;
   &lt;LI&gt;&lt;I&gt;Example:&lt;/I&gt; kill -9 1234.&lt;/LI&gt;
  &lt;/UL&gt;&lt;/LI&gt;
 &lt;LI&gt;&lt;STRONG&gt;By Name (Exact Match):&lt;/STRONG&gt;
  &lt;UL&gt;
   &lt;LI&gt;killall -9 &amp;lt;process_name&amp;gt;&lt;/LI&gt;
   &lt;LI&gt;&lt;I&gt;Example:&lt;/I&gt; killall -9 firefox.&lt;/LI&gt;
  &lt;/UL&gt;&lt;/LI&gt;
 &lt;LI&gt;&lt;STRONG&gt;By Name (Partial/Pattern Match):&lt;/STRONG&gt;
  &lt;UL&gt;
   &lt;LI&gt;pkill -9 &amp;lt;process_name&amp;gt;&lt;/LI&gt;
   &lt;LI&gt;&lt;I&gt;Example:&lt;/I&gt; pkill -9 fire (kills any process starting with "fire").&lt;/LI&gt;
  &lt;/UL&gt;&lt;/LI&gt;
 &lt;LI&gt;&lt;STRONG&gt;GUI Method (Desktop Users):&lt;/STRONG&gt;
  &lt;UL&gt;
   &lt;LI&gt;Use the &lt;A href="https://linuxize.com/post/how-to-kill-a-process-in-linux/" target="_blank"&gt;xkill command&lt;/A&gt;. Type xkill in your terminal, and then click on the frozen window to force it to close.&amp;nbsp;&lt;/LI&gt;
  &lt;/UL&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;3. Key Safety Notes&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
 &lt;LI&gt;&lt;STRONG&gt;Graceful First:&lt;/STRONG&gt; Always try kill &amp;lt;PID&amp;gt; (without -9) first. This sends &lt;STRONG&gt;SIGTERM (15)&lt;/STRONG&gt;, which allows the program to shut down safely.&lt;/LI&gt;
 &lt;LI&gt;&lt;STRONG&gt;Permissions:&lt;/STRONG&gt; You can only kill your own processes. To kill system-level or other users' processes, you must use sudo (e.g., sudo kill -9 1234).&lt;/LI&gt;
 &lt;LI&gt;&lt;STRONG&gt;Zombies:&lt;/STRONG&gt; Some processes appear as "zombie" or "defunct." These are already dead and cannot be killed; you must restart their parent process or the system to remove them from the process table.&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2026 19:51:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-Kill-process-task-when-Console-in-Windows-and-Server-in/m-p/2547312#M16188</guid>
      <dc:creator>Greg_Taffer</dc:creator>
      <dc:date>2026-04-20T19:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: How Kill process task when Console in Windows and Server in Linux</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/How-Kill-process-task-when-Console-in-Windows-and-Server-in/m-p/2547330#M16189</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/182107"&gt;@lguevara&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P data-end="258" data-start="50"&gt;If you terminate a running task directly on the Linux server, Replicate interprets this as an abnormal stop and will attempt to automatically recover the task. This is why you observe the task starting again.&lt;/P&gt;
&lt;P data-end="325" data-start="260"&gt;If you need to stop the task properly, please follow these steps:&lt;/P&gt;
&lt;OL data-end="569" data-start="327"&gt;
&lt;LI data-end="445" data-start="327" data-section-id="1y9ps8y"&gt;Stop the task &lt;STRONG&gt;from the Windows GUI&lt;/STRONG&gt;. This will gracefully terminate the corresponding process on the Linux server.&lt;/LI&gt;
&lt;LI data-end="569" data-start="446" data-section-id="vndomy"&gt;If the process still persists and needs to be terminated, you can use &lt;STRONG&gt;kill -9 &lt;EM&gt;pid&lt;/EM&gt;&lt;/STRONG&gt; to forcefully stop it immediately.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;John.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2026 00:55:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/How-Kill-process-task-when-Console-in-Windows-and-Server-in/m-p/2547330#M16189</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2026-04-21T00:55:30Z</dc:date>
    </item>
  </channel>
</rss>

