博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mysql闹鬼!不要密码也能登陆
阅读量:6246 次
发布时间:2019-06-22

本文共 2427 字,大约阅读时间需要 8 分钟。

有一台mysql,是之前别人已经装好的
现在要为它增加一台从服务器
在主这台机器上直接输入mysql命令回车就可以进
[root@localhost ~]# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 111350
Server version: 5.0.67-community-log MySQL Community Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
 
但是我在新建的从机器上却不行,提示密码错误
[root@localhost ~]# mysql
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
 
看一下mysql.user表里面的内容,比较乱
| localhost | root | *DSADRSADFASDFASF23R123 |
| 127.0.0.1 | root | |
我就一个个删,直到mysql的user表里面只有
| localhost | root | *DSADRSADFASDFASF23R123 |
但是到主上仍然是直接输入个mysql就登陆进去了
 
真是灵异啊!!!!
到群里面求助
喜欢简单 
说:
skip-grant-tables是不是有这个啊
realzyy@gmail.com 
说:
看看my.cnf里面是不是把密码写进去了
所以按照这个排查
1.
查看进程
root 3594 1 0 2009 ? 00:00:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysql --pid-file=/var/lib/mysql/localhost.pid
mysql 3629 3594 1 2009 ? 1-15:12:49 /usr/sbin/mysqld --basedir=/ --datadir=/var/lib/mysql --user=mysql --pid-file=/var/lib/mysql/DBs1.pid --skip-external-locking --port=3306 --socket=/var/lib/mysql/mysql.sock
并没有skip-grant-tables选项
2.
查看/etc/my.cnf
里面也没有skip-grant-tables和密码
 
真是不可理解啊…没招了
 
因为都是rpm安装的,走投无路了就点开了服务的启动脚本/etc/init.d/mysql
看到下面一段
# If you install MySQL on some other places than /, then you
# have to do one of the following things for this script to work:
#
# - Run this script from within the MySQL installation directory
# - Create a /etc/my.cnf file with the following information:
# [mysqld]
# basedir=<path-to-mysql-installation-directory>
# - Add the above to any other configuration file (for example ~/.my.ini)
# and copy my_print_defaults to /usr/bin
# - Add the path to the mysql-installation-directory to the basedir variable
# below.
#
# If you want to affect other MySQL variables, you should make your changes
# in the /etc/my.cnf, ~/.my.cnf or other MySQL configuration files.
原来~/.my.cnf也可以定义配置的,之前还真没注意过
 
登到主这台机器上
[root@localhost ~]# less .my.cnf
[client]
user=root
password=xxxx
果然如此!!!
 
后续讨论(不保证准确性和正确性)
yahoon 
说:
mysql客户端登录的时候首先用/etc/my.cnf的选项,然后看~/.my.cnf
我估计是这么回事
所以你可以对不同的用户在此定义用户密码其他的选项 ,然后用户直接输入mysql就登录进去了不需要知道密码
walkerxk@gmail.com 
说:
我这直接回车是用我的linux用户名登录
喜欢简单 
说:
你可以把.my.cnf拷贝到你的目录下
以后不用root身份 也可以
walkerxk@gmail.com 
说:
~/.my.cnf相当于是/etc/my.cnf的个人用户版。
walkerxk@gmail.com 
说:
是的,我从来不用root,root用户直接passwd -l锁掉的
mysqldump和其他命令应该也一样吧
mysqld肯定不会,其他应该都一样。
 
本文转自yahoon 51CTO博客,原文链接:http://blog.51cto.com/yahoon/315107,如需转载请自行联系原作者
你可能感兴趣的文章
sas函数
查看>>
BZOJ2654 & 洛谷2619:tree——题解
查看>>
BZOJ3571 & 洛谷3236:[HNOI2014]画框——题解
查看>>
BZOJ4104:[Thu Summer Camp 2015]解密运算——题解
查看>>
BZOJ2821:作诗——题解
查看>>
2019中国爱分析数据智能高峰论坛(北京)
查看>>
oracle数据库安装的注意事项
查看>>
【总结整理】微信7年起起伏伏的理解
查看>>
Javascript多线程引擎(九)
查看>>
Handler和AsyncTask
查看>>
Microbit Turnipbit 孩子也能做的声光控开关
查看>>
通过SHELL并发获下载数据
查看>>
web安全之SQL注入---第三章 如何寻找sql注入?
查看>>
JAVA通过继承Thread来创建线程
查看>>
C#控制台"*"绘制空心菱形
查看>>
Android中JNI编程详解
查看>>
演练Ext JS 4.2自定义主题
查看>>
【tensorflow】1.安装Tensorflow开发环境,安装Python 的IDE--PyCharm
查看>>
【maven】 pom.xml详解
查看>>
LINQ中的OrderBy实现多字段升序、降序排序实现
查看>>