Generate the X.509 key pair and its fingerprint on your Mac machine that you upload to the Oracle HCM tenant.
始める前に
Role required: admin
Ensure that OpenSSL is installed. To verify that OpenSSL is installed, execute the command openssl version on the terminal.
手順
-
Open the terminal.
-
To generate the private key, run the command openssl genrsa -out private.key 2048.
The private key is generated.

-
To generate the public key, run the command openssl req -new -x509 -key private.key -out publickey.cer -days 365.
-
Enter the information.
The public key is generated.
-
To generate the fingerprint, execute the command openssl x509 -sha1 -in publickey.cer -noout -fingerprint.
The fingerprint is generated in the form of a hexadecimal value.
-
Convert the hexadecimal value to a Base64 value.
-
Copy the Base64 value and store in a secure place.
You need the Base64 value when you configure the connections and credential record on your ServiceNow instance.