fox2mike 05/08/26 19:51:26 Modified: xml/htdocs/doc/en mysql-howto.xml Log: Typo fix, s/privlege/privilege/g. Thanks to rane for reporting.
Revision Changes Path 1.3 +11 -11 xml/htdocs/doc/en/mysql-howto.xml file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/mysql-howto.xml?rev=1.3&content-type=text/x-cvsweb-markup&cvsroot=gentoo plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/mysql-howto.xml?rev=1.3&content-type=text/plain&cvsroot=gentoo diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/mysql-howto.xml.diff?r1=1.2&r2=1.3&cvsroot=gentoo Index: mysql-howto.xml =================================================================== RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/mysql-howto.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- mysql-howto.xml 25 Aug 2005 07:47:00 -0000 1.2 +++ mysql-howto.xml 26 Aug 2005 19:51:26 -0000 1.3 @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE guide SYSTEM "/dtd/guide.dtd"> -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/mysql-howto.xml,v 1.2 2005/08/25 07:47:00 fox2mike Exp $ --> +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/mysql-howto.xml,v 1.3 2005/08/26 19:51:26 fox2mike Exp $ --> <guide link="/doc/en/mysql-howto.xml"> <title>MySQL Startup Guide</title> @@ -24,7 +24,7 @@ <license/> <version>1.1</version> -<date>2005-08-25</date> +<date>2005-08-27</date> <chapter> <title>Getting Started With MySQL</title> @@ -557,7 +557,7 @@ </p> <pre caption="GRANT Syntax"> -GRANT [privleges] ON database.* TO '[user]'@'[host]' IDENTIFIED BY '[password]'; +GRANT [privileges] ON database.* TO '[user]'@'[host]' IDENTIFIED BY '[password]'; </pre> <note> @@ -567,18 +567,18 @@ </note> <p> -First we have the privleges we wish to assign. With what we've learned so far, -here are some of the privleges you can set: +First we have the privileges we wish to assign. With what we've learned so far, +here are some of the privileges you can set: </p> <ul> - <li><c>ALL</c> - Gives the all privlege control for the database</li> + <li><c>ALL</c> - Gives the all privilege control for the database</li> <li><c>CREATE</c> - Allows users to create tables</li> <li><c>SELECT</c> - Allows users to query tables</li> <li><c>INSERT</c> - Allows users to insert data into a table</li> <li><c>SHOW DATABASES</c> - Allows users to see a list of databases</li> - <li><c>USAGE</c> - User has no privleges</li> - <li><c>GRANT OPTION</c> - Allows users to grant privleges</li> + <li><c>USAGE</c> - User has no privileges</li> + <li><c>GRANT OPTION</c> - Allows users to grant privileges</li> </ul> <note> @@ -632,7 +632,7 @@ <p> We shall now attempt to login as the guest user. Currently, the guest user has -<c>SELECT</c> only privleges. This basically comes down to being able to search +<c>SELECT</c> only privileges. This basically comes down to being able to search and nothing more. Go ahead and login with the guest account. </p> @@ -759,14 +759,14 @@ </p> <pre caption="REVOKE Syntax"> -REVOKE [privleges] ON database.* FROM '[user]'@'[host]'; +REVOKE [privileges] ON database.* FROM '[user]'@'[host]'; </pre> <p> Options here are explained in the <c>GRANT</c> command section. In this section however, we're going to deny full access to a user. Let's say we find out the guest account is causing some problems security wise. We decide to revoke all -privleges. We login as root and do the needful. +privileges. We login as root and do the needful. </p> <pre caption="Revoking user permissions"> -- [email protected] mailing list
