溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

數(shù)據(jù)庫密碼管理基本常識

發(fā)布時間:2020-07-10 10:05:25 來源:網(wǎng)絡(luò) 閱讀:626 作者:薛偉博 欄目:MySQL數(shù)據(jù)庫

標(biāo)題索引


  • 常識總結(jié)


常識總結(jié)

在安裝數(shù)據(jù)后的基本常識

1.修改用戶的密碼

    方法1用SET PASSWORD命令

mysql -u root
MariaDB [(none)]> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass');

    方法2用update編輯user表

mysql -u root
MariaDB [(none)]> update mysql.user set password=PASSWORD('weibodu') where user='root' and host='localhost';

    方法3用客戶端工具

mysqladmin -u root password "newpass"
如果root已經(jīng)設(shè)置過密碼,采用如下方法
mysqladmin -u root password oldpass "newpass"

2.刪除匿名無用帳號

MariaDB [(none)]> delete from mysql.user where host='127.0.0.1';
MariaDB [(none)]> delete from mysql.user where host='localhost';

###########mysql_secure_installation來代替前兩種命令行操作#############

3.忘記root用戶密碼時

    第一步:停止mariadb服務(wù)

    第二步:編輯服務(wù)配置文件

#vim /etc/my.cnf
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
symbolic-links=0
#添加如下一行
skip-grant-tables

    第三步:重啟數(shù)據(jù)庫服務(wù)并登陸

#mysql -u
MariaDB [(none)]> update mysql.user set password=PASSWORD('weibodu') where user='root' and host='localhost';


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI