mysql is not an internal command error solution

mysql is not an internal command error solution

The error "mysql is not an internal command" occurs because the mysql bin directory path is not added to the environment variable

Solution:

Open the computer's environment variables, select system variables, open Path, and add the mysql bin directory path.

Here is an example:

Before adding environment variables

企業微信截圖_20200613135309.jpg

Add environment variables

企業微信截圖_20200613135135.jpg

企業微信截圖_20200613135149.jpg

企業微信截圖_20200613135212.jpg

After adding the environment variables, restart mysql

企業微信截圖_20200613135655.jpg

Content extension:

I used to use visual tools to call the database, but today I suddenly found out using the command line:

mysql' is not recognized as an internal or external command, operable program or batch file.

After some trouble, I found what was wrong and shared it with you.

Note 1: First check whether the environment variable has been added to the path

My Computer –> Right click -> Properties -> Advanced System Settings -> Advanced -> Environment Variables -> OK -> System Variables (S) -> Path (then double-click)

Then create a new MySQL installation path/bin path, for example, mine is C:\Program Files\MySQL\MySQL Server 5.5\bin , just add it in. Finally, make sure to remember to add the bin directory. I didn’t write this, I only added the installation directory, so I couldn’t find it.

Note 2: Be sure to run the command line as an administrator

The commonly used command line opening method is window key + R key, but this is not run as an administrator

How to open the command line as an administrator:

Method 1: Right-click the window in the lower right corner of the computer -----> Search

Method 2: Right-click the window in the lower right corner of the computer -----> Window PowerShell (Administrator)

After that, enter mysql -u account -p password, and the following will appear.

The above is the detailed solution to the error "mysql is not an internal command". For more information on how to deal with the error "mysql is not an internal command", please pay attention to other related articles on 123WORDPRESS.COM!

<<:  Nginx uses the Gzip algorithm to compress messages

>>:  Examples of correct use of interface and type methods in TypeScript

Recommend

MySQL 8.0.12 Quick Installation Tutorial

The installation of MySQL 8.0.12 took two days an...

Node and Python two-way communication implementation code

Table of contents Process Communication Bidirecti...

Implementation of mysql8.0.11 data directory migration

The default storage directory of mysql is /var/li...

What you need to know about filters in Vue

Table of contents Preface What is a filter How to...

Two ideas for implementing database horizontal segmentation

introduction With the widespread popularity of In...

Full process record of Nginx reverse proxy configuration

1. Preparation Install Tomcat on Linux system, us...

Why web page encoding uses utf-8 instead of gbk or gb2312?

If you have a choice, you should use UTF-8 In fac...

Vue3 gets the current routing address

Correct answer Using useRouter : // router path: ...

How to store false or true in MySQL

MySQL Boolean value, stores false or true In shor...

Install MySQL in Ubuntu 18.04 (Graphical Tutorial)

Tip: The following operations are all performed u...

How to deploy nextcloud network disk using docker

NextCloud You can share any files or folders on y...

Docker time zone issue and data migration issue

Latest solution: -v /usr/share/zoneinfo/Asia/Shan...

Steps of an excellent registration process

For a website, it is the most basic function. So l...

The difference between KEY, PRIMARY KEY, UNIQUE KEY, and INDEX in MySQL

The problem raised in the title can be broken dow...