yum 安装 Mysql 5.7,忘记密码解决方案

Linux卸载yum安装的mysql

一、系统情况

Linux:Centos7.4(64位)

Mysql:5.6

二、卸载mysql

1.查看安装了哪些mysql程序

Bash

rpm -qa | grep -i mysql # 命令1
yum list install mysql* # 或命令2

2.使用yum remove卸载

Bash

yum remove mysql mysql-server mysql-libs compat-mysql51
yum remove mysql-community-release

3.剩下卸载不了使用

Bash

rpm -e --nodeps mysql-community-libs-5.7.22-1.el7.x86_64
rpm -e –nodeps mysql57-community-release-el7-11.noarch

4.删除残留的mysql的目录或文件

Bash

whereis mysql  或  find / -name mysql
#注意不要误删其他程序的mysql文件夹
rm -rf /usr/lib64/mysql
rm -rf /usr/share/mysql
rm -rf /usr/bin/mysql
rm -rf /etc/logrotate.d/mysql
rm -rf /var/lib/mysql
rm -rf /var/lib/mysql/mysql

5.删除mysql配置文件

Bash

rm –rf /usr/my.cnf
rm -rf /root/.mysql_sercret

6.删除mysql开机自启动服务

Bash

chkconfig --list | grep -i mysql #查看mysql的服务
chkconfig --del mysqld #服务名为你设置时候自己设置的名字

Linux yum安装MySQL5.7

 一、安装配置MySQL的yum源


1

2

3

4

5

6

7

8

9

10

# 安装MySQL的yum源,下面是RHEL6系列的下载地址

rpm -Uvh http://dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm

# 安装yum-config-manager

yum install yum-utils -y

# 禁用MySQL5.6的源

yum-config-manager --disable mysql56-community

# 启用MySQL5.7的源

yum-config-manager --enable mysql57-community-dmr

# 用下面的命令查看是否配置正确

yum repolist enabled | grep mysql

检查是否有mysql57-community-dmr这个源,如上图所示。

    二、yum安装MySQL5.7


1

2

# 安装MySQL5.7

yum install mysql-community-server

    三、启动MySQL


1

2

3

4

5

# 禁用selinux

setenforce 0

sed -i ‘/^SELINUX=/c\SELINUX=disabled‘ /etc/selinux/config

# 启动mysqld,启动之前先修改/etc/my.cnf配置文件,本文用默认的配置。

service mysqld start

    四、连接MySQL并修改密码

MySQL忘记密码,或:root密码重置报错:mysqladmin: connect to server at ‘localhost‘ failed的解决方案

MySQL root密码重置报错:mysqladmin: connect to server at ‘localhost‘ failed的解决方案

1  登陆失败,mysqladmin修改密码失败

[[email protected] var]# mysqladmin -u root password ‘123456‘

mysqladmin: connect to server at ‘localhost‘ failed

error: ‘Access denied for user ‘root‘@‘localhost‘ (using password: NO)‘

2 停止mysql服务

[[email protected] var]# /etc/init.d/mysqld stop

Shutting down MySQL.... SUCCESS!

3 安全模式启动

[[email protected] var]# mysqld_safe --skip-grant-tables &

(路径不一样:/opt/mysql/product/5.5.25a/bin/mysqld_safe --skip-grant-tables &)

[1] 10912

[[email protected] var]# 110407 17:39:28 mysqld_safe Logging to ‘/usr/local/mysql/var//mysql.chinascopefinanical.com.err‘.

110407 17:39:29 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/var/

4 无密码root帐号登陆

[[email protected] var]# /usr/bin/mysql -u root -p 【注释,在下面的要求你输入密码的时候,你不用管,直接回车键一敲就过去了】

Enter password:

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 48

Server version: 5.1.41-log Source distribution

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

mysql> use mysql;

Database changed

5 手动update修改密码

mysql> update mysql.user set authentication_string=password("123456") where user=‘root‘ and host=‘localhost‘;

Query OK, 1 row affected (0.00 sec)

Rows matched: 1  Changed: 1  Warnings: 0

mysql> flush privileges;

Query OK, 0 rows affected (0.00 sec)

mysql> quit

Bye

[[email protected] var]# mysql -u root -p guNNhtqhjUnfky6ahyVh

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 172

Server version: 5.1.41-log Source distribution

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

mysql> quit

Bye

6 正常重新启动

[[email protected] var]# service mysqld restart

Shutting down MySQL..110407 17:45:29 mysqld_safe mysqld from pid file /usr/local/mysql/var//mysql.chinascopefinanical.com.pid ended

