当前位置: 技术问答>linux和unix
LINUX上mysql数据库问题
来源: 互联网 发布时间:2015-12-28
本文导语: # mysql Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 21 to server version: 4.1.11-standard Type 'help;' or 'h' for help. Type 'c' to clear the buffer. mysql> 这样的显示结果是不是说明数据库没有...
# mysql
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 21 to server version: 4.1.11-standard
Type 'help;' or 'h' for help. Type 'c' to clear the buffer.
mysql>
这样的显示结果是不是说明数据库没有密码呀
mysql> show grants;
+---------------------------------------------------------------------+
| Grants for root@localhost |
+---------------------------------------------------------------------+
| GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION |
+---------------------------------------------------------------------+
1 row in set (0.00 sec)
然后这样的是不是说明数据库root拥有权限,有人说我没有对数据库田加权限。
我添加密码的时候:出现
# mysqladmin -u root -password "3210021"
mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: YES)'
如果需要远程用MySQL-Front这样的软件管理MYSQL数据库要怎么样配置。请帮忙解释一下。
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 21 to server version: 4.1.11-standard
Type 'help;' or 'h' for help. Type 'c' to clear the buffer.
mysql>
这样的显示结果是不是说明数据库没有密码呀
mysql> show grants;
+---------------------------------------------------------------------+
| Grants for root@localhost |
+---------------------------------------------------------------------+
| GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION |
+---------------------------------------------------------------------+
1 row in set (0.00 sec)
然后这样的是不是说明数据库root拥有权限,有人说我没有对数据库田加权限。
我添加密码的时候:出现
# mysqladmin -u root -password "3210021"
mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: YES)'
如果需要远程用MySQL-Front这样的软件管理MYSQL数据库要怎么样配置。请帮忙解释一下。
|
看看你的授权里有没有其他的授权项冲突
比如在本机没有密码可以登陆的授权
有的授权会优先你的这个
所以在认证的时候会报错
比如在本机没有密码可以登陆的授权
有的授权会优先你的这个
所以在认证的时候会报错
|
grant all on *.* to root@localhost identified by '3210021"