Reputation: 41
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.
Upvotes: 2
Views: 3261
Reputation: 21
Edit the file /etc/mysql/my.cn At the [mysqld] section add:
[mysqld] federated
Restart MySql Server and it's done!
Upvotes: -1
Reputation: 4733
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
Upvotes: 2