Questions tagged [kill-process]

This tag refers to the action of terminating (aborting) a process.

Use this tag for questions related to killing a specific process on a system.

701 questions
0
votes
1 answer

Kill Excel after user close Userform

We have tried to fix these problem for a couple of days and we posted on another forums but still no answer, may be you guys can help us here. I am having a problem with excel running after the Userform is closed, I think what I have supposed to end…
0
votes
0 answers

What's the difference between kill and taskkill?

I'm on a Windows 7 machine using Cygwin. There is a process listening on port 9090 that I wanted to kill. First, I ran netstat -ao | grep 9090 to find out its PID 19892. Then I want to kill it. $ netstat -ao | grep 9090 Proto Local Address …
kgf3JfUtW
  • 13,702
  • 10
  • 57
  • 80
0
votes
0 answers

How to do a kill(pid, SIGINT) in windows?

I have Qt Application that executes a process when you click on a button. I used this method QProcess::startDetached(...,qint64 * pid) : http://doc.qt.io/qt-5/qprocess.html#startDetached The returned value is a pid and I would like to do a kill(pid,…
John Smith
  • 771
  • 4
  • 11
  • 25
0
votes
0 answers

SQLite3 Update leading to Killed 9

I am working with a 500gb sqlite3 database (many rows, few columns), and I am trying to create a new column and fill it out with some values. After adding a new column named QUOTE_DATE, I ran: UPDATE DATA SET QUOTE_DATE =…
Guilherme Salomé
  • 1,899
  • 4
  • 19
  • 39
0
votes
1 answer

iOS 10.3.2 stops app background working after ~5min

I have a timer in the app. To reproduce the problem, user should start this timer, after that enter app to background or turn off the screen. The app works on up to 5 mins and then killed by the system. After users turn screen back on, they can see…
Simon
  • 11
0
votes
1 answer

Process gets Killed by Linux OS - No OOM Log in /var/log files

We deployed multiple JVMs in a Linux System along with a Node.js and a mongod server instance. It is https enabled micro services architecture. Some of the above listed processes are getting down randomly. There is no clue why they are down. No OOM…
M. Gopal
  • 404
  • 4
  • 17
0
votes
0 answers

How to kill other apps?

How can I kill other applications? I can launch other applications using intents but can't find a way to kill them. This launches the application: Intent i = new Intent(); i.setAction(Intent.ACTION_MAIN); …
Luke
  • 331
  • 2
  • 5
  • 11
0
votes
0 answers

Android programmatically complete the process

Is it possible in the android to programmatically complete the process of a third-party application . I've seen several applications that let you do this.
user1854307
  • 580
  • 4
  • 8
  • 21
0
votes
1 answer

Revive plink service after it dies

I'm trying to create a bat or shell script that will let me check if my plink connection dies or becomes unresponsive and then kill the service and start it up again. It that possible? The problem my and my buddy encountered is that we can't seem to…
Dkill
  • 31
  • 5
0
votes
1 answer

kill() function is not recognized for child_process

Using node js I'm calling external script in MATLAB and Python That is working well using terminal commands to run the scripts using those application ('start') But when I'm trying to close them using kill() ('stop') I get an error: TypeError:…
0
votes
1 answer

Apache Spark is killing all user processes when it finishes

I am running Spark 2.0.1 with Hadoop YARN 2.7. After executing a Spark application in a remote server, all the running processes of my user, including the SSH section, is being killed. What is happening? I am not receiving any error messages. Some…
0
votes
0 answers

KILL_BACKGROUND_PROCESSES permission Violates rules GooglePlay?

i had develop an application contains KILL_BACKGROUND_PROCESSES permission , my questions have i violated the rules of GooglePlay `
MrMR
  • 279
  • 6
  • 16
0
votes
1 answer

How to kill currently running task in android Marshmallow

i'm trying to find way how to kill currently task in android Marshmallow i already have two methods but the both works fine in android 4.0.3 and android 5.0.1 but when i trying in android 6.0.1 she doesn't work any idea for resolve this problem…
0
votes
1 answer

Runnig scilab with BackDoor from PHP

I want to run scilab with BackDoor module from PHP script. (https://atoms.scilab.org/toolboxes/BackDoor/0.2) When I run command in terminal sudo scilab-adv-cli result is something like opening BackDoor BackDoor: listening to commands on TCP port…
0
votes
3 answers

Cannot kill local Jenkins on port 8080

I have a local instance of Jenkins running on port 8080 on my mac machine. I want to kill this process and have tried doing so, like below : lsof -i tcp:8080 kill -9 This closes my chrome instance. But when I open Chrome again and go to…
Cassus
  • 199
  • 6
  • 14