diff options
author | ivan <ivan> | 2000-06-14 12:24:49 +0000 |
---|---|---|
committer | ivan <ivan> | 2000-06-14 12:24:49 +0000 |
commit | 836a71eb0d564e30ab1f3864288fc019adfe57eb (patch) | |
tree | d154211d35db80ce1a22efa52a2b2f3b9d5b40f2 /htdocs/docs/install.html | |
parent | 9b3b646c24a4620690612fe69926c4e2c9d8f36a (diff) |
documentation updates for mysql privledges
Diffstat (limited to 'htdocs/docs/install.html')
-rw-r--r-- | htdocs/docs/install.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/htdocs/docs/install.html b/htdocs/docs/install.html index 3a77332ec..4b3951cb0 100644 --- a/htdocs/docs/install.html +++ b/htdocs/docs/install.html @@ -38,7 +38,13 @@ Install the Freeside distribution: <ul> <li>Add the user `freeside' to your system. <li>Add the freeside database to your database engine. (with <a href="http://www.mysql.com/Manual_chapter/manual_Reference.html#CREATE_DATABASE">MySQL</a>) (with <a href="http://www.postgresql.org/docs/admin/manage-ag.htm#AEN854">PostgreSQL</a>) - <li>Allow the freeside user full access to the freeside database. (with <a href="http://www.mysql.com/Manual_chapter/manual_Privilege_system.html#Privilege_system">MySQL</a>) (with <a href="http://www.postgresql.org/docs/admin/newuser.htm">PostgreSQL</a>) + <li>Allow the freeside user full access to the freeside database. + <ul> + <li> with <a href="http://www.mysql.com/Manual_chapter/manual_Privilege_system.html#Privilege_system">MySQL</a>:<pre>$ mysqladmin -u root password '<i>set_a_root_database_password</i>' +$ mysql -u root -p +mysql> GRANT SELECT,INSERT,UPDATE,DELETE,INDEX,ALTER,CREATE,DROP on freeside.* TO freeside@localhost IDENTIFIED BY '<i>set_a_freeside_database_password</i>';</pre> + <li> with <a href="http://www.postgresql.org/docs/admin/newuser.htm">PostgreSQL</a> + </ul> <li>Unpack the tarball: <pre>gunzip -c fs-x.y.z.tar.gz | tar xvf -</pre> <li>Build and install the Perl libraries: <pre> |