LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 2925|回复: 7

MySQL连接不上!!

[复制链接]
发表于 2009-9-3 11:00:27 | 显示全部楼层 |阅读模式
Ubuntu804上自带的MySQL,执行了mysql_install_db,我自己的表也已经创建完毕

本地访问可以:

root@ubuntu804:~# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 11
Server version: 5.0.51a-3ubuntu5.4 (Ubuntu)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

设置了远程访问权限:
mysql> grant all PRIVILEGES on nw.* to root@'%' identified by 'root';
Query OK, 0 rows affected (0.04 sec)

查看数据库:
mysql> use nw
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> show tables;
+-----------------+
| Tables_in_nw |
+-----------------+
| t_activity_host |
| t_origin_log |
+-----------------+
2 rows in set (0.00 sec)

mysql> select * from t_origin_log;
Empty set (0.00 sec)
可以看到表已经创建成功了,但还没有记录。

root@ubuntu804:~# netstat -an |grep 3306
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN
本地端口也在监听

root@ubuntu804:~# ufw status
Firewall not loaded
本地防火墙未打开

本地telnet连接3306也可以连接

但是
root@ubuntu804:~# /usr/bin/mysqladmin -u root password 'root'
/usr/bin/mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: NO)'

并且远程访问一律失败,远程telnet3306也无法连接
C:\>telnet 192.168.14.199 3306
正在连接到192.168.14.199...不能打开到主机的连接, 在端口 3306: 连接失败

root@ubuntu804:~# /usr/bin/mysqladmin -u root password 'root'
/usr/bin/mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: NO)'

请问谁知道这是咋回事啊
 楼主| 发表于 2009-9-3 11:10:13 | 显示全部楼层
root@ubuntu804:~# /usr/bin/mysqladmin -u root password 'root'
/usr/bin/mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: NO)'
回复 支持 反对

使用道具 举报

发表于 2009-9-3 17:54:02 | 显示全部楼层
Post by 0xff;2023442
root@ubuntu804:~# /usr/bin/mysqladmin -u root password 'root'
/usr/bin/mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: NO)'

mysqladmin -uroot -p password newpassword
回复 支持 反对

使用道具 举报

 楼主| 发表于 2009-9-4 09:58:10 | 显示全部楼层
root@ubuntu804:~# mysqladmin -uroot -p password root
Enter password:
mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: YES)'
回复 支持 反对

使用道具 举报

发表于 2009-9-4 17:34:40 | 显示全部楼层
Post by 0xff;2023760
root@ubuntu804:~# mysqladmin -uroot -p password root
Enter password:
mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: YES)'


mysql -uroot -ppassword

看一下提示
回复 支持 反对

使用道具 举报

发表于 2009-9-24 17:26:13 | 显示全部楼层
看一下mysql.cnf,其中可能有直接绑定本地,不让远程访问的选项,在debian下它就直接绑定到127.0.0.1,结果远程不能登录
回复 支持 反对

使用道具 举报

发表于 2009-10-31 19:46:41 | 显示全部楼层
Post by zb16206;2029881
看一下mysql.cnf,其中可能有直接绑定本地,不让远程访问的选项,在debian下它就直接绑定到127.0.0.1,结果远程不能登录


看这里http://blog.163.com/tzx_648852/b ... 361420094200551048/
回复 支持 反对

使用道具 举报

发表于 2009-11-4 14:09:52 | 显示全部楼层
权限没有设置正确
update user set host='%' where user='root';
或者用phpmyadmin直接修改

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表