您好,登錄后才能下訂單哦!
標(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';
免責(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)容。