Skip to content

ether-camp/actuator.ether.camp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

actuator.ether.camp

Admin panel for managing actuators (health, metrics etc) from other services

Define SERVER_PORT and MANAGE_PASS password for user manage used for server login and clients data access and execute ./run.sh

Exporting clients SSL key

Create file retrieve-cert.sh

#!/bin/sh
#
# usage: retrieve-cert.sh remote.host.name [port]
#
REMHOST=$1
REMPORT=${2:-443}

echo |\
openssl s_client -connect ${REMHOST}:${REMPORT} 2>&1 |\
sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p'

Chmod and run

chmod +x retrieve-cert.sh
./retrieve-cert.sh my.url.com 9001 > my-url.cert

Save to java keystore, path could differs, default pass is changeit

/opt/jdk1.8.0_51/bin/keytool -import -file my-url.cert -alias my-url -keystore /opt/jdk1.8.0_51/jre/lib/security/cacerts

About

Admin panel for services actuators (health stats etc)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published