方法:1、使用「SET PASSWORD FOR ‘root’@’localhost’=PASSWORD(‘newpass’);」指令;2、使用「mysqladmin -u root password oldpass "newpass」」。
mysql透過cmd更改密碼的方法:
一、初始化設定密碼
/etc/init.d/mysql stop cd /usr/local/mysql mysqld_safe –user=mysql –skip-grant-tables –skip-networking & mysql -u root mysql mysql > UPPATE user SET password=PASSWORD(‘newpassword’) where USER=’root’; mysql > FLUSH PRIVILEGES; mysql > quit ; /etc/init.d/mysql restart mysql -u root -p
方法1: 用SET PASSWORD指令
mysql -u root mysql> SET PASSWORD FOR ‘root’@’localhost’ = PASSWORD(‘newpass’);
方法2:用mysqladmin
mysqladmin -u root password “newpass”
如果root已經設定過密碼,請使用以下方法
mysqladmin -u root password oldpass “newpass”
mysql -u root mysql> use mysql; mysql> UPDATE user SET Password = PASSWORD(‘newpass’) WHERE user = ‘root’; mysql> FLUSH PRIVILEGES;
mysqld_safe –skip-grant-tables& mysql -u root mysql mysql> UPDATE user SET password=PASSWORD(“new password”) WHERE user=’root’; mysql> FLUSH PRIVILEGES;
1、修改mysql的設定檔(預設為/etc/my.cnf),在[mysqld]下新增一行skip-grant-tables
mysql教學》
以上是mysql怎麼透過cmd更改密碼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!