Sergey Potapov a écrit :
> 
> Hello,
> 
> I have a small Linux server on my company (Pentium-133 with 16 RAM)
> and recently i installed mysql-3.23.37 for collect statistics from
> proxy. But then i look at ps out, i saw this:
> ps -axl|grep mysql
>       VSZ   RSS
> ...  1784    0 116453 SW   ?          0:00 [safe_mysql
> ...  10324 4300 12d3c0 S    ?          0:04 /usr/sbin/mysqld
> ...  10324 4300 12d96f S    ?          0:00 /usr/sbin/mysqld
> ...  10324 4300 106b9e S    ?          0:00 /usr/sbin/mysqld
> ...  10324 4300 106b9e S    ?          0:00 /usr/sbin/mysqld
> 
> 4 mysqld processes for only one user task!
> 
> May be anyone know, Is it possible to reduce number of mysqld?
> 
> I could not find information about this in the manual.
> 
> Thanks, Sergey Potapov
> 
> ---------------------------------------------------------------------
> Before posting, please check:
>    http://www.mysql.com/manual.php   (the manual)
>    http://lists.mysql.com/           (the list archive)
> 
> To request this thread, e-mail <[EMAIL PROTECTED]>
> To unsubscribe, e-mail <[EMAIL PROTECTED]>
> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Hi,

mysqld is single-process/multi-thread.
What you see are 4 threads, ps on Linux doen not differenciate between
threads and processes.
For more details on these threads, you can look at the manual:
http://www.mysql.com/doc/M/y/MySQL_threads.html

Hope this helps
--
Joseph Bueno
NetClub/Trader.com

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to