怎么去mysql官网下载 5.7.3版本的 server版的
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么去mysql官网下载 5.7.3版本的 server版的相关的知识,希望对你有一定的参考价值。
谢谢了
参考技术A http://downloads.mysql.com/archives/community/本回答被提问者采纳 参考技术B Mysql所用版本下载镜像,点击进去可下载历史版本centos7 mysql数据库安装和配置
官网下载安装mysql-server
# wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm # rpm -ivh mysql-community-release-el7-5.noarch.rpm # yum install mysql-community-server
安装成功后重启mysql服务。 # service mysqld restart
安装完毕后 使用(systemctl status mysqld.service)查询数据库状态 若出现绿色字符( active (running))为正常启动
mysql -u root 进入数据库! 初始密码查询(grep "password" /var/log/mysqld.log) 如下(黄色为初始密码):
[root@centos7-1 ~]# grep "password" /var/log/mysqld.log
2019-08-13T11:07:27.895083Z 5 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: xkjty)i9Pe(c
因为centos7中使用了密码简易规则 所以设置1234这种简单的密码时会报错(Your password does not satisfy the current policy requirements)
所以我们在进入数据库前通过两条命令来修改一下密码规则
(set global validate_password_policy=0;)
(set global validate_password_length=1;)
接着进去数据库 设置密码(ALTER USER ‘root‘@‘localhost‘ IDENTIFIED BY ‘123456‘;)
============================================ok!!!===========================================
以上是关于怎么去mysql官网下载 5.7.3版本的 server版的的主要内容,如果未能解决你的问题,请参考以下文章