Look at LSB init scripts for more information.
Copy to /etc/init.d:
# replace "$YOUR_SERVICE_NAME" with your service's name (whenever it's not enough obvious)| #!/bin/sh | |
| # | |
| # /etc/init.d/kibana4 -- startup script for kibana4 | |
| # [email protected] 2015-02-20; used elasticsearch init script as template | |
| # https://github.com/akabdog/scripts/edit/master/kibana4_init | |
| # | |
| ### BEGIN INIT INFO | |
| # Provides: kibana4 | |
| # Required-Start: $network $remote_fs $named | |
| # Required-Stop: $network $remote_fs $named |
Look at LSB init scripts for more information.
Copy to /etc/init.d:
# replace "$YOUR_SERVICE_NAME" with your service's name (whenever it's not enough obvious)| /* | |
| * Demonstration of the new MongoDB outypeType attribute in Camel 2.16. | |
| * Priorir to launching script lower the maximum ram available for groovy by setting maximum size to 664M `export JAVA_OPTS="$JAVA_OPTS -Xmx64M"`. | |
| * MongoDB should run localy with no security on test database otherwise change the mongoClient initialization. | |
| * First feed the base by running the script with FEED parameter ( groovy CamelMongoDBCursorExample.groovy FEED ) | |
| * Try to list all document by running the script with LIST parameter ( groovy CamelMongoDBCursorExample.groovy LIST ). You should face a OutOfMemory error. | |
| * Run again with CURSOR parameter ( groovy CamelMongoDBCursorExample.groovy CURSOR ) all documents are print in the console. | |
| * | |
| * ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | |
| * "THE BEER-WARE LICENSE" (Revision 42): |
| <!DOCTYPE html> | |
| <!-- | |
| Inspired by : | |
| Created using JS Bin | |
| http://jsbin.com | |
| Copyright (c) 2015 by anonymous (http://jsbin.com/bojumofowa/1/edit) | |
| Released under the MIT license: http://jsbin.mit-license.org | |
| Modified and destructured by P.A.DEWITTE | |
| --> | |
| <meta name="robots" content="noindex"> |
| $ docker-compose up -d # start containers in background | |
| $ docker-compose kill # stop containers | |
| $ docker-compose pull # refresh the local images with the ones of the registry | |
| $ docker-compose up -d --build # force rebuild of Dockerfiles | |
| $ docker-compose rm # remove stopped containers | |
| $ docker ps # see list of running containers | |
| $ docker exec -ti [NAME] bash # ssh to the container | |
| # list all images | |
| docker images |
| <div id="app"> | |
| Hello : {{ message }} | |
| </div> |
A Pen by DEWITTE Pierre-Alban on CodePen.