How to install the green version of MySQL Community Server 5.7.16 and implement remote login

How to install the green version of MySQL Community Server 5.7.16 and implement remote login

1. Download MySQL Community Server 5.7.16 and install it

2. Go to the bin directory of the MySQL installation directory, enter cmd in the file address bar and press Enter

3. Enter the command: mysqld --initialize-insecure --console

4. Enter the command: mysqld -install

5. mysql -u root--skip-password

6.ALTER USER 'root'@'localhost'IDENTIFIEDBY '123456';

7.\quit

8. mysql -h localhost -uroot -p

Installation Complete

Authorize remote login

Log in as an administrator

Execute command: grant all PRIVILEGES on *.* to zhanghao@'%' identified by '123456';

Refresh takes effect: flush privileges;

Command Explanation:

all PRIVILEGES means granting all permissions to the specified user. This can also be replaced by granting a specific permission, for example:

select,insert,update,delete,create,drop , etc. Specific permissions are separated by half-angle commas.

*.* indicates which table the above permissions apply to. The first * refers to the database, and the following * refers to all tables. For all tables in a certain database, the authorization is "database name.*", and for a certain table in a certain database, the authorization is "database name.table name".

zhanghao indicates which user you want to authorize. This user can be an existing user or a non-existent user.

Summarize

The above is the method that I introduced to you to install the green version of MySQL Community Server 5.7.16 and realize remote login. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • A quick solution to the first login failure in mysql5.7.20
  • Solution to the root password login problem in MySQL 5.7
  • Solve the problem of ERROR 1045 (28000): Access denied for user ''root''@''localhost'' when logging in after installing MySQL 5.7.17 on Ubuntu 16.04
  • Tutorial on logging into MySQL after installing Mysql 5.7.17
  • Solve the problem of being unable to log in after installing MySQL 5.7 without a data folder
  • Solution to the problem of Access denied for user'root'@'localhost' (using password: YES) in MySQL 8.0 login under win10

<<:  Angular framework detailed explanation of view abstract definition

>>:  How to use multi-core CPU to speed up your Linux commands (GNU Parallel)

Recommend

Let's learn about the MySQL storage engine

Table of contents Preface 1. MySQL main storage e...

How to download excel stream files and set download file name in vue

Table of contents Overview 1. Download via URL 2....

VUE introduces the implementation of using G2 charts

Table of contents About G2 Chart use Complete cod...

How to use Nginx to realize the coexistence of multiple containers in the server

background There is a Tencent Linux cloud host, o...

Tutorial on installing mongodb under linux

MongoDB is cross-platform and can be installed on...

Vue codemirror realizes the effect of online code compiler

Preface If we want to achieve the effect of onlin...

Mysql example of splitting into multiple rows and columns by specific symbols

Some fault code tables use the following design p...

CocosCreator Getting Started Tutorial: Making Your First Game with TS

Table of contents premise TypeScript vs JavaScrip...

Vue implements internationalization of web page language switching

1. Basic steps 1: Install yarn add vue-i18n Creat...

Pycharm2017 realizes the connection between python3.6 and mysql

This article shares with you how to connect pytho...

HTML form and the use of form internal tags

Copy code The code is as follows: <html> &l...

Analysis of the reasons why MySQL's index system uses B+ tree

Table of contents 1. What is an index? 2. Why do ...

Detailed explanation of docker command to backup linux system

tar backup system sudo tar cvpzf backup.tgz --exc...

HTML exceeds the text line interception implementation principle and code

The HTML code for intercepting text beyond multipl...

How to implement rounded corners with CSS3 using JS

I found an example when I was looking for a way t...