• Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
    Thank you in advance for your patience and understanding on the matter.

Enable Federated Engine on Mysql 5

R

rmarinho

Guest
Hi,

I've Plesk 8.2.1, and I need to enable federated engine option on mysql.

Does anyone have done this without corrupt plesk install?

Thank's,
 
never tried this, but judging by the list of engine's limitations (here) a lot of index options which are native for InnoDB (and required by Plesk) are not supported. Also, 'ALTER TABLE' is not supported, thus upgrades won't work.
It's up to you to decide, but I wouldn't risk that much.
 
Hello.
I need this feature too.
How can I enable it?

Thanks.
 
Well, this is a tricky deal, and is only available on mysql 5.

1) Backup all data (Most important step.);

2) Login via ssh to your server and:
2.1: Check your mysql version

2.2:Download from:
http://dev.mysql.com/downloads/mysql/5.0.html#linux-icc
Version must be: Linux (non RPM, Intel C/C++ compiled, glibc-2.3)

2.3:Extract your download and move it to your preferred destination

3) After just go to directory you have created and then:
service mysqld stop
./bin/mysqld_safe &
after this:
mysql -u admin -p
and then type SHOW ENGINES\G see it field support on federated engine look like Support: YES

You must also create start and shutdown script.

And that's all.

Enjoy it.
 
Back
Top