1

centos7.6 安装部署 mysql 8.0.28(yum) -m6米乐安卓版下载

原创 代野(tank) 2022-02-22
3700

mysql 8.0.28
centos 7.6

在安装mysql前,首先需要确定安装的版本及发行的安装包格式。

确定安装开发版还是ga(general availability)版本,开发版拥有最新的特性,但是不建议在生产环境使用。ga版本也称为生产版或稳定版,适用于生产环境使用。mysql建议使用最新的ga版本。

清理系统默认集成的 mariadb

rpm -qa | grep mariadb-libs* mariadb-lib-5.5.60-1.el7_5.x86_64 rpm -e --nodeps mariadb-libs-5.5.60-1.el7_5.x86_64

关闭防火墙

--关闭服务 systemctl stop firewalld.service --关闭自启 systemctl disable firewalld.service

关闭 selinux

sed -i 's/selinux=enforcing/selinux=disabled/' /etc/selinux/config setenforce 0 getenforce

方式一:离线下载

浏览器访问地址:

image.png

方法二:在线 wget

yum install -y wget wget https://dev.mysql.com/get/mysql80-community-release-el7-5.noarch.rpm
yum install -y mysql80-community-release-el7-5.noarch.rpm

image.png

yum install -y mysql-community-server

image.png

启动 mysql server

systemctl start mysqld systemctl status mysqld

修改临时密码

grep 'temporary password' /var/log/mysqld.log

image.png

mysql -uroot -p alter user 'root'@'localhost' identified by 'shardingsphere@2022';

配置允许远程登录

use mysql; update user set host = '%' where user = 'root'; flush privileges;

创建测试库

create database ds_1;

需要在“驱动”-“连接属性”中添加 allowpublickeyretrieval=true 属性

image.png

image.png
image.png

[1]

[2]


tank

2022.2.6

最后修改时间:2022-02-23 01:19:16
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【米乐app官网下载的版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论

网站地图