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.
WSO2 provides open source Docker images to run WSO2 Streaming Integrator in Docker Hub. You can view these images In Docker Hub - WSO2.
Downloading and installing WSO2 Streaming Integrator¶
To pull the required WSO2 Streaming Integrator distribution with updates from the Docker image, issue the following command.
docker pull wso2/streaming-integrator:1.0.0
Running WSO2 Streaming Integrator¶
To run WSO2 Streaming Integrator, issue the following command.
docker run -it wso2/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