MySQL using to much mem

each mysql process is using up like 48 megs. it needs some tweaking i think

This is my.cnf

[mysqld]
max_connections = 500
key_buffer = 16M
myisam_sort_buffer_size = 64M
join_buffer_size = 2M
read_buffer_size = 2M
sort_buffer_size = 3M
table_cache = 1500
thread_cache_size = 128
wait_timeout = 14400
connect_timeout = 10
max_allowed_packet = 16M
max_connect_errors = 10
query_cache_limit = 1M
query_cache_size = 32M
query_cache_type = 1
skip-innodb

[mysqld_safe]
open_files_limit = 8192

[mysqldump]
quick
max_allowed_packet = 16M

[myisamchk]
key_buffer = 150M
sort_buffer = 1M
read_buffer = 1M
write_buffer = 16M


This is on a xeon, with a gig of ram, scsi drive... it possible to tweak it to drop it down some without having to add another stick of ram?

 

 

 

 

Top