yum 安装Mysql默认的yum安装是很古老的mysql版本,对于不需要新功能的开发者来说还是可以用的,但是对于跑应用服务器,高版本除了新特性之外,性能的优化也不是好几年前能比的。
首先,到myslq官网下载rpm包。
连接:https://dev.mysql.com/downloads/repo/yum/
根据操作系统版本,下载rpm包安装。
Centos7:https://repo.mysql.com//mysql57-community-release-el7-11.noarch.rpm
安装:rpm -Uvh ***.rpm
这里用的升级安装方式。
yum repolist all | grep mysql
查看可以支持安装的mysql组件列表。
启动你要安装的选项:
shell> sudo yum-config-manager --disable mysql57-community
shell> sudo yum-config-manager --enable mysql56-community
安装:
sudo yum install mysql-community-server
启动:
sudo systemctl start mysqld.service
查看状态:
sudo systemctl status mysqld.service
启动好了之后是不是可以登录了?
密码是什么?
默认密码在日志中:
sudo grep 'temporary password' /var/log/mysqld.log
登录进去之后,修改密码:
ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass4!';
repo安装
手动创建repo文件:/etc/yum.repos.d/mysql-community.repo
[mysql57-community]
name=MySQL 5.7 Community Server
baseurl=http://repo.mysql.com/yum/mysql-5.7-community/el/6/$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql
# Enable to use MySQL 5.6
[mysql56-community]
name=MySQL 5.6 Community Server
baseurl=http://repo.mysql.com/yum/mysql-5.6-community/el/6/$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql
查看:
shell> yum repolist enabled | grep mysql
网友评论