Skip to main content

Questions tagged [kill]

1 vote
0 answers
489 views

I am observing very high IOWAIT time on the CPUs of my server: top - 14:24:20 up 846 days, 14:14, 2 users, load average: 14.42, 14.33, 14.57 Tasks: 345 total, 1 running, 341 sleeping, 3 stopped, ...
José D.'s user avatar
0 votes
1 answer
1k views

I'm starting a java program as a non-privileged user that I sudo'd into, then exit the shell. Being root again I try to kill -9 the java process. This causes a "permission denied" error. ...
Dino's user avatar
  • 3
3 votes
4 answers
22k views

I've tried to uninstall docker and failed because I am not able to remove this dir /var/lib/docker and it gives me this error: (base) [xxx@xxx ~]$ sudo rm -rf /var/lib/docker/ rm: cannot remove ‘/var/...
Galilej25's user avatar
1 vote
1 answer
1k views

Context I use and manage* a windows server at work. It is used for general computations by up to 5 users at a time via RDP. The server has 128GB of RAM which is sufficient for the work we do on it (...
Saaru Lindestøkke's user avatar
1 vote
1 answer
2k views

I am having a problem where virt-install gets stuck in the very early stages and cant be killed (after saying "starting installation", but before the VM is visible in virt-manager). Ctrl-C does not ...
Stonecraft's user avatar
1 vote
0 answers
1k views

I copied a file to a cifs drive and instinctively ran a sync on it, which hung indefinitely. Strangely, I could successfully unmount/remount the drive without issues, making me think that the drive ...
Brydon Gibson's user avatar
0 votes
1 answer
5k views

I've run a find command on a very large folder inside my docker, and now it is stuck for more than an hour. I've tried to kill -9 the process, and kill the docker container with docker kill <...
blue112's user avatar
  • 143
14 votes
1 answer
97k views

What is the difference between killing an running daemon systemd service like this : kill -SIGKILL 3645 and systemctl -s kill -SIGKILL 3645 where 3645 is the pid of the systemd service.Also are ...
Gordon's user avatar
  • 161
0 votes
1 answer
7k views

I have postfix email server with saslauthd. Time and again saslauthd daemon eats 100% CPU. Restarting these services returns to normal cpu usage. Is there any proper script to determine services with ...
Anand Shrestha's user avatar
0 votes
2 answers
5k views

Given the full file name of a process, how can I kill it? Not only by its file name, but by full file name. I've looked into kill and pkill and they're not what I'm looking for.
Korim's user avatar
  • 27
0 votes
1 answer
5k views

script: #!/usr/bin/env bash set -e set -u set -x set -o pipefail hosts=( host1 host2 ) for host in ${hosts[@]} do ssh $host 'pids=$(ps -aux|pgrep -f "/usr/bin/nmon"); kill $pids; wait $...
Honghe.Wu's user avatar
  • 109
0 votes
3 answers
2k views

We are having an internal debate about this. Running jboss eap 7 on RHEL. We currently have a script to stop the server by simply running kill -9 on the java process. My suggestion was to use the ...
OldProgrammer's user avatar
0 votes
2 answers
657 views

I have a scheduled shell script running in a distributed environment. There are some scenarios where the process might get killed by some other processes. But I need the process to return 0 even after ...
pkgajulapalli's user avatar
0 votes
1 answer
810 views

If I run a single instance of an application I can kill it via "kill my_app_name" without having to find out what its PID is. But when I'm running multiple instances of the same application with ...
Raj's user avatar
  • 179
1 vote
1 answer
303 views

We are connecting to the same host via the same user. So, only our sessions/tty are different. If one of us starts a for loop such as:for i in *; do command $i; done, I don't know how to stop it. All ...
Sam Gold's user avatar

15 30 50 per page
1
2 3 4 5
9