在mysql中修改乙個使用者(比如叫"username")的密碼.
一.方法1
mysql> update user set password=password("new password") where user='username';
mysql> flush privileges;
mysql> replace into mysql.user (host,user,password) values('%','username',password('password'));
mysql> flush privileges;
二.方法2
mysql> set password for username=password('new password');
mysql> set password for username@"%" = password('password');
三.方法3
使用命令mysqladmin
mysqladmin -u root -p password mypasswd
四.方法4
使用phpmyadmin,這是最簡單的了,修改mysql庫的user表,必須使用password函式
五.增加使用者
mysql> grant usage on *.* to username@"%" identified by 'password';
mysql> grant reload,process on *.* to username@localhost;
mysql>grant all privileges on *.* to username@"%" identified by 'something' with grant option;
mysql>grant all privileges on *.* to username@localhost identified by 'something' with grant option;
mysql修改密碼記錄 MySQL修改密碼方法總結
方法一 使用phpmyadmin,這是最簡單的了,修改mysql庫的user表,不過別忘了使用password函式。方法二使用mysqladmin,這是前面宣告的乙個特例。mysqladmin u root p password mypasswd 輸入這個命令後,需要輸入root的原密碼,然後roo...
mysql 修改密碼
一 mysql修改密碼方法總結 首先要說明一點的是 一般情況下,修改mysql密碼是需要有mysql裡的root許可權的,這樣一般使用者是無法更改密碼的,除非請求管理員幫助修改。方法一 使用phpmyadmin 圖形化管理mysql資料庫的工具 這是最簡單的,直接用sql語句修改mysql資料庫庫的...
修改mysql密碼
1.把mysql服務停掉 2.然後進入mysql的bin目錄 執行mysqld defaults file c program files mysql mysql server 5.1 my.ini console skip grant tables 注 c program files mysql ...