so here's my problem: I'm trying to enable the FEDERATED storage engine in mysql on MAC (Lion). In phpmyadmin I have this message:

This MySQL server does not support the FEDERATED storage engine. There is no detailed status information available for this storage engine.

So I've googled a lot and I found out this solution: adding the variable "federated" in the my.cnf file under the [mysqld], which I did through the terminal (logging in as root etc...). I restarted the server but nothing happened.

If I open the my.cnf file I'm seeing

[mysqld]
#skip-networking
skip-innodb
user            = mysql
pid-file        = __PREFIX/var/run/mysqld/mysqld.pid
socket          = __PREFIX/var/run/mysqld/mysqld.sock
port            = 3306
log             = __PREFIX/var/log/mysql/mysql.log
basedir         = __PREFIX
datadir         = __PREFIX/var/db/mysql
tmpdir          = /tmp
language        = __PREFIX/share/mysql/english
skip-locking
set-variable    = key_buffer=16M
set-variable    = max_allowed_packet=1M
set-variable    = thread_stack=128K
federated

I'm sure I'm missing something here...

link|improve this question
How did you install MySQL - Macports, brew or source? To include the FEDERATED storage engine if you build MySQL from source, invoke configure with the --with-federated-storage-engine option. Beginning with MySQL 5.0.64, the FEDERATED storage engine is not enabled by default in the running server; to enable FEDERATED, you must start the MySQL server binary using the --federated option. – Pranav Prakash Feb 20 at 16:59
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.