当前位置:网站首页>Nacos installation and service registration
Nacos installation and service registration
2022-07-06 09:08:00 【look-word】
Nacos Installation of and registration of services
We all know naocs It's a registry , So what is the Registration Center ?
- What is a registry ?
- It is similar to an intermediary role ( Free conscience intermediary ), Play the role of a link in microservices , It provides the mapping relationship between service and service address , The producer registers the service name and address here ,
consumer
according toThe service name
Get a responseAccess address
.
- It is similar to an intermediary role ( Free conscience intermediary ), Play the role of a link in microservices , It provides the mapping relationship between service and service address , The producer registers the service name and address here ,
- Why use the registry
- When there is no registry , The caller needs to know when invoking the service
domain name
andport
, When modified by the caller , You need to change the code , When there are many services called , Then we need to modify a lot of code , It is undoubtedly increasing our workload .
- When there is no registry , The caller needs to know when invoking the service
So how does he work on earth ?
working principle :
- producer ( Service providers ) Register your domain name and port with the registry
- Consumers pull the service list from the Registration Center , And make a remote call
- The registration center and service providers ensure that services can be provided normally by regularly checking the heartbeat
Nacos Prepare before use
Download after decompression We need to get into bin Directory start nacos service
Do not double-click to start
naocs It will be java Written stay target Under the table of contents You can see jar file
start-up :
In the search bar above Input cmd Enter the black window
command :startup.cmd -m standalone
When the bottom appears Program start time Just explain
Successful launch
了
We came to the browser Input localhost:8848 You can see naocs The running interface We will carry out a series of configurations in it
- The username and password are both
naocs
All the services we register will appear in
List of services
in , Services can be offline and other operations !
Service registration
nacos There are three steps in the registration process
- Add dependency
- To configure nacos
- Start the service
Add dependency
<!-- Service registration -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
To configure nacos
# Spring
spring:
application:
# apply name
name: project-xxxx
cloud:
nacos:
discovery:
# Service registration address ip Add slogan
server-addr: 127.0.0.1:8848
Start the service
You can see , The service just started has appeared in the service list
边栏推荐
- What is the role of automated testing frameworks? Shanghai professional third-party software testing company Amway
- postman之参数化详解
- Mise en œuvre de la quantification post - formation du bminf
- TP-LINK enterprise router PPTP configuration
- Intel distiller Toolkit - Quantitative implementation 1
- LeetCode:236. The nearest common ancestor of binary tree
- [oc foundation framework] - < copy object copy >
- Simple use of promise in uniapp
- Different data-driven code executes the same test scenario
- [oc]- < getting started with UI> -- common controls uibutton
猜你喜欢
Selenium+pytest automated test framework practice
The ECU of 21 Audi q5l 45tfsi brushes is upgraded to master special adjustment, and the horsepower is safely and stably increased to 305 horsepower
[text generation] recommended in the collection of papers - Stanford researchers introduce time control methods to make long text generation more smooth
注意力机制的一种卷积替代方式
SAP ui5 date type sap ui. model. type. Analysis of the parsing format of date
Intel distiller Toolkit - Quantitative implementation 2
Advanced Computer Network Review(3)——BBR
自定义卷积注意力算子的CUDA实现
【剑指offer】序列化二叉树
Digital people anchor 618 sign language with goods, convenient for 27.8 million people with hearing impairment
随机推荐
LeetCode:236. 二叉树的最近公共祖先
LeetCode:498. Diagonal traversal
LeetCode:124. Maximum path sum in binary tree
The ECU of 21 Audi q5l 45tfsi brushes is upgraded to master special adjustment, and the horsepower is safely and stably increased to 305 horsepower
LeetCode:162. Looking for peak
[OC-Foundation框架]--<Copy对象复制>
Using label template to solve the problem of malicious input by users
What is an R-value reference and what is the difference between it and an l-value?
IJCAI2022论文合集(持续更新中)
Leetcode: Jianzhi offer 04 Search in two-dimensional array
Compétences en mémoire des graphiques UML
Advanced Computer Network Review(4)——Congestion Control of MPTCP
Advance Computer Network Review(1)——FatTree
LeetCode:836. Rectangle overlap
BMINF的後訓練量化實現
LeetCode:387. 字符串中的第一个唯一字符
LeetCode:673. 最长递增子序列的个数
Niuke winter vacation training 6 maze 2
Improved deep embedded clustering with local structure preservation (Idec)
Using C language to complete a simple calculator (function pointer array and callback function)