One way to kill all sessions for a specific user is to run the following command (replace username with the actual user name):
kill -9 `ps -u username | grep -v PID | awk '{ printf ("%s ", $1); }'`
Of course you should only use the -9 option when you really ...
View this tip