MySQL——安装
1. 下载源: http://repo.mysql.com/yum/mysql-8.0-community/el/7/x86_64/mysql80-community-release-el7-2.noarch.rpm
该源目前为8.0版本,如果需要最新请退至根目录找。
1 | wget http: / / repo.mysql.com / yum / mysql - 8.0 - community / el / 7 / x86_64 / mysql80 - community - release - el7 - 2.noarch .rpm #下载源 |
2. 安装源
1 | yum install mysql80 - community - release - el7 - 2.noarch .rpm |
3. 查看是否安装完成
1 | yum repolist enabled | grep "mysql.*-community.*" |
查看后会出现,表明为正常安装。
可以修改vi /etc/yum.repos.d/mysql-community.repo源,改变默认安装的mysql版本。
比如要安装8.0版本,将5.7源的enabled=1改成enabled=0。然后再将8.0源的enabled=0改成enabled=1即可。
4. 安装MySQL
1 | yum install mysql - community - server |
5. 启动MySQL服务
1 2 | systemctl start mysqld systemctl restart mysqld #重启MySQL服务 |
6. 查看MySQL的启动状态
1 | systemctl status mysqld |
7.设置开机启动
1 2 | systemctl enable mysqld systemctl daemon - reload |
8. 查看MySQL默认密码:
mysql安装完成之后,在/var/log/mysqld.log文件中给root生成了一个默认密码。通过下面的方式找到root默认密码,然后登录mysql进行修改:
1 | grep 'temporary password' / var / log / mysqld.log |
9. 进入MySQL修改密码:
1 2 | mysql - uroot - p Password |
1 | set password for 'root' @ 'localhost' = password( 'Password' ); |
注意:mysql8.0默认安装了密码安全检查插件(validate_password),默认密码检查策略要求密码必须包含:大小写字母、数字和特殊符号,并且长度不能少于8位。否则会提示ERROR 1819 (HY000): Your password does not satisfy the current policy requirements错误,如下图所示
查看MySQL密码策略:
1 | mysql> show variables like '%password%' ; |
mysql密码策略
validate_password_policy:密码策略,默认为MEDIUM策略
validate_password_dictionary_file:密码策略文件,策略为STRONG才需要
validate_password_length:密码最少长度
validate_password_mixed_case_count:大小写字符长度,至少1个
validate_password_number_count :数字至少1个
validate_password_special_char_count:特殊字符至少1个
更详细的MySQL密码信息,请见:https://dev.mysql.com/doc/refman/8.0/en/validate-password-options-variables.html
10. 添加远程用户
默认只允许root帐户在本地登录,如果要在其它机器上连接mysql,必须修改root允许远程连接,或者添加一个允许远程连接的帐户,为了安全起见,我添加一个新的帐户:
8.0以前的版本:
1 | GRANT ALL PRIVILEGES ON * . * TO 'MySQL' @ '%' IDENTIFIED BY 'MySQL123!@#' WITH GRANT OPTION; |
8.0以后的版本:
1 2 | CREATE USER 'zabbix' @ 'localhost' IDENTIFIED BY '123456' ; #创建一个用户 GRANT ALL ON zabbix. * TO 'zabbix' @ 'localhost' WITH GRANT OPTION; #授予zabbix的远程登录权限。 |
查看MySQL下所用户的访问权限:
1 | select * from information_schema.user_privileges; |
11. 更改MySQL默认编码格式
1 | show variables like '%character%' ; #查看默认编码格式 |
修改/etc/my.cnf配置文件,在[mysqld]下添加编码配置,如下所示:
1 2 3 4 | [mysqld] character_set_server = utf8 init_connect = 'SET NAMES utf8' default_authentication_plugin = mysql_native_password #更改默认密码认证方式。 |
默认配置文件路径:
配置文件:/etc/my.cnf
日志文件:/var/log//var/log/mysqld.log
服务启动脚本:/usr/lib/systemd/system/mysqld.service
socket文件:/var/run/mysqld/mysqld.pid
原文地址https://www.cnblogs.com/xinbing/p/10535502.html