Some deployment scenarios need to dynamically specify the address of service registration. For example, docker bridge network mode need to specify a registered host IP for external network communication. Dubbo provides two pairs of system attributes in the startup phase, which are used to set the IP and port addresses of external communication.
- The above four configurations are optional. Dubbo will automatically get IP and port if there is no configuration. Please choose them flexibly according to deployment scenarios.
- Dubbo supports multi-protocol. If an application exposes multiple different protocol services simultaneously and need to specify IP or port separately for each service. Please add the protocol prefix before the above attributes separately. For example:
- HESSIAN_DUBBO_PORT_TO_BIND hessian protocol bound port
- DUBBO_DUBBO_PORT_TO_BIND dubbo protocol bound port
- HESSIAN_DUBBO_IP_TO_REGISTRY hessian protocol registered IP
- DUBBO_DUBBO_IP_TO_REGISTRY dubbo protocol registered IP
PORT_TO_REGISTRY
orIP_TO_REGISTRY
won’t be used as defaultPORT_TO_BIND
orIP_TO_BIND
,But the reverse is true.
- If set
PORT_TO_REGISTRY=20881
IP_TO_REGISTRY=30.5.97.6
,thenPORT_TO_BIND
IP_TO_BIND
won’t be affected.- If set
PORT_TO_BIND=20881
IP_TO_BIND=30.5.97.6
,thenPORT_TO_REGISTRY=20881
IP_TO_REGISTRY=30.5.97.6
by default.
dubbo-docker-sample local operation process:
git clone git@github.com:dubbo/dubbo-docker-sample.git
cd dubbo-docker-sample
mvn clean install
docker build --no-cache -t dubbo-docker-sample .
Dockerfile
FROM openjdk:8-jdk-alpine
ADD target/dubbo-docker-sample-0.0.1-SNAPSHOT.jar app.jar
ENV JAVA_OPTS=""
ENTRYPOINT exec java $JAVA_OPTS -jar /app.jar
# Since we use the zk registration center, we start zk container first
docker run --name zkserver --restart always -d zookeeper:3.4.9
docker run -e DUBBO_IP_TO_REGISTRY=30.5.97.6 -e DUBBO_PORT_TO_REGISTRY=20881 -p 30.5.97.6:20881:20880 --link zkserver:zkserver -it --rm dubbo-docker-sample
Suppose the host IP is 30.5.97.6. set the provider to register the IP address and port of the registration center by environment variables
DUBBO_IP_TO_REGISTRY=30.5.97.6
DUBBO_PORT_TO_REGISTRY=20881
Implement the port mapping by-p 30.5.97.6:20881:20880
, where 20880 is the listening port automatically selected by dubbo. There is no monitoring IP configuration, so it will listen 0.0.0.0 (all IP). After startup, the registered address of provider is 30.5.97.6:20881, and the listening address of the container is: 0.0.0.0:20880
telnet 30.5.97.6 20881
ls
invoke org.apache.dubbo.test.docker.DemoService.hello("world")