I have a virtual box with 2 installed instances of MySQL.
First instance:
- /etc/mysql/my.cnf
- /var/lib/mysql
- port = 3306
Second instance:
- /etc/mysql2/my.cnf
- /var/lib/mysql2
- port = 3307
I can connect to both. The first instance is fine. The second is not.
MySQL doesn't ignoring some params from my.cnf file (socket, port, pid-file, data-dir...). But if I'm trying to change something else: cache, buffers, log files it completely ignores changes after restarting.
I need to make MySQL read all params from my.cnf.
I tried:
- to move my.cnf from /etc/mysql to /var/lib/mysql;
- commenting out !includeir /etc/mysql/conf.d.
Could someone guide me?
my.cnfin the question. – RolandoMySQLDBA Oct 17 '12 at 19:42