[agent] start rabbitmq , accomplish init queue procedure

This commit is contained in:
zeaslity
2022-11-29 14:11:29 +08:00
parent d9ce84e034
commit 1230fd1f9b
22 changed files with 283 additions and 25 deletions

View File

@@ -1,2 +1,25 @@
server:
port: 8000
port: 8000
spring:
rabbitmq:
host: 127.0.0.1
port: 35672
username: boge
password: boge14@Level5
virtual-host: /wddserver
octopus:
message:
# agent boot up default common exchange
init_exchange: InitExchange
# server will send message to agent using this common queue
init_to_server: InitToServer
# agent boot up default common exchange routing key
init_to_server_key: InitToServerKey
# server will receive message from agent using this common queue
init_from_server: InitFromServer
# agent boot up default common exchange routing key
init_from_server_key: InitFromServerKey
# initialization register time out (unit ms) default is 5 min
init_ttl: "300000"