|
-
March 30th, 2008, 01:05 PM
#1
Help | Stop Perl proccess in linux
Hello all !
1 hour ago I installed some Perl process on my Linux server and I don't know how to shut it down ...
How to do that ?
thanks to helpers !
-
March 30th, 2008, 02:15 PM
#2
Re: Help | Stop Perl proccess in linux
Use the ps command with the a modifier to get a list of your processes, and pipe it to grep:
From this you should see something like:
Code:
6343 pts/0 Ss+ 0:00 /usr/bin/perl
6410 pts/0 S+ 0:00 grep perl
The first number is the process ID. Now you use the kill command to kill the process:
and the process should be killed. You have to be root to do this, unless you own the perl process.
-
March 30th, 2008, 03:52 PM
#3
Re: Help | Stop Perl proccess in linux
thanks !
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|