Solve the problem of MySql client exiting in seconds (my.ini not found)

Solve the problem of MySql client exiting in seconds (my.ini not found)

Problem description (environment: windows7, MySql8.0)

After installing MySql today, I started the MySql service. If the service startup fails, don't read on and solve it yourself by searching on Baidu.
The client exits immediately after opening, but the database can be used in cmd.
Normally, as long as it works, it's fine, but for the convenience of the client, I don't want to type that line of code. I just searched on the Internet, Baidu, Google, and tried various methods.
Finally found that it was useless. The problems were similar, but not exactly the same.

The pitfalls I encountered (not saying that what others said is wrong, it’s just that it’s useless to me)

Pitfall 1: People on the Internet say that there is a problem with the my.ini file, but there is no my.ini file in my installation path
Pitfall 2: Change the file ending with .ini to my.ini
Pitfall 3: I found out that there was no my.ini, so I created my.ini, created a data folder, uninstalled the service, and reinstalled it, but it didn’t work.
Anyway, all the opinions revolve around the my.ini file.

solve

I believe many people have seen this picture when searching on the Internet.

I installed it by default:

"C:\Program Files\MySQL\MySQL Server 8.0\bin\mysql.exe" "--defaults-file=C:\Program Files\MySQL\MySQL Server 8.0\my.ini" "-uroot" "-p"
As most people say on the Internet, there is no my.ini file in this path --> my.ini is a configuration file for MySql. And have you noticed that there is no Data folder as mentioned on the Internet --> Data is most of the time a folder for storing data

At this time, I am not thinking about how to change it, but whether I should find

Finally I found Data and my.ini in MySQL\MySQL Server 8.0\ under C:\ProgramData --> C:\ProgramData which is a hidden folder

at last

Change the path in the figure to C:\Program Files\MySQL\MySQL Server 8.0\bin\mysql.exe" "--defaults-file=C:\ProgramData\MySQL\MySQL Server 8.0\my.ini" "-uroot" "-p"
In fact, it is to change file=C:\Program Files to file=C:\ProgramData

Just open the client

Summarize

The above is the editor’s introduction to solving the problem of MySql client exiting immediately (my.ini cannot be found). I hope it will be helpful to everyone!

You may also be interested in:
  • Introduction to using the MySQL mysqladmin client
  • How does MySQL connect to the corresponding client process?
  • PHP Swoole asynchronous MySQL client implementation example
  • Solve the problem that the Node.js mysql client does not support the authentication protocol
  • Solution to the problem that the mysql8.0.11 client cannot log in
  • Detailed explanation of MySQL/Java server support for emoji and problem solving
  • Getting started with NodeJS server development (Express+MySQL)
  • MySQL connection pool for App server (supports high concurrency)
  • Interpreting MySQL client and server protocols

<<:  HTML+CSS+JavaScript to make a girlfriend version of scratch card (you will learn it once you see it)

>>:  The most complete tutorial on installing centos8.1 with VMware15.5 and the problem of insufficient physical memory

Recommend

Mariadb remote login configuration and problem solving

Preface: The installation process will not be des...

Upgrade MySQL 5.1 to 5.5.36 in CentOS

This article records the process of upgrading MyS...

Hbase installation and configuration tutorial under Linux

Table of contents Hbase installation and configur...

An example of using Dapr to simplify microservices from scratch

Table of contents Preface 1. Install Docker 2. In...

How to use html css to control div or table to be fixed in a specified position

CSS CodeCopy content to clipboard .bottomTable{ b...

Detailed explanation of the new array methods in JavaScript es6

Table of contents 1. forEach() 2. arr.filter() 3....

The pitfalls encountered when learning Vue.js

Table of contents Class void pointing ES6 Arrow F...

24 Practical JavaScript Development Tips

Table of contents 1. Initialize the array 2. Arra...

Pitfalls and solutions for upgrading MySQL 5.7.23 in CentOS 7

Preface Recently, I found a pitfall in upgrading ...

Tomcat common exceptions and solution code examples

The company project was developed in Java and the...

MySQL deduplication methods

MySQL deduplication methods 【Beginner】There are v...

Tomcat class loader implementation method and example code

Tomcat defines multiple ClassLoaders internally s...

Case analysis of several MySQL update operations

Table of contents Case Study Update account balan...

How to get the width and height of the image in WeChat applet

origin Recently, I am working on requirement A, i...