You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run either `./controller-ssl-certs-util.sh` or `./eum-ssl-certs-util.sh` and then use the interactive command line.
22
+
Always follow the official AppDynamics documentation at https://docs.appdynamics.com
26
23
27
-
No parameters are passed in. Always follow the official AppDynamics documentation. In general, you'll need to create a CSR and then import the cert. If you have an internal CA, you'll need to import the root and/or intermediate certs.
24
+
The basic flow is to
25
+
- Create a Certificate Signing Request (CSR)
26
+
- Send that CSR to your CA
27
+
- They'll send back to you a signed certificate
28
+
- You'll then need to import your signed certificate
29
+
- IF you have an internal CA, then you'll first need to import your root cert, cert chain and/or intermediate cert. The exact steps depend on your organization and environment.
30
+
31
+
Run either `./controller-ssl-certs-util.sh` or `./eum-ssl-certs-util.sh` and then use the interactive command line. No parameters are passed in.
echo"Send this CSR to your Certificate Authority for signing, then import the signed cert. You may need to first import the CA's chain or root cert, depending on your setup. Contact your company's PKI team for guidance. "
82
-
}
83
-
84
-
#2
85
-
import-signed-cert()
86
-
{
87
-
echo"Importing a signed certificate..."
88
-
read -rp $'Certificate filename: ' cert
89
-
90
-
validate-certificate $cert
91
-
92
-
echo"Importing $cert into $KEYSTORE_PATH for alias $SIGNED_CERT_ALIAS_NAME"
echo"ERROR: Unable to find $CONTROLLER_HOME. Set the variable in this script."
165
-
exit 1
166
-
fi
167
-
if [ !-d"$KEYTOOL_HOME" ];then
168
-
echo"ERROR: Unable to find $KEYTOOL_HOME. Set the variable in this script."
169
-
exit 1
170
-
fi
171
-
if [ !-d"$CONFIG_HOME" ];then
172
-
echo"ERROR: Unable to find $CONFIG_HOME. Set the variable in this script."
173
-
exit 1
174
-
fi
52
+
echo""
53
+
echo"Finished. CSR generated at $CSR"
54
+
echo"Send this CSR to your Certificate Authority for signing, then import the signed cert that they return. You may need to first import the CA's chain or root cert, depending on your setup. Contact your company's PKI team for guidance."
175
55
}
176
56
177
-
disclaimer-controller()
57
+
controller-disclaimer()
178
58
{
179
59
echo""
180
60
echo"This script helps working with SSL certificates, but it's not a total replacement for keytool."
181
61
echo"Think of this as the Basic interface to keystores and keytool is the Advanced one."
0 commit comments