欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Linux系统下安装mysql时出现1045,1130错误的解决办法

程序员文章站 2024-01-02 16:09:34
环境 centos6.8 软件 mysql5.7.22 首先查询中是否是否有mysql rpm -qa|grep mysql yum -y remove 粘贴查询出来的文件 mysql安装完成登录时...

环境 centos6.8 软件 mysql5.7.22

首先查询中是否是否有mysql

rpm -qa|grep mysql

yum -y remove 粘贴查询出来的文件

mysql安装完成登录时报1045,解决办法

1、打开etc目录下my.cnf文件

vi /etc/my.cnf [mysqld] 下加 skip-grant-tables

2、重启mysql服务

service mysqld restart

3、进入mysql修改密码

mysql -u root -p 回车 输入密码

>use mysql;

>update user set authentication_string=password('密码') where user='root';密码尽量要复杂,不然后面还有修改密码;

>flush privileges;

>quit;

4、删除 skip-grant-tables ,重启mysql服务

远程连接mysql服务时报1130,需要权限

1、进入mysql

mysql -u root -p 回车 输入密码

>use mysql;

>grant all privileges on *.* to 'root'@'x.x.x.x' identified by '密码';

>grant all privileges on *.* to 'root'@'x.x.x.x' identified by '密码' with grant option;

>flush privileges;

2、在远程连接过程中出现10060错误,需关闭系统防火墙

service iptables status

service iptables stop

chkconfig iptables off 永久关闭服务

上一篇:

下一篇: