① 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跳過密碼登陸
這個的話是沒有辦法跳過那個密碼登錄的,除非是你記住密碼了就可以直接登錄。