Kinetic Request CE image.
4.6K
Kinetic Request CE is a framework for building and publishing web based form applications. This Docker image provides a playground for learning Request CE, demos, and proof of concepts (POC).
In order to use the image, you first must pull the docker image from Docker Hub.
docker pull kineticdata/kinetic-request-cedocker pull kineticdata/kinetic-request-ce:1.0.0Run the container and publish the necessary ports to the docker machine in which the container is being run. Use the -p host-port:docker-container-port flag to publish the container port to a port on the host machine. Not all of the ports listed below are required, it depends on what services you will be connecting to.
Container Ports
80 - Apache HTTP Web Server
8080 - Tomcat Java Web Server
docker run -d -p 8080:8080 kineticdata/kinetic-request-ce
To connect to the Java web applications running on the docker container, you must first determine the IP address of the host machine the docker container is running on. The reason for this is that you will actually be connecting to the host machine, on the port that was mapped using the -p :8080 option when running the docker run ... command in the previous step.
Find docker host ip address:
docker-machine ip default
To connect to the docker container with an interactive shell, first get a list of running docker container:
docker ps
Find your running docker container in the list, and obtain the docker id of that container. You will use it in the following command:
docker exec -it <CONTAINER ID> /bin/bash
This example will connect to the container with the bash shell. If you wish to use the sh shell for instance, you would specify that shell instead:
docker exec -it <CONTAINER ID> /bin/sh
After determining the IP address of the host machine the docker container is running on (see above if you don't know the host machine address), you can use a web browser to access the applications.
Open web browser: http://:
Example http://:8080 /kinetic/ /kinetic-bridgehub/ /kinetic-filehub/ /kinetic-task/
Default System Configuration User
Playground Space Administration User
Default Configuration User
PostgreSQL Database
Default Configuration User
Default Configuration User
There are other Cassandra ports that can be configured for use in a cluster, or to allow remote connections. These values should use the default values unless there is a good reason to change them. The default values are listed below.
Content type
Image
Digest
Size
948 MB
Last updated
over 9 years ago
docker pull kineticdata/kinetic-request-ce