Detailed explanation of accessing MySQL database in Linux virtual machine under Windows environment

Detailed explanation of accessing MySQL database in Linux virtual machine under Windows environment

Linux virtual machine: VMware + Ubuntu 16.04.4

Windows native: Navicat for MySQL

1. Download and install MySQL in the virtual machine

To download and install VMware and Ubuntu 16.04.4, please search on Baidu. This article assumes that these have been installed.

In the virtual machine, press Ctrl+Alt+T to open a terminal, enter the command sudo apt-get install mysql-server mysql-client , and then follow the prompts.

Wait for the installation to complete. You can enter the command: whereis mysql to view the installation location of mysql

Start the database command: service mysql start Close the database command: service mysql stop Restart the database command: service mysql restart

Log in to the database: mysql -u root -p

Authorize a new user (so that you don't need to log in to the database as root)

mysql>grant all privileges on . to “new user name”@"%" identified by “new user password” with grant option;

Changes take effect:

myssql> flush privileges;

Exit the database:

mysql>exit;

However, the database cannot be connected using Navicat for MySQL at this time, and an error message will be reported. The error message is as follows (because the remote connection of the file has not been configured):

2. Modify the MySQL configuration file

Enter the command in the terminal: sudo vi /etc/mysql/mysql.conf.d/mysqld.cnf

After entering the password, the configuration file is opened. You need to comment out bind-address=127.0.0.1, which becomes #bind-address=127.0.0.1
(First click i to enter the edit mode, then click Esc to exit the edit mode, and type: wq on the last line to save and exit)

3. Download and install Navicat for MySQL on the Windows machine

Navicat for MySQL download and installation by yourself Baidu, basically all the way to next

4. Establish a connection

First, determine the virtual machine IP, enter the command in the terminal: ifconfig -a, where inet addr is the real IP, which needs to be entered in navicat for MySQL


Select Connection, click MySQL, and give the connection a name of your own.

If the above process does not work for you, please refer to a few points.

Note: 1. The network adapter in the virtual machine should be in bridge mode, which can be changed in Virtual Machine -> Settings -> Network Adapter 2. Pay attention to the settings of the virtual machine firewall

The above is the editor's introduction to how to access the MySQL database in the Linux virtual machine under the Windows environment. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor 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:
  • Detailed method of packaging Python3 program under Windows and Linux
  • How to cross-compile Golang on Mac, Linux, and Windows
  • How to package Python 3 on Windows and Linux
  • Installation and verification of pytorch in linux or windows environment (solving runtimeerror problem)
  • Linux remote control windows system program (three methods)
  • Analysis of the method of uploading zip compressed packages under Windows to Linux system using compression
  • How to upload and download files between Linux server and Windows system
  • Remote Desktop Connection between Windows and Linux

<<:  Detailed explanation of how to use the Vue license plate input component

>>:  Detailed explanation of Zabbix installation and deployment practices

Recommend

Detailed examples of using JavaScript event delegation (proxy)

Table of contents Introduction Example: Event del...

Introduction to the use of html base tag target=_parent

The <base> tag specifies the default address...

Detailed explanation of count without filter conditions in MySQL

count(*) accomplish 1. MyISAM: Stores the total n...

Vue Element front-end application development to obtain back-end data

Table of contents Overview 1. Acquisition and pro...

ElementUI implements the el-form form reset function button

Table of contents Business scenario: Effect demon...

CocosCreator Getting Started Tutorial: Making Your First Game with TS

Table of contents premise TypeScript vs JavaScrip...

How to use MySQL limit and solve the problem of large paging

Preface In daily development, when we use MySQL t...

Install and configure MySQL 5.7 under CentOS 7

This article tests the environment: CentOS 7 64-b...

Detailed explanation of MySQL/Java server support for emoji and problem solving

This article describes the support and problem so...

Detailed explanation of how to use Tomcat Native to improve Tomcat IO efficiency

Table of contents Introduction How to connect to ...

Introduction to JavaScript built-in objects

Table of contents 1. Built-in objects 2. Math Obj...

JavaScript adds prototype method implementation for built-in objects

The order in which objects call methods: If the m...

A brief discussion on the fun of :focus-within in CSS

I believe some people have seen this picture of c...

How to monitor Tomcat using LambdaProbe

Introduction: Lambda Probe (formerly known as Tom...

Detailed explanation of the use of nohup /dev/null 2>&1

nohup command: If you are running a process and y...