From: Leandro Lucarella Date: Wed, 12 May 2004 22:15:40 +0000 (+0000) Subject: Se agrega script de permisos de MySQL. X-Git-Tag: svn_import X-Git-Url: https://git.llucax.com/mecon/ai.git/commitdiff_plain/2a9c670b41ee1f2d4d5e33ad41a49a0170d7c84c Se agrega script de permisos de MySQL. --- diff --git a/doc/permisos.sql b/doc/permisos.sql new file mode 100644 index 0000000..9d3e363 --- /dev/null +++ b/doc/permisos.sql @@ -0,0 +1,10 @@ +GRANT + all privileges + on intranet.* + to intranet@localhost + identified by '[password]'; +GRANT + all SELECT + on *.* + to intranet@localhost + identified by '[password]';