I posted the same request in Feature Requests, but now this is becoming a true installer/update error. Quickly explained (for more info see https://www.howtoforge.com/community/threads/remove-erroneus-engine-directive-on-sql-scripts.81369/): On ISPConfig Installer every "create table" instruction comes with the engine=myisam directive. This is wrong, novadays all database servers set a default storage engine that is not myisam. PerconaDB sets XtraDB, Galera Cluster sets InnoDB as first mandatory choice, MySQL and MariaDB deprecate myisam and will drop them shortly, MariaDB recomments Aria storage engine and for some other servers, like MS Sql, myisam does not even exists. This makes ISPConfig limited for some kind of db servers, on most of them the installer just does not work, unless do a massive rewrite on all .sql scripts before installing/updating. Solution: let the db use the default engine and remove the engine=myisam from every create table instruction (even better would be to let the user choose from a list of supported storage engine). There is another error on updater: some storage engines does not support "repair", like innodb, and that raises a bunch of errors. Would be great to see ISPConfig becoming more universal. Thank you all for this great piece of software.
First, the engine directive is not set to MyISAM by error. We have chosen this as the default and it served us well for many years. Thus said, it is indeed time to remove it now and I've added a feature request for it: https://git.ispconfig.org/ispconfig/ispconfig3/issues/5342
Hi Till, Wasn't my intention to offend you, just technical considerations. As i said i posted first as a feature request, but "now" this is "becoming" an error. And i'm absolutely agree, myisam served well for years. That said, it's a good new that this will be fixed (or implemented, depends on point of view). I read your request, and i can add some more details: ispconfig works perfectly on other default engines, not only InnoDB (tried Aria for MariaDB and XtraDB for Percona; it also works well on InnoDB with MariaDB Galera Cluster in master-master mode). There is also another fix that should be implemented, regarding the updater: InnoDB does not support repair; when updating InnoDB this raises a lot of (harmless) errors. You surely know better then me howto. And again, that's a truly great piece of software. Really. D.