Solution to nacos not being able to connect to mysql

Solution to nacos not being able to connect to mysql

reason

The mysql version that nacos's pom depends on is inconsistent with the mysql version.

Step 1:

Modify the mysql version dependency in the pom file

<dependency>
  <groupId>mysql</groupId>
  <artifactId>mysql-connector-java</artifactId>
  <version>8.0.19</version>
</dependency>

Step 2:

Building project solves compilation errors (delete old dependencies)

insert image description here

Step 3:

Repackage mvn -Prelease-nacos -Dmaven.test.skip=true clean install -U

Add mysql configuration location

insert image description here

Solve the problem that Nacos cannot connect to Mysql8.0+

Nacos 0.7 version added support for MySQL data source function, and the configuration of the Nacos cluster can be persisted to MySQL.
However, when I used mysql8.0.19, an exception occurred when connecting with nacos.

insert image description here

If the system prompts that the database cannot be connected, check the configured database connection to make sure it is correct.

spring.datasource.platform=mysql
db.num=1
db.url.0=jdbc:mysql://localhost:3306/nacos_config?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
db.user=root
db.password=123456

Solution:

Create a new plugins/mysql folder in the nacos installation directory, put the 8.0+ version of mysql-connector-java-8.0.xx.jar in it, and restart nacos.
When starting, it will prompt that the driver-class of mysql has been changed.

insert image description here

This is the end of this article about the solution to the problem that nacos cannot connect to mysql. For more related content about nacos cannot connect to mysql, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to configure MySQL8 in Nacos

<<:  Zabbix combined with bat script to achieve multiple application status monitoring method

>>:  CSS flex several multi-column layout

Recommend

How to run postgreSQL with docker

1. Install Docker. Reference URL: Docker Getting ...

Detailed explanation of new relational database features in MySQL 8.0

Preface The latest version of MySQL 8.0 is 8.0.4 ...

Vue realizes the function of book shopping cart

This article example shares the specific code of ...

How to install MySQL 8.0.17 and configure remote access

1. Preparation before installation Check the data...

A graphic tutorial on how to install MySQL in Windows

Abstract: This article mainly explains how to ins...

Complete steps for using Echarts and sub-packaging in WeChat Mini Program

Preface Although the holiday is over, it shows up...

A brief discussion on HTML doctype and encoding

DOCTYPE Doctype is used to tell the browser which...

Detailed explanation of three ways to import CSS files

There are three ways to introduce CSS: inline sty...

Deep understanding of line-height and vertical-align

Several concepts Line box: A box that wraps an in...

CSS3 realizes the graphic falling animation effect

See the effect first Implementation Code <div ...

Description of meta viewport attribute in HTML web page

HTML meta viewport attribute description What is ...

Practical basic Linux sed command example code

The Linux stream editor is a useful way to run sc...