I have mysql 5.1.44

mysql> show engines;
+------------+---------+
| Engine     | Support | 
+------------+---------+
| ndbcluster | NO      | 
| MRG_MYISAM | YES     | 
| BLACKHOLE  | YES     | 
| CSV        | YES     | 
| MEMORY     | YES     | 
| FEDERATED  | NO      | 
| ARCHIVE    | YES     | 
| InnoDB     | YES     | 
| MyISAM     | DEFAULT |

now, i need to enable federated engine in mysql, how can i do so?

link|improve this question

72% accept rate
feedback

2 Answers

up vote 4 down vote accepted

edit /etc/my.cnf and in the [mysqld] section, add the line:

federated

it's equivalent to specifying --federated on the command line

link|improve this answer
feedback

From the MySql Docs:

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.