密碼錯誤如何修改
password 一直錯誤
利用網上的方法修改,根本沒有修改密碼的地方啊
Welcome to the MySQL monitor.? Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.5.24 MySQL Community Server (GPL)
Copyright (c) 2000, 2011, Oracle and/or?its?affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>?use mysql;
Database changed
mysql>?update user set password=password('new_password') where user='root';
Query OK, 5 rows affected (0.00 sec)
Rows matched: 5? Changed: 5? Warnings: 0
mysql>?flush privileges;
Query OK, 0 rows affected (0.00 sec)
2015-12-19
登錄MySQL后用SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass');
2015-12-19
mysqladmin -u username -p currentpassword password xxxxxx
currentpassword是當前密碼
xxxxxx是要修改的密碼