Se debe al esquema de seguridad de mysql, para permitir conexiones
revisa: http://dev.mysql.com/doc/refman/5.0/es/grant.html
Mas o menos tendrias que hacer algo com esto:
GRANT ALL PRIVILEGES ON test.* TO 'root'@'localhost'
-> IDENTIFIED BY 'goodsecret';
Revisa la documentacion para que escribas bien la sentencia sql
Saludos
--
domix
Se debe al esquema de seguridad de mysql, para permitir conexiones
revisa: http://dev.mysql.com/doc/refman/5.0/es/grant.html
Mas o menos tendrias que hacer algo com esto:
GRANT ALL PRIVILEGES ON test.* TO 'root'@'localhost'
-> IDENTIFIED BY 'goodsecret';
Revisa la documentacion para que escribas bien la sentencia sql
Saludos
El día 9 de junio de 2008 12:16, QuiQue <quiqu...@gmail.com> escribió:
--
domix
monty and a password of
some_pass. Both accounts are superuser
accounts with full privileges to do anything. One account
('monty'@'localhost') can be used only
when connecting from the local host. The other
('monty'@'%') can be used to connect from
any other host. Note that it is necessary to have both
accounts for monty to be able to connect
from anywhere as monty. Without the
localhost account, the anonymous-user
account for localhost that is created by
mysql_install_db would take precedence
when monty connects from the local host.
As a result, monty would be treated as an
anonymous user. The reason for this is that the
anonymous-user account has a more specific
Host column value than the
'monty'@'%' account and thus comes
earlier in the useruser table sorting is discussed in
Section 5.4.5, "Access Control, Stage 1: Connection Verification".)
table sort order."