tags: nacos
1.Root Permissions Create Database NACOS
2. Create new users NACOS and authorize
create user 'nacos'@'%' identified by '123456';
grant all privileges on nacos.* to "nacos"@'%';
show grants for 'ghost'@'%';

3. Import SQL into the NACOS Database:


4. Turn off the cluster mode
The cluster mode will start failure without cluster configuration. Start an error: "NACOS is Starting With Cluster" means that NACOS is started in cluster mode.
Modify the set mode = "cluster" in Startup.cmd to set mode = "standalone".
Note: There is an embedded database Derby in NACOS, so when we do the relevant configuration in NACOS, its data is saved in the database, but when the NACOS is restarted, the client's data still disap...
Surport Mysql Before version 0.7, Nacos did not support Mysql database, it used the local derby database. Although this is convenient, no additional configuration is required, but the basic situation ...
Table of contents 1. Overview of NACOS using external MySQL Second, NACOS uses external MySQL storage configuration data operation steps 2.1, the first step (install mysql5.7, download NACOS installat...
> Nacos installation a, and creates a mirrored pull Docker container run, run the following command: Configuration parameters: Configuration Item description Optional parameters Defaults MODE Mode ...
I. Introduction Analyze SpringBoot to start the process of loading the NACOS configuration, we noticed that it will be preferredLocalConfigInfoProcessor.getFailover()Load NACOS's local profile,The fil...
Write custom directory title here 1. First you need the nacos sql file 2. Modify bootstrap.yml 1. First you need the nacos sql file The configuration needs to be modified in the nacos configuration fi...
In the configuration file corresponding to NACOS,Be sure to configure it on NACOS, don't take it....
Configure multiple NACOS instances (pseudo clusters) locally, which is generally configured to configure multiple NACOS ports and start multiple Startup.sh scripts locally. Some of the online blogs sp...
Share with you a problem I have encountered in the process of learning the Spring Cloud Alibaba. This problem has been bothering me for a long time, so writing a blog, providing a different solution t...
Add annotations to the start-up class @refreshscope annotation Modify NACOS reading file type method Configure additional configuration in the project...