yum -y install wget https://repo.mysql.com/mysql57-community-release-el7-8.noarch.rpm
是否存在mysql-community. repo和mysql-community-source.repo
yum -y install mysql-community-server
若此時遇到如下錯誤:
「Public key for mysql-community-libs-compat-5.7.37-1.el7.x86_64.rpm is not installed
Failing package is: mysql-community -libs-compat-5.7.37-1.el7.x86_64
GPG Keys are configured as: file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql”
出現以上狀況原因是MySQL的GPG升級,需要重新取得。
rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022
之後重新執行「yum -y install mysql-community-server」指令安裝即可。
開啟服務:
systemctl start mysqld
如果需要設定開機自啟動:
systemctl enable mysqld
會在/var/log/mysqld.log中自動產生一個隨機密碼,取得該密碼
grep 'temporary password' /var/log/mysqld.log
使用取得到的隨機密碼登入MySQL客戶端。
mysql -uroot -p
密碼強度及長度(4代表最低級別,當長度小於4時,該值仍然是4 )都設最低級,修改密碼。
其中密碼強度:
0:low級別,只檢查長度;
1 :medium級別(預設),長度8,且必須包含數字、大小寫字母及特殊字元;
2:strong級別,需要包含字典檔案。
set global validate_password_policy=0; set global validate_password_length=4; alter user 'root'@'localhost' identified by '123456';
建立使用者:
create user 'root'@'%' identified by '123456';
允許遠端連線:
grant all privileges on *.* to 'root'@'%' with grant option;
刷新權限:
flush privileges;#
以上是CentOS7中安裝MySQL實例分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!