Hi,
I have a fresh install (2 days ago) of ubuntu 12.04 because switch the old server to this but now I have a memory issue:
Code:
$ free -m
total used free shared buffers cached
Mem: 989 946 42 0 40 313
-/+ buffers/cache: 592 396
Swap: 511 7 504
I tried "htop" but the result of free memory is completely different:

My apache Config:
Code:
<IfModule mpm_prefork_module>
StartServers 2
MinSpareServers 6
MaxSpareServers 12
MaxClients 80
MaxRequestsPerChild 3000
</IfModule>
My MySQL config:
Code:
key_buffer = 32M
max_allowed_packet = 1M
thread_stack = 128K
thread_cache_size = 8
# This replaces the startup script and checks MyISAM tables if needed
# the first time they are touched
myisam-recover = BACKUP
#max_connections = 100
table_cache = 32
#thread_concurrency = 10
All of my site with a DB (magento, prestashop, wordpress ecc) are really slow, I used the mysql config in your documentation and the response time was: magento 10 seconds, prestashop 5 seconds, wordpress 12 seconds.
I haven't traffic these sites, mysql work in localhost, I performed databases, file hosts look good.
Help to find the issue
