前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >CentOS 8 上MySQL 8.0 安装部署与配置教程

CentOS 8 上MySQL 8.0 安装部署与配置教程

作者头像
KenTalk
发布2020-12-01 10:50:45
3.1K0
发布2020-12-01 10:50:45
举报
文章被收录于专栏:Ken的杂谈Ken的杂谈

一、前言

1、本教程主要内容

  • MySQL 8.0安装(yum)
  • MySQL 8.0 基础配置
  • MySQL shell管理常用语法示例(用户、权限等)
  • MySQL字符编码配置

2、本教程环境信息与适用范围

  • 环境信息

软件

版本

CentOS

8.2 Release

MySQL

8.0.21

  • 适用范围

软件

版本

CentOS

CentOS 8

MySQL

8.0.21+

二、安装

1、添加包

代码语言:javascript
复制
#CentOS 7
cd /home/downloads
wget https://dev.mysql.com/get/mysql80-community-release-el8-1.noarch.rpm
sudo rpm -ivh mysql80-community-release-el8-1.noarch.rpm

2、安装

代码语言:javascript
复制
#安装
sudo yum install -y mysql-server

#启动服务
sudo systemctl start mysqld

#查看版本信息
mysql -V

#mysql  Ver 8.0.21 for Linux on x86_64 (Source distribution)

3、root账号密码修改

代码语言:javascript
复制
#1、无密码进入MySQL shell
mysql -u root

#2、修改密码
ALTER USER 'root'@'localhost' IDENTIFIED BY 'Mypwd123!';

4、开放端口

代码语言:javascript
复制
#开放端口
firewall-cmd --add-port=3306/tcp --permanent

#重新加载防火墙设置
firewall-cmd --reload

三、MySQL安全设置

1、MySQL 8 安全设置介绍

MySQL 8 新增了安全设置向导,这对于在服务器部署MySQL来说,简化了安全设置的操作,非常棒。

安全设置大致分为以下几个步骤/选项

  1. 密码强度验证插件
  2. 修改root账号密码
  3. 移除匿名用户
  4. 禁用root账户远程登录
  5. 移除测试数据库(test)
  6. 重新加载授权表

以上几个步骤/选项根据自己需要来即可。

2、MySQL 8 安全设置示例

  • 进入安全设置
代码语言:javascript
复制
mysql_secure_installation
  • 设置示例
代码语言:javascript
复制
Securing the MySQL server deployment.

Enter password for user root: 

The existing password for the user account root has expired. Please set a new password.

New password: 

Re-enter new password: 

VALIDATE PASSWORD PLUGIN can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to setup VALIDATE PASSWORD plugin?

Press y|Y for Yes, any other key for No: N
Using existing password for root.
Change the password for root ? ((Press y|Y for Yes, any other key for No) : Y

New password: 

Re-enter new password: 
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.

Remove anonymous users? (Press y|Y for Yes, any other key for No) : 

 ... skipping.


Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.

Disallow root login remotely? (Press y|Y for Yes, any other key for No) : N

 ... skipping.
By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.


Remove test database and access to it? (Press y|Y for Yes, any other key for No) : N

 ... skipping.
Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.

Reload privilege tables now? (Press y|Y for Yes, any other key for No) : Y
Success.

All done!

四、MySQL shell管理语法示例

1、数据库相关语法示例

代码语言:javascript
复制
#创建数据库
mysql> CREATE DATABASE mydb;

#查看所有数据库
mysql> SHOW DATABASES;

#使用数据并创建表
mysql> USE mydb;
mysql> CREATE TABLE test(id int,body varchar(100));

#查看表
mysql> SHOW TABLES;

2、用户与访问授权语法示例

代码语言:javascript
复制
#新建本地用户
mysql> CREATE USER 'test'@'localhost' IDENTIFIED BY '123456';

#新建远程用户
mysql> CREATE USER 'test'@'%' IDENTIFIED BY '123456';

#赋予指定账户指定数据库远程访问权限
mysql> GRANT ALL PRIVILEGES ON mydb.* TO 'test'@'%';

#赋予指定账户对所有数据库远程访问权限
mysql> GRANT ALL PRIVILEGES ON *.* TO 'test'@'%';

#赋予指定账户对所有数据库本地访问权限
mysql> GRANT ALL PRIVILEGES ON *.* TO 'test'@'localhost';

#刷新权限
mysql> FLUSH PRIVILEGES;

3、授权相关语法示例

代码语言:javascript
复制
#1、查看权限
SHOW GRANTS FOR 'test'@'%';

#2、赋予权限
GRANT ALL PRIVILEGES ON *.* TO 'test'@'%';

#3、收回权限
REVOKE ALL PRIVILEGES ON *.* FROM 'test'@'%';

#4、刷新权限
FLUSH PRIVILEGES;

#5、删除用户
DROP USER 'test'@'localhost';

五、修改字符编码

1、 查找配置文件位置

代码语言:javascript
复制
[root@centos7 download]# whereis my.cnf
my: /etc/my.cnf

2、 修改配置文件

代码语言:javascript
复制
#修改配置文件
vi /etc/my.cnf

#修改1:增加client配置(文件开头)
[client]
default-character-set=utf8mb4

#修改2:增加mysqld配置(文件结尾)
#charset
character-set-server=utf8mb4
collation-server=utf8mb4_general_ci

3、 重启mysql服务

代码语言:javascript
复制
#重启后配置即可生效
systemctl restart mysqld

六、备注

相关阅读

  • MySQL中的utf8

http://www.infoq.com/cn/articles/in-mysql-never-use-utf8-use-utf8

  • MySQL远程访问与bind-address问题

https://serverfault.com/questions/139323/how-to-bind-mysql-server-to-more-than-one-ip-address

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2020-11-27 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 一、前言
    • 1、本教程主要内容
      • 2、本教程环境信息与适用范围
      • 二、安装
        • 1、添加包
          • 2、安装
            • 3、root账号密码修改
              • 4、开放端口
              • 三、MySQL安全设置
                • 1、MySQL 8 安全设置介绍
                  • 2、MySQL 8 安全设置示例
                  • 四、MySQL shell管理语法示例
                    • 1、数据库相关语法示例
                      • 2、用户与访问授权语法示例
                        • 3、授权相关语法示例
                        • 五、修改字符编码
                          • 1、 查找配置文件位置
                            • 2、 修改配置文件
                              • 3、 重启mysql服务
                              • 六、备注
                                • 相关阅读
                                相关产品与服务
                                云数据库 SQL Server
                                腾讯云数据库 SQL Server (TencentDB for SQL Server)是业界最常用的商用数据库之一,对基于 Windows 架构的应用程序具有完美的支持。TencentDB for SQL Server 拥有微软正版授权,可持续为用户提供最新的功能,避免未授权使用软件的风险。具有即开即用、稳定可靠、安全运行、弹性扩缩等特点。
                                领券
                                问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档