mysql: [ERROR] unknown option '--skip-grant-tables'

mysql: [ERROR] unknown option '--skip-grant-tables'

MySQL database reports ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO)

I saw on the Internet that I need to configure my.ini

I am using win10 system and I am using mysql-5.7.18-winx64mysql

There is no my.ini file in the file. I saw on the Internet that I could create one myself, so I added one at home.

The content is as follows:

[mysql]s

kip-grant-tables


# Set the default character set for the mysql client

default-character-set=utf8

[mysqld]

#Set port 3306

port = 3306

# Set the installation directory of mysql

basedir=C:\Program Files\mysql-5.7.18-winx64

# Set the storage directory for mysql database data

datadir=C:\Program Files\mysql-5.7.18-winx64\data

# Maximum number of connections allowed

max_connections=200

# The default character set used by the server is the 8-bit latin1 character set

character-set-server=utf8

# The default storage engine that will be used when creating new tables

default-storage-engine=INNODB

However, an error is reported: mysql: [ERROR] unknown option '--skip-grant-tables'

My MySQL is 5.0.7. When I start MySQL in the console, I use: mysqld --skip-grant-tables . Note that there are two horizontal lines in the middle

I found on the Internet that I can execute: mysqld -nt -skip-grant-tables

Solution to the problem that the command line mysqld -skip-grant-tables fails to log in in mysql8.0 version

1. Log in to cmd with administrator privileges. If you don’t know how to log in as an administrator, please search for cmd and right-click the search result.

2. Enter the command line: net stop mysql; then prompt. The service is stopping --> The service has stopped. If other errors occur, please search Baidu.

This is just an example. Please check the specific service name in Services. For example, mine is mysql57.

If the service will not open, please win+R --> services.msc --> press Enter and find the service name starting with mysql.

3. Since mysqld --skip-grant-tables is no longer valid in mysql8.0, use mysqld --console --skip-grant-tables --shared-memory

4. Open another cmd and log in directly using mysql without a password.

You can log in here, so I'll write this first.

You may also be interested in:
  • MySQL bypasses granting information_schema objects and reports ERROR 1044 (4200) error
  • How to solve the 10060 unknow error when Navicat remotely connects to MySQL
  • Ubuntu 18.0.4 installs mysql and solves ERROR 1698 (28000): Access denied for user ''''root''''@''''localhost'''
  • ERROR 2002 (HY000): Can't connect to local MySQL server through socket ''/tmp/mysql.sock''
  • Solution to MySQL server login error ERROR 1820 (HY000)
  • Solve MySQL startup error: ERROR 2003 (HY000): Can't connect to MySQL server on ''localhost'' (10061)

<<:  Python Flask WeChat applet login process and login api implementation code

>>:  Vue uses Amap to realize city positioning

Recommend

Summary of JS tips for creating or filling arrays of arbitrary length

Table of contents Preface Direct filling method f...

JavaScript to achieve full or reverse selection effect in form

This article shares the specific code of JavaScri...

Detailed process of installing and deploying onlyoffice in docker

0. System requirements CPU I5-10400F or above Mem...

How to change $ to # in Linux

In this system, the # sign represents the root us...

Delegating Privileges in Linux Using Sudo

Introduction to sudo authority delegation su swit...

JavaScript+html to implement front-end page sliding verification

This article shares the specific code of JavaScri...

Directory permissions when creating a container with Docker

When I was writing a project yesterday, I needed ...

Use of Linux ifconfig command

1. Command Introduction The ifconfig (configure a...

Ubuntu 18.04 obtains root permissions and logs in as root user

Written in advance: In the following steps, you n...

MySQL knowledge points for the second-level computer exam mysql alter command

Usage of alter command in mysql to edit table str...

Vue dynamic menu, dynamic route loading and refresh pitfalls

Table of contents need: Ideas: lesson: Share the ...

JavaScript realizes the drag effect of modal box

Here is a case of modal box dragging. The functio...

4 Practical Tips for Web Page Design

Related articles: 9 practical tips for creating we...

A brief analysis of whether using iframe to call a page will cache the page

Recently, I have a project that requires using ifr...