① mysql 涓嶈剧疆瀵嗙爜鍙浠ョ敤鍚
銆銆mysql涓嶈剧疆瀵嗙爜涔熸槸鍙浠ヤ娇鐢ㄧ殑锛屼絾鏄鐢变簬榛樿ょ$悊璐﹀彿鏉冮檺闈炲父澶э紝鎵浠ヨ繕鏄闇瑕佽剧疆瀵嗙爜锛岃繖鏍锋墠鑳芥洿濂界殑淇濇姢鏁版嵁搴撶殑瀹夊叏銆
銆銆鍦∕ysql鐜澧冧笅,鍙浠ヤ娇鐢ㄤ互涓嬭鍙ヨ繘琛岃剧疆瀵嗙爜锛
銆銆1銆佺敤root 杩涘叆mysql鍚庛
銆銆mysql>set password =password('浣犵殑瀵嗙爜');
銆銆mysql>flush privileges;
銆銆2銆佽繘鍏mysql搴撲慨鏀箄ser琛
銆銆mysql>use mysql;
銆銆mysql>update user set password=password('浣犵殑瀵嗙爜') where user='root';
銆銆mysql>flush privileges;
② 连接mysql数据时可不可以不要密码
可以啊,那你的用户名就应该不是root了吧,而是匿名(anonymity)了吧,另外如果你想用root而且无密码回登录,那就该把root密码设为空了答,使用如下命令:
用root登录mysql->set password=password('');
但是这样不安全了,如果你是只允许本地连接,就没有问题了,如果你的系统没有rootkit的话.
③ mysql -u root -p此时输入密码后能登录,而为什么 mysql -u -root不用输入密码就能登录 还有,
|mysql -u root -p
这个时候, 你是用 root@localhost 来登录的。
mysql -u -root
与
mysql -u abcd
这个时候, 你是用 其它用户 @localhost 来登录的。
mysql> select host, user, password from mysql.user;
+-----------+------+-------------------------------------------+
| host | user | password |
+-----------+------+-------------------------------------------+
| localhost | root | |
| localhost | | * |
+-----------+------+-------------------------------------------+
2 rows in set (0.00 sec)
上面的查询结果, 是 root@localhost 没有密码。
其它用户t@localhost , 都要输入密码的情况。
你的情况,理论上就是 root@localhost 有密码。
其它用户@ localhost 都没有密码的情况。
④ mysql不用密码登录
1、登陆抄mysql
mysql -uroot -p
2、创建无密码用户
mysql> create user gateway@'localhost' identified by '';
3、授权
mysql> grant all privileges on *.* to gateway@'localhost';
或者
mysql> grant all privileges on db01.* to gateway@'localhost';
4、mysql -ugateway -p回车即可登陆
⑤ mysql跳过密码登陆
这个的话是没有办法跳过那个密码登录的,除非是你记住密码了就可以直接登录。