-
Notifications
You must be signed in to change notification settings - Fork 26
Server
Artur Dryomov edited this page Jul 31, 2015
·
12 revisions
The Hawkular server is required to run the application.
At this point the application is associated with available releases, not master
branch of hawkular/hawkular
. You can see the relevant information at the authorization screen of the application. At the moment it is version 1.0.0 Alpha 3
.
You can use the following script to bootstrap the server. The server will be available in your network. It is highly recommended to visit localhost:8080
to register the user and add some resources, i. e. URLs, as well as configure alerts, just to have something to browse. The application will require address, port and credentials of the server.
HAWKULAR_VERSION="1.0.0.Alpha3"
HAWKULAR_URL="http://download.jboss.org/hawkular/hawkular"
HAWKULAR_DIRECTORY="hawkular"
HAWKULAR_FILE="hawkular.tar.gz"
mkdir "${HAWKULAR_DIRECTORY}"
cd "${HAWKULAR_DIRECTORY}"
curl "${HAWKULAR_URL}/${HAWKULAR_VERSION}/hawkular-dist-${HAWKULAR_VERSION}.tar.gz" --output "${HAWKULAR_FILE}"
tar --extract --gzip --file "${HAWKULAR_FILE}"
cd "hawkular-${HAWKULAR_VERSION}"
sh bin/standalone.sh -b 0.0.0.0