Kill is an operation of removing an object or process from memory so that other processes/variables can use them.
Questions tagged [kill]
1603 questions
0
votes
0 answers
Killing ALL user connections to the database SQL 2005 with rollback
The issue is that there are certain users that keep certain applications open instead of shutting down their PCs overnight - this keeps locks on tables and that has an impact on other systems that rely on the tables being in an 'unlocked' state to…

Jonathan
- 11
- 1
- 3
0
votes
1 answer
Kill All Silent Processes in Bash Script
I run a series of silent instances of phantomjs in a script, when the script ends I want to kill them off, all at once. However to make the script look nice and not overload the screens with this message
./runTests.sh: line 74: 26002 Killed…

Charabon
- 737
- 2
- 11
- 23
0
votes
1 answer
How to run and kill processes in Fedora from a Java GUI
I'm working in Fedora. I want to create a GUI in Java with two buttons: START and STOP. I have two processes: p1 and p2. When I click on START, p1 should run in the background and p2 should run in the foreground. (In the terminal, we do this by…

trinity
- 10,394
- 15
- 49
- 67
0
votes
0 answers
Trying to a abort a console job running cakephp 2, using a kill command
I am having trouble being able to kill a job running in cakePHP, using the kill command. I have a list of processes shown in a table in the index view of my Jobs Controller, with a link for each process that is running, that you can click to kill…

user1296259
- 521
- 1
- 13
- 33
0
votes
2 answers
How to log out from a windows phone app?
I am developping a Windows Phone 8 application in C#/Xaml.
When the user launched the app, he arrives on a log page and then he enters in the "real" app. My problem is: how can the user log out?
I tried to just come back on the log page by…

EclipseVS
- 13
- 4
0
votes
1 answer
centos auto kill process after a given timeout in a given directory
I want to make a script - bash - shell script (I don't know very well what is need it) to CentOS (VM for my Apache server) and kill all processes that running on a specified folder (and subfolder of them) after a given timeout.
can anybody help me…

a.s.p.
- 328
- 1
- 3
- 12
0
votes
3 answers
best way to get the result of `$?` for telnet connections
I want to telnet some ips and I want to get the result of $? immediately:
SO I tried:
while read ip; do
telnet $ip 1>/dev/null 2>&1
pkill $!
if [ "$?" -eq "1" ]; then
echo $ip >> host-ok
fi
done < file
But this is not a good…

MLSC
- 5,872
- 8
- 55
- 89
0
votes
2 answers
How to have an android start fresh with every restart
I have a large number of activities in my app that I transition between using intents.I would like the app to start every time as if it had been cleared from the background. I can't find anywhere how to do this. Thanks.

user3478306
- 29
- 5
0
votes
1 answer
Kill Oracle sessions using vb.net
How do you get a vb.net program to send a session kill command to Oracle? I can do it in sqlplusw by just typing:
alter system kill session '45,30665';
In vb.net, I'm trying to do this with an oracle.dataAccess object:
oraConn As New…

ls1m
- 1
0
votes
1 answer
how to kill a process windows in python with asking the process name in programme(script)
I want to write a Python script/program which kills a program specified by the user.
Does anyone have an idea how to do that?
I'm pretty new to Python and I just want a little script.

Seadow11
- 29
- 4
0
votes
1 answer
Android: Inconsistency in documentation. When may an app be killed?
It's seems to me that these articles 1 and 2 are not consistent. Article [1] says that the app is only killable in certain parts of its life cycle. Article [2] says that it is.
Which is right?
[1] Look for the table and the word "killable".
[2] Look…

jgreen81
- 705
- 1
- 6
- 14
0
votes
1 answer
Android: State of force killed applications
As far as I can read, Android may kill my process at any time 1.
One might interpret the article [1] such that, at any point, a process must be able to survive a crash. How is that handled? Are there any guarantees of any methods being called if a…

jgreen81
- 705
- 1
- 6
- 14
0
votes
0 answers
Use PHP to kill process initiated by LaunchDaemon
I would like to use PHP to kill a process initiated by a LaunchDaemon.
I have my script, I'm grabbing and storing the pid - using getmypid() - using a table, and then referring back to that to kill the process, but I'm stuck because:
exec('sudo kill…

dmgig
- 4,400
- 5
- 36
- 47
0
votes
1 answer
Edge animate unload and reload animations from javascript
I am working on a project, which consists of a slider with 9 slides, where each slide has an edge animation. I already created a script which loads animations in dynamically when you actually land on a particular slide. i did this to avoid loading…

AntonP
- 3
- 2
0
votes
1 answer
Killing processes from list of executable names in PowerShell
I've got a PowerShell function that's returning a list of executable names (with the file extension), and I'm trying to kill any of these if they are running, but not having much success. Here's the command I'm using:
Get-Executable-Names `
| where…

arathorn
- 2,098
- 3
- 20
- 29