This article brings you knowledge about mysql reinstallation. I believe many people have encountered the need to reinstall mysql. What should I do if I forget the root password? How should different systems be operated? Let's take a look at the problems encountered when reinstalling mysql and how to solve them. I hope it will be helpful to everyone.
#I encountered a problem recently and reinstalled the system, but fortunately the mysql installation directory was not installed on the system disk.
So how to retrieve the previous data in mysql?
To make a long story short, let me tell you the whole story. Increased knowledge
Have you ever installed mysql under Linux and forgotten the mysql root password? (Or under Windows)
Have you ever configured jdk environment variables?
Haha~ I believe many friends have had the same experience as me.
Are you going crazy when you find that you can’t log in with your password? Installing a mysql has gone through many hardships, and some friends even failed to install it properly because of database problems ~ _~! As a result, subsequent installations failed. I even reinstalled the system later.
Then the following will be the answer to all your questions:
Take the mysql8.0 Windows environment as an example:
If you do not select a path when you install it Then mysql is installed on the C drive by default. If you have specified the installation path
then find where mysql is installed
If you have installed Mysql before
then check first Check whether there is a mysql service for this computer in the service ==>Management==>Services and Applications==>Services As shown below
Uninstall the mysql service, if there are redundant services You can use
sc.exe delete service name to delete useless services. After deletion, you need to restart the computer
sc.exe delete MySql
You can also use the service properties to find the location of the service mysqld.exe remove (this kind The method may not be effective, if there is a problem with the path,)
If the original file is still there, you can delete the service through mysqld.exe remove under this path
Let’s do an experiment, Experience how to configure the decompressed version (green) mysql. It needs to be executed under a Windows that has not installed mysql. You can use VMware Virtualization means installing a Windows environment. Downloads for Windows can be found in my installation operating system. https://msdn.itelleyou.cn/ has images of ed2k links for all Windows systems. Just download them
First step, go to the mysql official website to download a zip package of a free installation version of MySQL
https://dev.mysql.com/downloads/mysql/
Then decompress, go to the decompressed directory and check the above files
The second step is to install the service and initialize mysql
Run the powerShell window as an administrator through Windows logo
##Switch to the decompression directory:
First Drive letter:/
Thencd to the decompressed directory
Of course you can also hold down Shift and right-click the mouse and there will be a powershell window
As shown below
Official start
Installation service This
is actually
mysql service program, so running mysqld is running the mysql serviceAs shown above, you will get the data folder, which stores the database information. After deletion, the database is no longer there, and you need to re-operate
.\mysqld.exe installIf it prompts that mysql has been installed, find the mysql service in the service, start the mysql service, or remove through mysql.exe To remove the service, you must first stop itInitialize.\mysqld.exe --initialize-insecure --user=mysql
还不能登录需要手动启动服务
第一次使用mysql 可以通过mysql.exe -u root -p直接登录进去,如果数据库里没有内容则删除data文件夹(手动关闭mysql服务才可以删除)
然后重新手动启动服务,重新初始化数据库如何登录进(第一次不需要密码) 将下面的123456改成你想要的密码即可
修改root密码(需要在mysql的bin目录下操作,如果配置了环境变量就不需要在bin目录下)
.\mysqld.exe -u root -p
use mysql;
ALTER USER `root`@`localhost` IDENTIFIED BY '123456';
如果你只是想安装mysql那么上面已经安装完了
下面是忘记root密码,进入数据库修改的操作
第1步、关闭服务 也可以通过服务手动关闭(前面的截图),或者输入下面的命令
net stop mysql
第2步、(管理员身份)cd 到mysql主目录的bin目录下
.\mysqld.exe --console --skip-grant-tables --shared-memory
如图
需要另外开一个powershell窗口在bin目录下 按住Shift 鼠标右键会有一个在此处打开powershell窗口
然后登录进去(不需要输密码)直接回车即可登录进去
.\mysql.exe -u root -p
启用mysql数据库
use mysql;
这里的 authentication_string不是密码后面操作才是真正修改密码的
update user set authentication_string='' where user='root';
上面只是为了运行root无密码登录,因为前面通过--skip-grant-tables选项导致修改密码的sql : ALTER USER `root`@`localhost` IDENTIFIED BY '123456';不能修改密码
退出登录
quit
并且把那个执行命令带有 --skip-grant-tables 窗口关闭
然后启动mysql服务
net start mysql
按照正常的登录,不需要输root密码即可登录进去
.\mysql.exe -u root -p
use mysql;
修改root密码
ALTER USER `root`@`localhost` IDENTIFIED BY '123456';
在使用mysql的过程中是否有疑问?mysql的数据源到底放在了哪里?下面解答
mysql的数据源实际就在data文件夹内,我们进行一个实验尝试一下
使用目的:
证明mysql的数据源在data文件夹下,并且可以通过指定数据源路径,直接使用mysql找到原来的数据。即使现在电脑上没有安装mysql,然后通过复制原来mysql安装目录,来继续使用原来的mysql数据库和数据;
实验部分:
为了实验有效果我们创建一个数据库,这里干脆叫demo(如果你本身有数据库那么更好直接下面实验)
下面的使用即使没有安装过mysql数据库,也可以操作,只需mysql的主目录即可(数据data文件夹下)
第一步、关闭mysql服务 net stop mysql
第二步、新建my.ini文本文件,用来指定mysql位置和数据源位置
将mysql主目录下的data文件夹复制 到D:/盘根目录下 需要关闭服务才可以移动,否则会提示后台占用!
新建 my.ini 文本文件(干脆放在D:\mysql-8.0.18-winx64 即放在主目录下,5.5以前有这个文件后面都没有了)
写入如下的代码,指定数据库的主目录,数据源路径 以及端口
[mysqld] basedir = D:\mysql-8.0.18-winx64 datadir = D:\data port =3306
然通过mysqld启动mysql服务如下图
此时其实也可以通过第三方工具链接mysql 例如Navicat
下面通过命令连接,需要另开一个窗口
可以看到这里连上了mysql并且是原先的数据库!!
反例测试 一、
关闭前面所以powershell窗口
在前面的基础上 将my.ini删除,这样mysqld就找不到数据源,看下它提示了什么错误
这里因为没有my.ini告诉mysqld程序mysql主目录在那以及数据源在那,导致执行失败
现在通过.\mysql.exe -u root -p肯定连接不上因为mysql服务都没有启动起来
Counter example test two,
Delete the datadir of my.ini, as shown below
mysql video tutorial]
The above is the detailed content of All questions about mysql reinstallation are here. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Atom editor mac version download
The most popular open source editor
