Installing Streaming Integrator Using Docker¶
Before you begin:
-
The system requirements are as follows:
- 3 GHz Dual-core Xeon/Opteron (or latest)
- 8 GB RAM
- 10 GB free disk space
-
Install Docker by following the instructions provided in here.
MWARE ESB provides open source Docker images to run ESB Streaming Integrator in Docker Hub. You can view these images In Docker Hub - MWARE.
Downloading and installing ESB Streaming Integrator¶
To pull the required ESB Streaming Integrator distribution with updates from the Docker image, issue the following command.
docker pull mware/streaming-integrator:1.0.0
Running ESB Streaming Integrator¶
To run ESB Streaming Integrator, issue the following command.
docker run -it mware/streaming-integrator/1.0.0
Tip
To expose the required ports via docker when running the docker container, issue the following command.
docker run -it \
-p 9443:9443 \
-p 9090:9090 \
-p 7070:7070 \
-p 7443:7443 \
-p 9712:9712 \
-p 7711:7711 \
-p 7611:7611 \
wso2/streaming-integrator
For more details about the ports in Streaming Integrator, see Configuring Default Ports.
Top