溫馨提示×

溫馨提示×

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

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

CentOS 7 下使用yum安裝MySQL5.7.20 最簡單方法

發(fā)布時間:2020-09-30 02:25:31 來源:腳本之家 閱讀:166 作者:mrr 欄目:MySQL數(shù)據(jù)庫

CentOS7默認(rèn)數(shù)據(jù)庫是mariadb, 但是 好多用的都是mysql ,但是CentOS7的yum源中默認(rèn)好像是沒有mysql的。

上一篇安裝的是5.6的但是我想安裝5.7的  yum安裝是最簡單的 嘗試過編譯安裝各種問題,最后就決定用yum。

(經(jīng)過一段時間的學(xué)習(xí)又寫了一篇用源碼安裝mysql5.7.22的 點擊打開鏈接)

1.卸載  先停掉mysql進程   沒有安裝過的可以直接跳過

 pkill -9 mysqld  
  rpm -qa|grep -i mysql 
      

      用命令 yum -y remove

  yum -y remove mysql-community-client-5.6.38-2.el7.x86_64

      卸載不掉的用 rpm -ev

      依次卸載 直到?jīng)]有

2.下載mysql的repo源 這個安裝的mysql5.7.20  /**糾正一下,這源下載的是最新的版本  ****/

 [root@localhost ~]# cd /usr/local/src/
 [root@localhost src]# wget http://repo.mysql.com/mysql57-community-release-el7-8.noarch.rpm
 [root@localhost src]# rpm -ivh mysql57-community-release-el7-8.noarch.rpm
 [root@localhost src]# yum -y install mysql-server

(也可以指定安裝目錄     yum --installroot=/usr/local/mysql --releasever=/ -y install mysql-server  )我沒試,這樣裝環(huán)境變量配置都不用你管,裝上直接啟動就行。安裝路徑是默認(rèn)的。

       一路 y 

根據(jù)步驟安裝就可以了,

默認(rèn)配置文件路徑:
配置文件:/etc/my.cnf
日志文件:/var/log/var/log/mysqld.log
服務(wù)啟動腳本:/usr/lib/systemd/system/mysqld.service
 socket文件:/var/run/mysqld/mysqld.pid 

  配置  my.cnf        vim /etc/my.cnf

[mysqld]
 #
 # Remove leading # and set to the amount of RAM for the most important data
 # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
 # innodb_buffer_pool_size = 128M
 #
 # Remove leading # to turn on a very important data integrity option: logging
 # changes to the binary log between backups.
 # log_bin
 #
 # Remove leading # to set options mainly useful for reporting servers.
 # The server defaults are faster for transactions and fast SELECTs.
 # Adjust sizes as needed, experiment to find the optimal values.
 # join_buffer_size = 128M
 # sort_buffer_size = 2M
 # read_rnd_buffer_size = 2M
 datadir=/var/lib/mysql
 socket=/var/lib/mysql/mysql.sock
 server_id = 1
 expire_logs_days = 3
 # Disabling symbolic-links is recommended to prevent assorted security risks
 symbolic-links=0
 log-error=/var/log/mysqld.log
 pid-file=/var/run/mysqld/mysqld.pid

不過安裝完成后,密碼為隨機密碼,需要重置密碼。

 4.  啟動mysql服務(wù)

service mysqld restart

 重置密碼

 [root@localhost ~]# grep "password" /var/log/mysqld.log 

    可以看到  輸入 mysql -u root -p   密碼 進入      第一次登陸 ,需要重置密碼 要不什么也不能操作      

       接下來重置密碼:5.7.20 為了安全密碼           必須包含 數(shù)字字母符號

      踩過的坑啊,設(shè)置了好幾次。還有這ip不能是% 不知道為什么  反正第一次設(shè)置成%沒成功  登上去之后再改就可以改了。

       把密碼改簡單的方法 https://www.jb51.net/article/150472.htm

alter user 'root'@'localhost' identified by 'Root!!2018'; 

     最后記得刷新權(quán)限;

     flush privileges

    也可以 直接再添加新用戶    

 CREATE USER ‘root‘@‘%‘ IDENTIFIED BY ‘您的密碼‘;

 grant all on *.* to 'root001'@'%' identified by 'Root@@' with grant option;

   增加root用戶指定可以任意IP登錄,如果想限制只能讓指定IP登錄請把%替換成IP地址

   問題:如果發(fā)現(xiàn)找不到密碼!?。。。?/p>

   解決:只能通過忘記密碼的方式修改密碼!!! 在安裝的過程中發(fā)現(xiàn)找不到密碼???折騰了好長時間 通過修改密碼找回之后發(fā)現(xiàn)、原來之前安裝的數(shù)據(jù)庫在了,就沒有生產(chǎn)新的數(shù)據(jù)庫??!用的還是之前的配置。

2.看mysql啟動了沒?初始化數(shù)據(jù)庫了沒?  一般直接啟動 數(shù)據(jù)庫 就可以 用grep "password" /var/log/mysqld.log    看到隨機密碼了

修改MySQL的登錄設(shè)置:

#vi /etc/my.cnf

在[mysqld]的段中加上一句:skip-grant-tables 保存并且退出vi。

重新啟動mysqld

重新啟動mysqld
 #/etc/init.d/mysqld restart ( service mysqld restart )
 use mysql 
 update user set password=password("12345") where user="root";
 mysql 5.7的數(shù)據(jù)庫沒有了password字段 用的是authentication_string字段
mysql> update mysql.user set authentication_string=password('root') where user='root' ;
 flush privileges;

修改密碼之后在改回來。

總結(jié)

以上所述是小編給大家介紹的CentOS 7 下使用yum安裝MySQL5.7.20 最簡單方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對億速云網(wǎng)站的支持!

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

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

AI