Typically this is a symptom of an application that did not exit properly and is still running. So how do I find the application and stop it? Here's how.
(1) To look at all the running processes on Solaris use this command:
ps -efThis gives you a big list of all running applications. However, we can make things a lot easier. Let us say
firefox did not exit cleanly. So to search just for
firefox processes, use grep. For example:ps -ef | grep firefoxThis will show all the running
firefox processes. Note the process number for each process. For example, process 5555 is stuck. To stop it, use the kill command:
kill -9 5555Repeat the
kill command as necessary if there are other stuck processes.To make sure the stuck process has been removed use
ps with grep again.ps -ef | grep firefoxThere should only be a listing for your
grep command line.That's it.
No comments:
Post a Comment