If I try to login this way, it works.
$ mariadb --user blogbot -p"password"
If I try to login this way, it doesn't work.
$ mariadb --user blogbot -p Enter password: ERROR 1045 (28000): Access denied for user 'blogbot'@'localhost' (using password: YES)
I tried many times both typing and pasting the password, and it seems clear to me that the problem is with the method.
What do you think this might be due to? I just noticed the password includes a '
, is this prohibited in a password?
'
were prohibited it wouldn't work on the command line, either.-p
before the user? Likemariadb -p --user bot
? I don't use maria (postgres fanboy since the late 90's ;D), so can't test, but I wouldn't be surprised if order mattered. Or use the long-option?