Documentation XML patch for bug 249802: Make the SQL example for granting SQL privs to the DB user suitable for MySQL 4.
git-svn-id: svn://10.0.0.236/trunk@249265 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
c494f8547d
commit
ff313fdd54
@ -1,5 +1,5 @@
|
||||
<!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"> -->
|
||||
<!-- $Id: installation.xml,v 1.71 2008-04-04 06:47:01 jocuri%softhome.net Exp $ -->
|
||||
<!-- $Id: installation.xml,v 1.72 2008-04-04 06:47:02 jocuri%softhome.net Exp $ -->
|
||||
<chapter id="installing-bugzilla">
|
||||
<title>Installing Bugzilla</title>
|
||||
|
||||
@ -672,21 +672,26 @@
|
||||
Modify it to reflect your setup if you will be connecting from
|
||||
another machine or as a different user.</para>
|
||||
|
||||
<para>Run the <filename>mysql</filename> command-line client and
|
||||
enter:</para>
|
||||
<para>Run the <filename>mysql</filename> command-line client.</para>
|
||||
<para>If you are using MySQL 4.0 or newer, enter:</para>
|
||||
|
||||
<screen> <prompt>mysql></prompt> GRANT SELECT,INSERT,UPDATE,DELETE,INDEX,ALTER,CREATE,
|
||||
DROP,REFERENCES ON bugs.* TO bugs@localhost
|
||||
IDENTIFIED BY '<replaceable>$db_pass</replaceable>';
|
||||
<screen> <prompt>mysql></prompt> GRANT SELECT, INSERT,
|
||||
UPDATE, DELETE, INDEX, ALTER, CREATE, LOCK TABLES,
|
||||
CREATE TEMPORARY TABLES, DROP, REFERENCES ON bugs.*
|
||||
TO bugs@localhost IDENTIFIED BY '<replaceable>$db_pass</replaceable>';
|
||||
<prompt>mysql></prompt> FLUSH PRIVILEGES;</screen>
|
||||
|
||||
<note>
|
||||
<para>If you are using MySQL 4, you need to add
|
||||
<para>If you are using an older version of MySQL,
|
||||
the <computeroutput>LOCK TABLES</computeroutput> and
|
||||
<computeroutput>CREATE TEMPORARY TABLES</computeroutput> permissions
|
||||
to the list.
|
||||
</para>
|
||||
</note>
|
||||
<computeroutput>CREATE TEMPORARY TABLES</computeroutput>
|
||||
permissions will be unavailable and should be removed from the permissions
|
||||
list. In this case, the following command line can be used:</para>
|
||||
|
||||
<screen> <prompt>mysql></prompt> GRANT SELECT, INSERT,
|
||||
UPDATE, DELETE, INDEX, ALTER, CREATE, DROP,
|
||||
REFERENCES ON bugs.* TO bugs@localhost IDENTIFIED BY
|
||||
'<replaceable>$db_pass</replaceable>';
|
||||
<prompt>mysql></prompt> FLUSH PRIVILEGES;</screen>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user