When logging into mysql, I can do a:
./mysql -u mysql -p
... then when it prompts me for a password, I just hit enter and it logs me in without a problem.
I can then do a:
use test;
... and I'm in the test database.
I can also do a:
./mysql -u mysql
... and it logs me in fine.
I can then do a:
use test;
... and I'm in the test database.
In thew up a page on my server, and I'm connecting like this:
jdbc:mysql://xxx.xxx.x.xxx/test?user=mysql
... but it gives me this error:
Invalid authorization specification, message from
server: "Access denied for user: 'mysql@xxx.xxx.x.xxx' (Using password:
NO)"
Question is, why won't it let me in ?