mysql資料庫設定密碼

2021-10-13 11:52:43 字數 617 閱讀 3628

下面列出的是mysql資料庫設定密碼的幾種方法,不僅限於設定root的密碼。

在資料庫外面可使用,無需進入資料庫內

mysqladmin -u 使用者 -p '舊密碼' '新密碼'
如果是新資料庫,未設定密碼,可使用

mysqladmin -u root -p password  密碼
需進入資料庫執行命令

set password for 使用者@localhost=password('新密碼');
需進入資料庫mysql,修改user表

use mysql;

update user set password=password('新密碼') where user='使用者';

flush privileges;

備註:

mysql5.7中 password變成了authentication_string

update mysql.user set authentication_string=password('新密碼') where user='使用者';

MySQL資料庫設定密碼

對於windows平台來說安裝完mysql資料庫後,系統就已經預設生成了許可表和賬戶,你不需要像在unix平台上那樣執行 mysql install db指令碼來生成帳戶和相應許可權許可表。但是如果不是用msi格式來安裝mysql的話,就需要在安裝完以後,手動給root帳戶新增新密碼,因為預設情況下...

安裝完MySQL資料庫設定密碼

c mysql u root mysql set password for root localhost password newpasswd mysql set password for root password newpasswd 本條可選 通過以上設定,root的密碼將變為newpasswd...

mysql資料庫跳過密碼設定密碼的方法

mysql資料庫跳過密碼設定密碼的方法主要是通過修改配置檔案的方法 root host51 vim etc my.cnf mysqld skip grant tables 新增此行,該行的意思是跳過授權 validate password policy 0 validate password len...