![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | 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 . |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| sftp problem with user id of no telnet session allowed | superdougl | UNIX for Advanced & Expert Users | 2 | 10-30-2006 07:28 AM |
| Deleting a user session | jbrubaker | UNIX for Dummies Questions & Answers | 7 | 07-06-2006 09:01 AM |
| Kill user | ust | UNIX for Dummies Questions & Answers | 3 | 02-09-2005 09:10 AM |
| kill all user processes | vascobrito | Shell Programming and Scripting | 2 | 04-02-2004 10:27 AM |
| User login session | Docboyeee | UNIX for Advanced & Expert Users | 1 | 11-10-2002 04:12 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
kill user session
how do i kill a user session
|
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
try
Code:
man kill |
|
#3
|
|||
|
|||
|
first locate the process, for example, user logged in using ssh .
ps -ef | grep ssh then, get the pid and kill the process . That's it. Regards, Fernando. |
|
#4
|
|||
|
|||
|
man pkill
[message too short] |
|
#5
|
||||
|
||||
|
Code:
who -u |
|
#6
|
|||
|
|||
|
only add command
after you get who login to the system kill -9 <pid> thx |
|
#7
|
||||
|
||||
|
Never use kill -9 on a process as a first resort.
|
||||
| Google The UNIX and Linux Forums |