MySQL是一種關系型數(shù)據(jù)庫管理系統(tǒng),關系數(shù)據(jù)庫將數(shù)據(jù)保存在不同的表中,而不是將所有數(shù)據(jù)放在一個大倉庫內,這樣就增加了速度并提高了靈活性。
創(chuàng)新互聯(lián)的客戶來自各行各業(yè),為了共同目標,我們在工作上密切配合,從創(chuàng)業(yè)型小企業(yè)到企事業(yè)單位,感謝他們對我們的要求,感謝他們從不同領域給我們帶來的挑戰(zhàn),讓我們激情的團隊有機會用頭腦與智慧不斷的給客戶帶來驚喜。專業(yè)領域包括網(wǎng)站制作、做網(wǎng)站、電商網(wǎng)站開發(fā)、微信營銷、系統(tǒng)平臺開發(fā)。
MySQL所使用的 SQL 語言是用于訪問數(shù)據(jù)庫的最常用標準化語言。MySQL 軟件采用了雙授權政策,分為社區(qū)版和商業(yè)版,由于其體積小、速度快、總體擁有成本低,尤其是開放源碼這一特點,一般中小型網(wǎng)站的開發(fā)都選擇 MySQL 作為網(wǎng)站數(shù)據(jù)庫。
[root@mysql ~]# systemctl stop mysqld #停止MySQL服務
[root@mysql ~]# mysqld --user=root --skip-grant-tables #使用mysqld指令啟動mysql服務,跳過授權表
#上述命令執(zhí)行后,會一直占用當前終端,需要再開啟一個終端,
#也不要想著放到后臺運行了,放到后臺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; #刷新權限
[root@mysql ~]# kill 8282 #將之前mysqld啟動時占用的終端進程號kill掉,切忌不要使用-9選項
[root@mysql ~]# systemctl start mysqld #啟動MySQL服務,使用新密碼登錄即可
如果上面的過程中,使用kill -9來結束mysqld占用的終端,那么再次啟動可能會報錯,sock文件被鎖定,此時,需要將你mysql的sock文件刪除掉,我這里的sock文件在/tmp下,分別時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這行下寫入下面內容
skip-grant-tables
.................#省略部分內容
[root@mysql01 ~]# systemctl restart mysqld #重啟MySQL服務,使配置文件生效
[root@mysql01 ~]# mysql -uroot #跳過密碼驗證,直接登錄數(shù)據(jù)庫
#修改root密碼為pwd@123,并刷新權限
mysql> use mysql;
mysql> update user set authentication_string = passwoord('pwd@123') where user = 'root';
mysql> flush privileges; #刷新權限
mysql> exit
#配置密碼驗證,使用新密碼登錄
[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這行下寫入下面內容
skip-grant-tables
.................#省略部分內容
[root@mysql01 ~]# systemctl restart mysqld #重啟MySQL服務,使配置文件生效
[root@mysql01 ~]# mysql -uroot #跳過密碼驗證,直接登錄數(shù)據(jù)庫
#將root密碼設置為空
mysql> use mysql
mysql> update user set authentication_string='' where user = 'root';
mysql> flush privileges;
mysql> exit
#開啟密碼驗證并重新登錄數(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
#使用新密碼進行登錄測試
[root@mysql01 ~]# mysql -uroot -ppwd@111