您好,登錄后才能下訂單哦!
MySQL是一種關(guān)系型數(shù)據(jù)庫管理系統(tǒng),關(guān)系數(shù)據(jù)庫將數(shù)據(jù)保存在不同的表中,而不是將所有數(shù)據(jù)放在一個大倉庫內(nèi),這樣就增加了速度并提高了靈活性。
MySQL所使用的 SQL 語言是用于訪問數(shù)據(jù)庫的最常用標(biāo)準(zhǔn)化語言。MySQL 軟件采用了雙授權(quán)政策,分為社區(qū)版和商業(yè)版,由于其體積小、速度快、總體擁有成本低,尤其是開放源碼這一特點(diǎn),一般中小型網(wǎng)站的開發(fā)都選擇 MySQL 作為網(wǎng)站數(shù)據(jù)庫。
[root@mysql ~]# systemctl stop mysqld #停止MySQL服務(wù)
[root@mysql ~]# mysqld --user=root --skip-grant-tables #使用mysqld指令啟動mysql服務(wù),跳過授權(quán)表
#上述命令執(zhí)行后,會一直占用當(dāng)前終端,需要再開啟一個終端,
#也不要想著放到后臺運(yùn)行了,放到后臺3306端口不會監(jiān)聽的
[root@mysql ~]# ss -anpt | grep 3306 #再開啟一個終端,確定端口在監(jiān)聽
LISTEN 0 80 :::3306 :::* users:(("mysqld",pid=8282,fd=33))
[root@mysql ~]# mysql -uroot #直接使用root用戶登錄,無需密碼
mysql> update mysql.user set authentication_string=password('1234')
-> where User='root' and Host='localhost';
#更改root密碼為“1234”
mysql> flush privileges; #刷新權(quán)限
[root@mysql ~]# kill 8282 #將之前mysqld啟動時(shí)占用的終端進(jìn)程號kill掉,切忌不要使用-9選項(xiàng)
[root@mysql ~]# systemctl start mysqld #啟動MySQL服務(wù),使用新密碼登錄即可
如果上面的過程中,使用kill -9來結(jié)束mysqld占用的終端,那么再次啟動可能會報(bào)錯,sock文件被鎖定,此時(shí),需要將你mysql的sock文件刪除掉,我這里的sock文件在/tmp下,分別時(shí)mysql.sock.lock和mysql.sock這兩個文件,刪除后再次啟動MySQL即可。
[root@mysql01 ~]# mysql --version #確定MySQL版本
mysql Ver 14.14 Distrib 5.7.28, for linux-glibc2.12 (x86_64) using EditLine wrapper
[root@mysql01 ~]# vim /etc/my.cnf #編輯主配置文件
[mysqld] #在mysqld這行下寫入下面內(nèi)容
skip-grant-tables
.................#省略部分內(nèi)容
[root@mysql01 ~]# systemctl restart mysqld #重啟MySQL服務(wù),使配置文件生效
[root@mysql01 ~]# mysql -uroot #跳過密碼驗(yàn)證,直接登錄數(shù)據(jù)庫
#修改root密碼為pwd@123,并刷新權(quán)限
mysql> use mysql;
mysql> update user set authentication_string = passwoord('pwd@123') where user = 'root';
mysql> flush privileges; #刷新權(quán)限
mysql> exit
#配置密碼驗(yàn)證,使用新密碼登錄
[root@mysql01 ~]# vim /etc/my.cnf #編輯主配置文件
[mysqld]
skip-grant-tables #刪除此行
[root@mysql01 ~]# systemctl restart mysqld #重啟使更改生效
#使用新密碼即可成功登錄
[root@mysql01 ~]# mysql -uroot -ppwd@123
[root@mysql01 ~]# mysql --version #查看MySQL版本
mysql Ver 8.0.18 for linux-glibc2.12 on x86_64 (MySQL Community Server - GPL)
[root@mysql01 ~]# vim /etc/my.cnf #編輯主配置文件
[mysqld] #在mysqld這行下寫入下面內(nèi)容
skip-grant-tables
.................#省略部分內(nèi)容
[root@mysql01 ~]# systemctl restart mysqld #重啟MySQL服務(wù),使配置文件生效
[root@mysql01 ~]# mysql -uroot #跳過密碼驗(yàn)證,直接登錄數(shù)據(jù)庫
#將root密碼設(shè)置為空
mysql> use mysql
mysql> update user set authentication_string='' where user = 'root';
mysql> flush privileges;
mysql> exit
#開啟密碼驗(yàn)證并重新登錄數(shù)據(jù)庫
[root@mysql01 ~]# vim /etc/my.cnf #編輯主配置文件
[mysqld]
skip-grant-tables #刪除此行
[root@mysql01 ~]# systemctl restart mysqld #重啟使更改生效
[root@mysql01 ~]# mysql -uroot #直接登錄數(shù)據(jù)庫
mysql> alter user root@localhost identified by 'pwd@111';
mysql> flush privileges;
mysql> exit
#使用新密碼進(jìn)行登錄測試
[root@mysql01 ~]# mysql -uroot -ppwd@111
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。