SUCCESS!

Starting MySQL.. SUCCESS!

原文地址:https://www.cnblogs.com/xiaowenshu/p/10283492.html

时间: 2024-10-11 11:23:09

yum 安装 Mysql 5.7,忘记密码解决方案的相关文章

centos7.2的yum安装mysql和修改初始密码

一.centos7.2安装mysql CentOS 7之后的版本yum的默认源中使用MariaDB替代原先MySQL,因此安装方式较为以往有一些改变: 下载mysql的源 wget http://dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm 安装yum库 yum localinstall -y mysql57-community-release-el7-7.noarch.rpm 安装MySQL yum install -

MySQL root用户忘记密码解决方案(安全模式,修改密码的三种方式)

1.关闭正在运行的MySQL 2.启动MySQL的安全模式,命令如下: mysqld --skip-grant-tables or mysqld-nd --skip-grant-tables 3.使用root用户[免密码]登陆MySQL mysql -u root -p 输入密码时,直接回车 4.选择MySQL系统库 use mysql 5.查看当前系统用户root的密码 select user,host,password from user where user="root" 查看的

yum安装mysql后root用户的临时密码

1.查看root用户临时随机密码 yum 安装mysql后,无法通过空密码登录数据库,如下: 1 [[email protected]123 mysql]# mysql -u root -p 2 Enter password: 3 ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) 查找后,原来为了增加数据库的安全性,在安装时会为root用户生成一个临时的随机密码,存放在/var/l

Centos使用yum安装mysql

Centos下使用yum安装mysql客户端.服务器端,以及启动.登录和远程访问.  1.安装 查看有没有安装过: yum list installed mysql* rpm -qa | grep mysql* 查看有没有安装包: yum list mysql* 安装mysql客户端: yum install mysql 安装mysql 服务器端: yum install mysql-server yum install mysql-devel 2.启动&&停止 数据库字符集设置 mysq

Centos6.5使用yum安装mysql

yum 安装MYSQL 1  yum -y install mysql-server 2 设置开机自启管理 chkconfig mysqld on 3启动MYSQL 服务 service mysqld start 4设置MYSQL 的用户管理密码 mysql -u root set password for [email protected]=password('root'); 5 使用新的密码账号登陆 mysql -u root -p 6使用基本的mysql数据库命令 show databas

linux下使用yum安装mysql以及启动、登录和远程访问

linux下使用yum安装mysql,以及启动.登录和远程访问. 1.安装 查看有没有安装过: yum list installed mysql* rpm -qa | grep mysql* 查看有没有安装包: yum list mysql* 安装mysql客户端: yum install mysql 安装mysql 服务器端: yum install mysql-server yum install mysql-devel 2.启动&&停止 数据库字符集设置 mysql配置文件/etc/

linux下使用yum安装mysql、tomcat、httpd

一.linux下使用yum安装mysql 1.安装 查看有没有安装过: yum list installed mysql* rpm -qa | grep mysql* 查看有没有安装包: yum list mysql* 安装mysql客户端: yum install mysql 安装mysql 服务器端: yum install mysql-server yum install mysql-devel www.2cto.com 2.启动&&停止 数据库字符集设置 mysql配置文件/etc

yum 安装mysql, yum安装指定版本的mysql

yum安装mysql: 1. 查看有没有安装过 yum list installed MySQL* (有存在要卸载yum remove MySQL*) rpm -qa | grep mysql* 查看有没有安装包: yum list mysql* 2. 安装mysql客户端 yum -y install mysql 安装mysql 服务器端 yum -y install mysql-server  mysql-devel 3. 启动&&停止 数据库字符集设置 mysql配置文件/etc/m

RHEL5.6环境下yum安装MySQL

RHEL5.6环境下yum安装MySQL记录,2017年2月20日 1.卸载原有的MySQL rpm -qa命令查询是否安装了MySQL [[email protected] mysql]# rpm -qa|grep mysql mysql-server-5.0.77-4.el5_5.4 mysql-5.0.77-4.el5_5.4 使用rpm -e命令卸载安装包,如果卸载时提示依赖可以增加"--nodeps"参数: 如果想删除依赖项则直接卸载依赖项后再删除相应的包. [[email 

Centos6.5使用yum安装mysql——快速上手必备

第1步.yum安装mysql [[email protected] ~]#  yum -y install mysql-server 安装结果: Installed:     mysql-server.x86_64 0:5.1.73-3.el6_5