![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| SUN Solaris The Solaris Operating System, usually known simply as Solaris, is a free Unix-based operating system introduced by Sun Microsystems . |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| killing the process | arthi | UNIX for Dummies Questions & Answers | 3 | 06-03-2008 08:57 AM |
| Killing of a process and send a mail if the process doesnot come up within 2 minutes | Prince89 | Shell Programming and Scripting | 1 | 02-15-2008 07:10 PM |
| Killing specific process | benefactr | Shell Programming and Scripting | 6 | 10-25-2007 12:23 PM |
| killing a process | bbhayana | UNIX for Dummies Questions & Answers | 6 | 06-02-2007 07:58 AM |
| killing a process pid | jo calamine | UNIX for Advanced & Expert Users | 16 | 12-04-2006 07:43 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Reg process of killing
Dear All,
I have one doubt - when u use netstat -na | grep 8080 to know the status of 8080 ports.when it is listed someone is accessing the 8080 ports like this *.8080 *.* 0 0 64000 0 LISTEN 172.19.69.39.8080 172.19.50.20.1929 65535 0 64260 0 ESTABLISHED Please can anyone say how to kill the process of that particular ip who is accessing 8080 ports. Appreciate if anyone helps me. Regards, Shanmuga |
|
||||
|
lsof isn't part of Solaris. You need to download it from freeware repositories or recompile it from the source.
Alternatively, you can use pfiles to figure out which process is using this port, eg: Code:
pfiles `ptree | awk '{print $1}'` | egrep '^[0-9]|port:' | grep -v "AF_INET6"
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|