How to check if Federation is enabled

3k Views Asked by At

I want to know what the command is that I can run in the shell to find out if Federation is enabled on a MySQL server or not?

Thanks.

2

There are 2 best solutions below

3
On

Login to mysql server and do SHOW ENGINES\G, this it what it says on one of my mysql servers:

*************************** 10. row ***************************
 Engine: FEDERATED
Support: NO
Comment: Federated MySQL storage engine
3
On

Edit the file /etc/mysql/my.cn At the [mysqld] section add:

[mysqld] federated

Restart MySql Server and it's done!