• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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