CentOS7.3 安裝 MySQL 5.7.24

haoge0205發表於2019-01-10

系統版本:

Red Hat Enterprise Linux Server release 7.3 (Maipo)


yum install mysql-community-common

yum install mysql-community-client

yum install mysql-community-server


在安裝mysql5.7資料庫的時候,在安裝mysql-community-server包的時候提示缺少libsasl2.so.2()(64bit)


解決方法:

vim /etc/yum.repos.d/mysql-community.repo

[mysql57-community]

        name=MySQL 5.7 Community Server

        ## baseurl=

        baseurl=

        enabled=1

        gpgcheck=0

        gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql

        

再次安裝:

yum install mysql-community-server


啟動資料庫:

service mysqld start

systemctl start mysqld


關閉資料庫:

service mysqld stop

systemctl stop mysqld


初始化:

mysqld --initialize --user=mysql --basedir=/data/my  --datadir=/data/my/data &


設定開機啟動:

systemctl enable mysqld


systemctl daemon-reload 


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28939273/viewspace-2375334/,如需轉載,請註明出處,否則將追究法律責任。

相關文章