[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-developers] mySQL newbie question ...



> I have just installed the mySQL RPM on my Raq3.  I have assigned the root
> password, and am ready to begin creating a user and databases for this
user.
>
> I have su root, but each time I try to issue a command via mysqladmin, I
get
> the message:
>
> mysqladmin: connect to server at '123.456.78.90' failed
> error: 'Access denied for user: 'root@xxxxxxxxxxxx (Using password: YES)'
>
>
> Can someone tell me what I missed?  Thank you so much, in advance, for
> your assistance.
>
> Joe Halbrook
> BJC HealthCare, Inc.

Are you specifying a host on the mysqladmin command line?  Usually
mysql(admin) connections are made to "localhost" instead of the actual
hostname, but this can be changed so I'm not sure this is your problem.

Can you connect to the standard MySQL interface?  Try connecting to the
mysql client using:

$ mysql -u root -h localhost -p

If that works, replace "mysql" with "mysqladmin" and add your options to the
command.

--
Brian Curtis