1. Using it with redis will cause Netty startup conflicts, so you need to add a method in the ***Application entry file: @PostConstruct public void init() { // see Netty4Utils.setAvailableProcessors() System.setProperty("es.set.netty.runtime.available.processors", "false"); } 2. NoNodeAvailableException[None of the configured nodes are available: [{#transport#-1}{V4jtTT-tQQqULCNjSNSfgg}{192.168.116.128}{192.168.116.128:9300}] Solution: Replace the elasticsearch version that corresponds to your spring-boot-starter-data-elasticsearch. 3. OpenJDK 64-Bit Server VM warning: $ Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release. Solution: Modify the contents of the jvm.options file to: -XX:+UseConcMarkSweepGC is changed to -XX:+UseG1GC 4. Deleting Users Before deleting a user, you need to kill the user's process pkill or kill -9 <pid> Example: Delete user user userdel user Example: Delete user user and delete his working directory at the same time userdel –r user The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Vue dynamic menu, dynamic route loading and refresh pitfalls
>>: MySQL fuzzy query usage (regular, wildcard, built-in function)
Official website explanation: When a component is...
Monday to Sunday time format conversion (Y --- ye...
Since enabling https access for the entire site, ...
Preface Today, a developer gave me feedback that ...
This article example shares the specific code of ...
This article shares the specific code for JavaScr...
Table of contents HTTP hijacking, DNS hijacking a...
Table of contents 1. Introduction 2. Usage 3. Dev...
The project needs to use MySQL. Since I had alway...
From: https://blog.csdn.net/qq_44761243/article/d...
⑴ Content determines form. First enrich the conten...
background: The site is separated from the front ...
This article uses examples to illustrate the prin...
1. Linux installation (root user operation) 1. In...
Problem background: When using docker to deploy t...