centos7中Mysql修改密碼的幾種方法

2021-09-27 05:01:45 字數 994 閱讀 2270

修改密碼

root修改自己密碼

方法一:

方法二:

在mysql中

update mysql.user set authentication_string=password('qianfeng123!') where user='root' and host='localhost';
方法三:

給哪個使用者設定密碼,你要在哪個使用者下執行

set password=password("new_password'')
上面方法將會在後面的版本remove,使用下面方法

set password='new_password';  直接設定密碼
root修改其他使用者密碼

方法一:

mysql> set password for user3@'localhost'=password('new_password');
上面的方法會在將來remove,使用下面的方法:

mysql> set password for user3@'localhost'='new_password';
方法二:

update mysql.user set authentication_string=password('new_password')

where user='user3' and host='localhost';

普通使用者修改自己密碼

mysql> set password=password('new_password');

mysql> select * from mysql.user\g

mysql> alter user 'wing'@'localhost' identified by 'qianfeng123!@';

Centos7 修改網絡卡

檢視網路狀態 進入 etc udev rules.d 目錄修改目錄下的檔案 root base linux cd etc udev rules.d 修改完成後重啟啟動伺服器 注意 拷貝的虛擬機器,在修改網絡卡時,需要特別注意 1 ifup eht1 拷貝虛擬機器新修改的網絡卡名稱 2 這是ifup指...

centos 7 修改密碼

centos 7 rhel 7與之前的5,6不同的是,當忘記root密碼,並採用grub2為啟動器時,將無法通過單使用者模式重置root密碼。下面將介紹如何重置centos7的root密碼。1.啟動系統,並在grub2啟動屏顯時,按下e鍵進入編輯模式。2.在linux16 linux linuxef...

CentOS7安裝MySQL以及密碼修改

wget i cyum y install mysql57 community release el7 10.noarch.rpm之後就開始安裝mysql伺服器。yum y install mysql community server這步可能會花些時間,安裝完成後就會覆蓋掉之前的mariadb。至此...