fix(activemq): 修正端口配置及文档信息
This commit is contained in:
parent
8189c6d653
commit
595429f420
|
@ -1,18 +1,18 @@
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
formFields:
|
formFields:
|
||||||
- default: 61616
|
- default: 8161
|
||||||
edit: true
|
edit: true
|
||||||
envKey: PANEL_APP_PORT_HTTP
|
envKey: WEB_PORT
|
||||||
labelEn: Nacos run port
|
labelEn: activeMQ Web Port
|
||||||
labelZh: Nacos 运行端口
|
labelZh: activeMQ Web 通讯端口
|
||||||
required: true
|
required: true
|
||||||
rule: paramPort
|
rule: paramPort
|
||||||
type: number
|
type: number
|
||||||
- default: 8161
|
- default: 61616
|
||||||
edit: true
|
edit: true
|
||||||
envKey: PANEL_APP_PORT_COMMUNICATION
|
envKey: OPEN_WIRE_PROT
|
||||||
labelEn: Nacos communication port
|
labelEn: activeMQ OpenWire port
|
||||||
labelZh: Nacos 通讯端口
|
labelZh: activeMQ OpenWire运行端口
|
||||||
required: true
|
required: true
|
||||||
rule: paramPort
|
rule: paramPort
|
||||||
type: number
|
type: number
|
|
@ -3,8 +3,13 @@ services:
|
||||||
image: apache/activemq-classic
|
image: apache/activemq-classic
|
||||||
container_name: ${CONTAINER_NAME}
|
container_name: ${CONTAINER_NAME}
|
||||||
ports:
|
ports:
|
||||||
- "${PANEL_APP_PORT_HTTP}:61616"
|
- "${WEB_PORT}:8161"
|
||||||
- "${PANEL_APP_PORT_COMMUNICATION}:8161"
|
- "${OPEN_WIRE_PROT}:61616"
|
||||||
|
volumes:
|
||||||
|
- "./conf/activemq.xml:/opt/apache-activemq/conf/"
|
||||||
|
- "./data1/activemq-data:/opt/apache-activemq/data"
|
||||||
|
environment:
|
||||||
|
ACTIVEMQ_BROKER_NAME: ms-broker-a
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
1panel-network:
|
1panel-network:
|
||||||
|
|
|
@ -1,19 +1,19 @@
|
||||||
name: activeMQ
|
name: ActiveMQ
|
||||||
tags:
|
tags:
|
||||||
- 中间件
|
- 中间件
|
||||||
title: 动态服务发现、配置管理和服务管理平台
|
title: 流行的开源消息中间件
|
||||||
description: 动态服务发现、配置管理和服务管理平台
|
description: 一个流行的开源消息中间件,用于在分布式系统中传递消息。它是Apache软件基金会的一个项目,遵循Apache 2.0许可证。ActiveMQ Classic提供了一个高性能的消息传递系统,支持多种消息协议和多种语言的客户端。
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
key: activeMQ
|
key: activeMQ
|
||||||
name: activeMQ
|
name: ActiveMQ
|
||||||
tags:
|
tags:
|
||||||
- Middleware
|
- Middleware
|
||||||
shortDescZh: 动态服务发现、配置管理和服务管理平台
|
shortDescZh: 流行的开源消息中间件
|
||||||
shortDescEn: Dynamic service discovery, configuration and service management platform
|
shortDescEn: Popular open-source message middleware
|
||||||
type: tool
|
type: tool
|
||||||
crossVersionUpdate: false
|
crossVersionUpdate: false
|
||||||
limit: 1
|
limit: 1
|
||||||
recommend: 0
|
recommend: 0
|
||||||
website: https://nacos.io/
|
website: https://activemq.apache.org/
|
||||||
github: https://github.com/alibaba/nacos
|
github: https://github.com/apache/activemq
|
||||||
document: https://nacos.io/docs/latest/what-is-nacos/
|
document: https://activemq.apache.org/components/classic/
|
|
@ -1,18 +1,18 @@
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
formFields:
|
formFields:
|
||||||
- default: 61616
|
- default: 8161
|
||||||
edit: true
|
edit: true
|
||||||
envKey: PANEL_APP_PORT_HTTP
|
envKey: WEB_PORT
|
||||||
labelEn: Nacos run port
|
labelEn: activeMQ Web Port
|
||||||
labelZh: Nacos 运行端口
|
labelZh: activeMQ Web 通讯端口
|
||||||
required: true
|
required: true
|
||||||
rule: paramPort
|
rule: paramPort
|
||||||
type: number
|
type: number
|
||||||
- default: 8161
|
- default: 61616
|
||||||
edit: true
|
edit: true
|
||||||
envKey: PANEL_APP_PORT_COMMUNICATION
|
envKey: OPEN_WIRE_PROT
|
||||||
labelEn: Nacos communication port
|
labelEn: activeMQ OpenWire port
|
||||||
labelZh: Nacos 通讯端口
|
labelZh: activeMQ OpenWire运行端口
|
||||||
required: true
|
required: true
|
||||||
rule: paramPort
|
rule: paramPort
|
||||||
type: number
|
type: number
|
|
@ -3,8 +3,13 @@ services:
|
||||||
image: apache/activemq-classic
|
image: apache/activemq-classic
|
||||||
container_name: ${CONTAINER_NAME}
|
container_name: ${CONTAINER_NAME}
|
||||||
ports:
|
ports:
|
||||||
- "${PANEL_APP_PORT_HTTP}:61616"
|
- "${WEB_PORT}:8161"
|
||||||
- "${PANEL_APP_PORT_COMMUNICATION}:8161"
|
- "${OPEN_WIRE_PROT}:61616"
|
||||||
|
volumes:
|
||||||
|
- "./conf/activemq.xml:/opt/apache-activemq/conf/"
|
||||||
|
- "./data1/activemq-data:/opt/apache-activemq/data"
|
||||||
|
environment:
|
||||||
|
ACTIVEMQ_BROKER_NAME: ms-broker-a
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
1panel-network:
|
1panel-network:
|
||||||
|
|
|
@ -1,19 +1,19 @@
|
||||||
name: activeMQ
|
name: ActiveMQ
|
||||||
tags:
|
tags:
|
||||||
- 中间件
|
- 中间件
|
||||||
title: 动态服务发现、配置管理和服务管理平台
|
title: 流行的开源消息中间件
|
||||||
description: 动态服务发现、配置管理和服务管理平台
|
description: 一个流行的开源消息中间件,用于在分布式系统中传递消息。它是Apache软件基金会的一个项目,遵循Apache 2.0许可证。ActiveMQ Classic提供了一个高性能的消息传递系统,支持多种消息协议和多种语言的客户端。
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
key: activeMQ
|
key: activeMQ
|
||||||
name: activeMQ
|
name: ActiveMQ
|
||||||
tags:
|
tags:
|
||||||
- Middleware
|
- Middleware
|
||||||
shortDescZh: 动态服务发现、配置管理和服务管理平台
|
shortDescZh: 流行的开源消息中间件
|
||||||
shortDescEn: Dynamic service discovery, configuration and service management platform
|
shortDescEn: Popular open-source message middleware
|
||||||
type: tool
|
type: tool
|
||||||
crossVersionUpdate: false
|
crossVersionUpdate: false
|
||||||
limit: 1
|
limit: 1
|
||||||
recommend: 0
|
recommend: 0
|
||||||
website: https://nacos.io/
|
website: https://activemq.apache.org/
|
||||||
github: https://github.com/alibaba/nacos
|
github: https://github.com/apache/activemq
|
||||||
document: https://nacos.io/docs/latest/what-is-nacos/
|
document: https://activemq.apache.org/components/classic/
|
Loading…
Reference in New Issue