centos安装mysql遇到的问题

安装wget https://repo.mysql.com//mysql80-community-release-el7-1.noarch.rpm
1、yum -y install mysql-server遇到这个问题
在这里插入图片描述
2、解决执行: rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022
再次 yum -y install mysql-server
启动
systemctl start mysqld.service
systemctl status mysqld.service
3、初始密码查看
grep “password” /var/log/mysqld.log
centos安装mysql遇到的问题_第1张图片
解决密码复杂度
密码的长度是由validate_password_length决定的,但是可以通过以下命令修改
set global validate_password_length=4;
validate_password_policy决定密码的验证策略,默认等级为MEDIUM(中等),可通过以下命令修改为LOW(低)
set global validate_password_policy=0;
修改密码
centos安装mysql遇到的问题_第2张图片

ALTER USER ‘root’@‘localhost’ IDENTIFIED BY ‘new password’;
开启远程访问
执行以下命令开启远程访问限制(注意:下面命令开启的IP是 192.168.0.1,如要开启所有的,用%代替IP):
grant all privileges on . to ‘root’@‘192.168.0.1’ identified by ‘password’ with grant option;
flush privileges;
mysql -uroot -p
输入密码
如果防火墙未关闭
执行firewall-cmd --zone=public --add-port=3306/tcp --permanent;
firewall-cmd --zone=public --add-port=8080/tcp --permanent;
firewall-cmd --reload;
4、语言更改
不是utf-8
centos安装mysql遇到的问题_第3张图片

因此我们先退出mysql,然后再到、etc目录下的my.cnf文件下修改一下文件内容
初始内容
centos安装mysql遇到的问题_第4张图片
添加
[client]
default-character-set=utf8

socket=/var/lib/mysql/mysql.sock
character-set-server=utf8
collation-server=utf8_genera_ci

centos安装mysql遇到的问题_第5张图片
修改后配合着文件
启动错误
MySQL】initialize specified but the data directory has files in it. Aborting
解决通过该地址内容
https://blog.csdn.net/tr1912/article/details/81271851

你可能感兴趣的:(mysql,java,开发语言,后端)