Hi
Fantasyprints,
please be aware, that EACH server might have it's very own configuration and version, depending to the supported versions to work with Plesk Plesk isn't shipped with a MySQL, you install it normally by yourself, or over your vendor, or your vendor's installation templates. Please name your operating system, the mysql - version and other relevant versions, when asking questions with are not relevant to Plesk. MySQL ( standard ) installation vary as well for CentOS or Ubuntu for example and each operating system may use unique sources.
The "bind option" for example in your configuration is outdated for standard MySQL 5.5 - versions. You could see standard settings in the doc - files at:
/usr/share/doc/mysql-server-5.x/examples/*
You could find there the example "my_medium.cnf", which looks like this:
Code:
[client]
#password = your_password
port = 3306
socket = /var/run/mysqld/mysqld.sock
# Here follows entries for some specific programs
# The MySQL server
[mysqld]
port = 3306
socket = /var/run/mysqld/mysqld.sock
skip-external-locking
key_buffer_size = 16M
max_allowed_packet = 1M
table_open_cache = 64
sort_buffer_size = 512K
net_buffer_length = 8K
read_buffer_size = 256K
read_rnd_buffer_size = 512K
myisam_sort_buffer_size = 8M
# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (via the "enable-named-pipe" option) will render mysqld useless!
#
#skip-networking
Another option example is commented like this:
Code:
#
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
# bind-address = 127.0.0.1
#
# * Fine Tuning
#
Please make your very own settings, depending to your needs and security risks, I don't recommend non-standard settings, unless you are aware of the risks and issues it might cause. Plesk itself will not change your very own settings.