ChinaUnix.net
相关文章推荐:

ERROR 1045 (28000)

error 1045 (28000): Access denied for user '_tkitagawa'@'localhost' (using password: YES) 本来有2个用户无法登陆,这2个用户除了密码全都一样 但是,我对其中一个用户手动重新grant了一遍同样的权限,这个用户就可以登陆了 我比较了一下这两个用户(通过表user和tables_priv)还是除了密码全都一样 不明白为什么一个可以另一个不可以 附注:我在一开始在grant这2个用户的权限时,最后没有调用FLUSH PRIVILEGES,不知道有...

by newme - MySQL - 2007-12-05 16:25:35 阅读(1610) 回复(0)

相关讨论

C:\Documents and Settings\hp001>mysql [email=root@localhost]root@localhost[/email] error 1045 (28000): Access denied for user [email='ODBC'@'localhost']'ODBC'@'localhost'[/email] (using password: N0) E:\mysql\bin>mysql -u root -p Enter password: *** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 10 Server version: 5.0.37-community-nt MySQL Community Edit...

by zhjianxia - MySQL文档中心 - 2007-08-29 09:53:49 阅读(1125) 回复(0)

MySQL中出现连接错误: error 1045 (28000): Access denied for user ---------------------------------------------------------------------------------- 1.添加用户 shell>mysql mysql>use mysql mysql>grant all privileges on *.* to 'test' identified by 'test' with grant option; mysql>flush privileges; [也可以使用下面两种方式建立用户] ------------------------ $1直接操作mysql.user这张表; $...

by richardliu1123 - MySQL文档中心 - 2007-03-01 11:44:40 阅读(1054) 回复(0)

rpm安装完毕后,直接用 /usr/bin/mysqladmin -u root password “newpasswd”修改密码后出现 error 1045 (28000): Access denied for user [email='root'@'localhost']'root'@'localhost'[/email] (using password: YES) 错误信息。 解释:YES,说明密码没有问题。可能是限制不让在本地登陆。于是实用 添加 -h 61.139.xx.252绕过本地测试,也未成功 [root@fms1 ok]# mysql -u root -p Enter password: error 1045 (28000):...

by huoyun - MySQL文档中心 - 2008-11-28 15:58:55 阅读(2509) 回复(0)

[root@vm1 ~]# rpm -ivh groundwork-foundation-pro-1.6.1-67.noarch.rpm Preparing... ########################################### [100%] Current Java version: java version "1.5.0_06" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05) Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode) 1:groundwork-foundation-p########################################### [1...

by deargentle - MySQL文档中心 - 2008-03-07 16:19:21 阅读(1108) 回复(0)

通过root用户,我添加了用户xcj。 再通过root登录后,查看mysql表,部分如下: +------+-------------------+ | user | host | +------+-------------------+ | xcj | % | | | localhost | | +------+-------------------+。 但在本地利用密码登录,提示错误: error 1045 (28000): Access denied for user 'xcj'@'localhost' (using password: YES) 在网上找到一些办法仍不能解决问题...

by xcj_101 - MySQL - 2015-03-10 16:02:07 阅读(102141) 回复(27)

作者: rincess 出自: http://www.linuxdiyf.com 问题提示: error Nr. 1045 Access denied for user 'root'@'localhost' (Using password: NO) If a personal firewall is running on your machine, please make sure you have opened the TCP port 3306 for connections. Otherwise no client application can connect to the server. After you have opened the port please press [Retry] to apply the security settings. ...

by sdccf - MySQL文档中心 - 2008-04-05 13:20:23 阅读(841) 回复(0)

我在执行语句“mysqldump test Syslog -uuser1 -ppass1”时是正常的 而在执行语句“mysqldump test Syslog -uuser1 -ppass1 -T . --fields-terminated-by="," --fields-enclosed-by=\" ”时就返回错误:mysqldump: Got error: 1045: Access denied for user 'user1'@'localhost' (using password: YES) when executing 'SELECT INTO OUTFILE' 我也通过grant把所有权限授予给了改用户。 而另一台机器就是正常的,这是怎么回事呢?...

by 乱.码 - MySQL - 2007-09-04 18:57:00 阅读(11586) 回复(8)

我用SQLyog连接本机的mysql,总是出现 error No.1045 Access denied for user:'admin@localhost'(using password "YES) 我的用户名是admin 密码是8299 请教各位了,谢谢!

by Bingyaner - MySQL - 2008-04-09 09:12:06 阅读(7974) 回复(5)

用mysql -uroot -pxxx是没有问题的 但是用mysqldump -uroot -pxxx test > /test.sql 提示: mysqldump:Got error:1045:Access denied for user 'root'@'localhost' (using password:YES) when trying to connect 我的mysql 版本好像是 5.045 ,系统是 RH5 我在windows上也试了一下,是可以正常导出的。 请问可能是什么问题,谢谢! [ 本帖最后由 flw10000 于 2009-6-25 21:38 编辑 ]

by flw10000 - MySQL - 2011-09-26 09:29:45 阅读(19319) 回复(15)

我在freebsd中通过ports安装了mysql, 当我输入mysqladimn -uroot -p123时, 正常。 但是启动mysql时, 即:#mysql 时,出现了一下错误: error 1045:Accsess denied for usrer: 'root@localhost' (Using password:no) 大家看看,怎么搞得,什么原因呢,?? 在这之前,曾出现过:/tmp/mysql.sock的错误。我更改了` /tmp/mysql.sock 为/var/db/mysql/mysql.sock。

by yueming - MySQL - 2004-12-14 09:24:32 阅读(3232) 回复(2)