标签:release art centos7 是你 sysconfig 登录 忘记root密码 工作 The
参考文章:
https://blog.csdn.net/qq_23167527/article/details/85236999
使用以下命令查找出安装的mysql软件包和依赖包
rpm -pa | grep mysql
使用以下命令依次删除上面的程序
yum remove mysql-xxx-xxx-
删除mysql的配置文件,卸载不会自动删除配置文件,首先使用如下命令查找出所用的配置文件;
find / -name mysql
根据需求使用以下命令 依次 对配置文件进行删除
rm -rf /var/lib/mysql
1.1.2 删除MariaDB的文件
由于MySQL在CentOS7中收费了,所以已经不支持MySQL了,取而代之在CentOS7内部集成了mariadb,而安装MySQL的话会和MariaDB的文件冲突,所以需要先卸载掉MariaDB.
使用rpm 命令查找出要删除的mariadb文件;
rpm -pa | grep mariadb
使用强制删除 rpm -e --nodeps mariadb-libs-5.5.56-2.el7.x86_64
https://dev.mysql.com/downloads/repo/yum/
rpm -ivh mysql57-community-release-el7-11.noarch.rpm
会在/etc/yum.repos.d/目录下生成两个repo文件mysql-community.repo mysql-community-source.repo
更新 yum 命令
yum clean all
yum makecache
yum install mysql-community-server
systemctl start mysqld.service
mysql在安装后会创建一个root@locahost账户,并且把初始的密码放到了/var/log/mysqld.log文件中;
cat /var/log/mysqld.log | grep password
使用初始密码登录 mysql -u root -p
修改初始密码:
ALTER USER ‘root‘@‘localhost‘ IDENTIFIED BY ‘PAssword!‘;
创建用户和授权
用户创建:create user ‘quanran‘@‘%‘ identified by ‘QuanRan123:‘;
授权:grant all privileges on *.* to ‘quanran‘@‘%‘ with grant option;
查看用户权限:select host, user, authentication_string, plugin from user;
删除用户:DROP USER ‘username‘@‘host‘;
CentOS7默认使用的是firewall作为防火墙,我这里改为习惯常用的iptables防火墙
第一步: 关闭firewall防火墙
systemctl stop firewalld.service
systemctl disable firewalld.service
systemctl mask firewalld.service
第二步: 安装iptables防火墙
yum install iptables-services -y
第三步: 启动iptable防火墙
systemctl enable iptables
systemctl start iptables
第四步: 编辑防火墙增加端口 防火墙文件位置为: /etc/sysconfig/iptables
vim /etc/sysconfig/iptables
在倒数第三行上增加
-A INPUT -p tcp -m state --state NEW -m tcp --dport 3306 -j ACCEPT
第五步: 重启防火墙
systemctl enable iptables.service
systemctl start iptables.service
systemctl enable mysqld.service
systemctl restart mysqld.service
#修改加密规则 ALTER USER ‘root‘@‘localhost‘ IDENTIFIED BY ‘Pass!word‘ PASSWORD EXPIRE NEVER;
#更新密码(mysql_native_password模式) ALTER USER ‘root‘@‘localhost‘ IDENTIFIED WITH mysql_native_password BY ‘{newPass!word}‘;
可能是你的帐号不允许从远程登陆,只能在localhost。
mysql -u root -p
use mysql;
update user set host=‘%‘ where user=‘root‘;
quit;exit;退出后重新使用localhost登陆
1.mysql -hlocalhost -uroot -p
2、mysql>GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ WITH GRANT OPTION //赋予任何主机访问数据的权限
3、mysql>FLUSH PRIVILEGES //修改生效 4、mysql>EXIT //退出MySQL服务器
Authentication plugin ‘caching_sha2_password‘ cannot be loaded:
mysql8.0 引入了新特性 caching_sha2_password;这种密码加密方式客户端不支持;客户端支持的是mysql_native_password 这种加密方式;
update user set plugin=‘mysql_native_password‘ where user=‘root‘;
Your password does not satisfy the current policy requirements
1.首先确认服务器出于安全的状态,也就是没有人能够任意地连接MySQL数据库。 因为在重新设置MySQL的root密码的期间,MySQL数据库完全出于没有密码保护的 状态下,其他的用户也可以任意地登录和修改MySQL的信息。可以采用将MySQL对外的端口封闭,并且停止Apache以及所有的用户进程的方法实现服务器的准安全状态。最安全的状态是到服务器的Console上面操作,并且拔掉网线。
2.修改MySQL的登录设置: # vi /etc/my.cnf 在[mysqld]的段中加上一句:skip-grant-tables 保存并且退出vi。
3.重新启动mysqld # /etc/init.d/mysqld restart ( service mysqld restart )
4.登录并修改MySQL的root密码 mysql> USE mysql ;
mysql> UPDATE user SET Password = password ( ‘new-password‘ ) WHERE User = ‘root‘ ; mysql> flush privileges ; mysql> quit
5.将MySQL的登录设置修改回来 # vi /etc/my.cnf 将刚才在[mysqld]的段中加上的skip-grant-tables删除 保存并且退出vi。
6.重新启动mysqld # /etc/init.d/mysqld restart ( service mysqld restart )
7.恢复服务器的正常工作状态 将步骤一中的操作逆向操作。恢复服务器的工作状态。
标签:release art centos7 是你 sysconfig 登录 忘记root密码 工作 The
原文地址:https://www.cnblogs.com/rainbowk/p/10678767.html