I recently noticed, in System Monitor, that multiple Apache2 processes are showing up (with the same "Command Line"). There are currently 6 of them, each with 7MB memory. I also noticed a whole bunch of dbus processes. Is this normal, and is there a way to keep these from using up so much memory?

Tell me more
×
Ask Ubuntu is a question and answer site for
Ubuntu users and developers. It's 100% free, no registration required.
|
|
||||
|
The apache2 processes are probably threads of the main process, and the 7MB is shared across all those processes. Multiple dbus processes in the list are common, yes. They're not using as much memory as you think they are. |
|||||||||
|
bumor there is something for the command line calledupdate-rc.d, i.e.sudo update-rc.d -f apache2 remove && sudo update-rc.d apache2 stop 20 2 3 4 5 .– qbi Dec 18 '12 at 7:25