溫馨提示×

溫馨提示×

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

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

centos7使用rpm安裝mysql5.7的方法

發(fā)布時間:2022-05-07 16:21:42 來源:億速云 閱讀:411 作者:iii 欄目:大數(shù)據(jù)

這篇文章主要講解了“centos7使用rpm安裝mysql5.7的方法”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“centos7使用rpm安裝mysql5.7的方法”吧!

1.下載 4個rpm包

mysql-community-client-5.7.26-1.el7.x86_64.rpm
mysql-community-common-5.7.26-1.el7.x86_64.rpm
mysql-community-libs-5.7.26-1.el7.x86_64.rpm
mysql-community-server-5.7.26-1.el7.x86_64.rpm

想要用迅雷進(jìn)行下載得先找到對應(yīng)的rpm下載路徑

首先瀏覽器打開mysql官網(wǎng):

在打開的界面,按鍵盤 f12 打開開發(fā)者工具,打開后如下:

centos7使用rpm安裝mysql5.7的方法

在官網(wǎng)找到對應(yīng)的版本:

centos7使用rpm安裝mysql5.7的方法

點(diǎn)擊直接下載:

centos7使用rpm安裝mysql5.7的方法

在開發(fā)者工具就能找到下載路徑:

centos7使用rpm安裝mysql5.7的方法

如下給出了4個myql5.7 的rpm包的路徑,直接打開迅雷填入下載路徑就可以進(jìn)行下載,其他版本可以用同樣方法:

https://cdn.mysql.com//downloads/mysql-5.7/mysql-community-server-5.7.26-1.el7.x86_64.rpm

https://cdn.mysql.com//downloads/mysql-5.7/mysql-community-client-5.7.26-1.el7.x86_64.rpm

https://cdn.mysql.com//downloads/mysql-5.7/mysql-community-common-5.7.26-1.el7.x86_64.rpm

https://cdn.mysql.com//downloads/mysql-5.7/mysql-community-libs-5.7.26-1.el7.x86_64.rpm

2.上傳rpm到linux

我這里用的xshell,沒有安裝xftp

centos7使用rpm安裝mysql5.7的方法

在sftp輸入 put命令,選擇下載好的rpm包即可上傳:

centos7使用rpm安裝mysql5.7的方法

3.安裝

已經(jīng)上傳好的rpm如下:

centos7使用rpm安裝mysql5.7的方法

通過 rpm -ivhmysql-community-****-5.7.26-1.el7.x86_64.rpm--force --nodeps 進(jìn)行安裝,***表示common 、libs、client、server

安裝順序 common-->libs-->client-->server

如果沒有--force --nodeps會出現(xiàn)告警:

  warning: mysql-community-common-5.7.26-1.el7.x86_64.rpm: header v3 dsa/sha1 signature, key id 5072e1f5: nokey

4.配置

啟動mysql服務(wù) :

[root@localhost ~]# service mysqld start
redirecting to /bin/systemctl start mysqld.service
[root@localhost ~]#

找到初始密碼:

[root@localhost ~]# cat /var/log/mysqld.log |grep password
2019-06-02t08:39:38.448115z 1 [note] a temporary password is generated for root@localhost: dlzmcrv?s2q)
2019-06-02t08:40:41.870130z 2 [note] access denied for user 'root'@'localhost' (using password: no)

登陸mysql:

[root@localhost ~]# mysql -u root -p

密碼為上面找到的dlzmcrv?s2q)

修改root密碼:

mysql> alter user 'root'@'localhost' identified by 'newpasswd';

允許遠(yuǎn)程連接:

mysql> grant all privileges on *.* to 'root'@'%' identified by 'newpasswd' with grant option;
mysql> flush peivleges;

關(guān)閉防火墻:

[root@localhost ~]# systemctl stop firewalld.service

感謝各位的閱讀,以上就是“centos7使用rpm安裝mysql5.7的方法”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對centos7使用rpm安裝mysql5.7的方法這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!

向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