Hi friends,
I'm trying to follow the instructions here
http://library.linode.com/troubleshooti ... networkingto fine tune my linode.
I have been able to do the HTTP part, but I am having issues with the MySQL part.
Firstly, My my.cnf is in /etc/ folder and not /etc/mysql/my.cnf like the linode library article says.
Then my my.cnf contains only the following:
Code:
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
user=mysql
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
[mysqld_safe]
log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid
and nothing like
Quote:
key_buffer = 16K
max_allowed_packet = 1M
thread_stack = 64K
table_cache = 4
sort_buffer = 64K
net_buffer_length = 2K
as the tutorials say.
How then can I fine tune my MySQL with to these settings?
Thanks.