Updated MySQL server to use InnoDB

I updated the MySQL server configuration section to use the InnoDB
storage engine by default. This key has no impact on MySQL 5.5 which
already uses InnoDB by default.

Change-Id: I5a0d60e8e38488861ec53b9032cfc764accc3dbf
Closes-Bug: #1299480
This commit is contained in:
Matt Kassawara
2014-03-29 09:03:17 -06:00
parent 226e98a5b2
commit 9d479a4ae1

View File

@@ -414,10 +414,11 @@ bind-address = 192.168.0.10</programlisting>
</step>
<step>
<para>Under the <literal>[mysqld]</literal> section, set the
following keys to enable the UTF-8 character set by
default:</para>
following keys to enable InnoDB, UTF-8 character set, and
UTF-8 collation by default:</para>
<programlisting>[mysqld]
...
default-storage-engine = innodb
collation-server = utf8_general_ci
init-connect = 'SET NAMES utf8'
character-set-server = utf8</programlisting>