Use two lines for MySQL GRANT statements in the heat install section

Change-Id: I34c9042da35a78059cebdd4ba9e4bff7d14dfdfb
This commit is contained in:
Christian Berendt 2014-10-14 15:16:11 +02:00
parent c44beb2e0e
commit 68efa32499

View File

@ -18,8 +18,10 @@
<screen><prompt>mysql></prompt> <userinput>CREATE DATABASE heat;</userinput></screen> <screen><prompt>mysql></prompt> <userinput>CREATE DATABASE heat;</userinput></screen>
<para>Grant the <para>Grant the
proper access to the database:</para> proper access to the database:</para>
<screen><prompt>mysql></prompt> <userinput>GRANT ALL PRIVILEGES ON heat.* TO 'heat'@'localhost' IDENTIFIED BY '<replaceable>HEAT_DBPASS</replaceable>';</userinput> <screen><prompt>mysql></prompt> <userinput>GRANT ALL PRIVILEGES ON heat.* TO 'heat'@'localhost' \
<prompt>mysql></prompt> <userinput>GRANT ALL PRIVILEGES ON heat.* TO 'heat'@'%' IDENTIFIED BY '<replaceable>HEAT_DBPASS</replaceable>';</userinput> IDENTIFIED BY '<replaceable>HEAT_DBPASS</replaceable>';</userinput>
<prompt>mysql></prompt> <userinput>GRANT ALL PRIVILEGES ON heat.* TO 'heat'@'%' \
IDENTIFIED BY '<replaceable>HEAT_DBPASS</replaceable>';</userinput>
<prompt>mysql></prompt> <userinput>exit</userinput></screen> <prompt>mysql></prompt> <userinput>exit</userinput></screen>
<para>Replace <replaceable>HEAT_DBPASS</replaceable> with a suitable <para>Replace <replaceable>HEAT_DBPASS</replaceable> with a suitable
password.</para> password.</para>