Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I want to stop a task, but using process elimination, the server replicate are in linux and the server ui console are in windows.
When try to kill first i execute in linux replicate server: ps -ef | grep repctl
and indetify the task and number process, then kill this: kill -9 process
But after appear a new process with the same task.
What is the method to do it to kill task in this scenery?
thanks.
To force-kill a process in Linux, you typically send the SIGKILL signal (signal number 9), which instructs the kernel to terminate the process immediately without allowing it to perform cleanup tasks like saving data or closing open files.
1. Identify the Process
Before killing a process, you need its Process ID (PID) or its exact name.
2. Common Kill Commands
Use these commands depending on whether you have the PID or the process name:
3. Key Safety Notes
Hello @lguevara ,
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.
If you need to stop the task properly, please follow these steps:
Hope this helps.
John.