Redpeaks V7.0
Trouble shooting
Monitors Guide
Trouble shooting
Monitors Guide
HTTPS redirection port fieldiptables -t nat -A PREROUTING -p tcp –dport 443 -j REDIRECT –to-ports 8443HTTPS redirection port field.[REDPEAKS_HOME]\\bin\\pro_monitorw.exe[REDPEAKS_HOME]/certificates/.keystorelocalhost as Common Name (CN)Generating a Self-signed certificate
Generate a self-signed certificateGenerating a Certificate manually
Certificates from a trusted authority
Import certificate from remote sites:
Download and install a self-signed certificate[REDPEAKS_HOME]/certificates/keytool -import -trustcacerts -keystore [REDPEAKS_HOME]/certificates/.keystore -storepass agentilKeyStore \ -noprompt -alias yourAliasName -file [REDPEAKS_HOME]/certificates/certificate.cer
keytool -importkeystore -srckeystore yourKeyStore.p12 -srcstoretype PKCS12 -srcstorepass agentilKeyStore \ -destkeystore [REDPEAKS_HOME]/certificates/.keystore -deststoretype JKS -deststorepass agentilKeyStore
NOTE:
[REDPEAKS_HOME]/certificates/.keystoreIn some cases, you have:
The recommended way to provide a complete chain to Redpeaks is to build a PKCS12 (.p12) file containing
.cer files—–BEGIN CERTIFICATE—–, they are already in PEM formatopenssl x509 -inform DER -in intermediate.cer -out intermediate.crt openssl x509 -inform DER -in root.cer -out root.crt
cat intermediate.crt root.crt > chain.pem
Example:
openssl pkcs12 -export -inkey server.key -in server.crt -certfile chain.pem -name pro_monitor -out fullcert.p12
You will be asked for an export password: use “agentilKeyStore” if you want to import it directly with default Redpeaks keystore password
keytool -importkeystore -srckeystore fullcert.p12 -srcstoretype PKCS12 \ -srcstorepass agentilKeyStore -destkeystore [PRO_MONITOR_HOME]/certificates/.keystore -deststoretype JKS -deststorepass agentilKeyStore