This is a follow-up to an earlier question of mine.
I tried the following command (copied verbatim from UCSC's mysql access docs):
mysql --user=genome --host=genome-mysql.cse.ucsc.edu -A
...but it fails with the error message:
ERROR 1045 (28000): Access denied for user 'genome'@'my.host.redacted' (using password: YES)
What else must I do to get through?
Thanks!
If you are connecting to a local UCSC browser instance ("my.host.redacted"), then you may need to change the username and add a password option, depending on the setup of your local browser instance. Check with whoever administrates that server, in that case.
Thanks for your comment, although now I'm really confused. I don't understand why you say that I'm connecting to
my.host.redacted
. I thought I was connecting togenome-mysql.cse.ucsc.edu
, as the command line says, frommy.host.redacted
. Also, assuming that there is indeed a "local UCSC browser instance," I would love to use it, but I can't figure out how to refer to it, so that I can connect to it or search for it online.Here is the result I get:
I am able to run commands like
show databases;
use hg19;
andshow tables;
etc.Maybe run
mysql --version
and see if it needs updating.