Searching the Help
To search for information in the Help, type a word or phrase in the Search box. When you enter a group of words, OR is inferred. You can use Boolean operators to refine your search.
Results returned are case insensitive. However, results ranking takes case into account and assigns higher scores to case matches. Therefore, a search for "cats" followed by a search for "Cats" would return the same number of Help topics, but the order in which the topics are listed would be different.
Search for | Example | Results |
---|---|---|
A single word | cat
|
Topics that contain the word "cat". You will also find its grammatical variations, such as "cats". |
A phrase. You can specify that the search results contain a specific phrase. |
"cat food" (quotation marks) |
Topics that contain the literal phrase "cat food" and all its grammatical variations. Without the quotation marks, the query is equivalent to specifying an OR operator, which finds topics with one of the individual words instead of the phrase. |
Search for | Operator | Example |
---|---|---|
Two or more words in the same topic |
|
|
Either word in a topic |
|
|
Topics that do not contain a specific word or phrase |
|
|
Topics that contain one string and do not contain another | ^ (caret) |
cat ^ mouse
|
A combination of search types | ( ) parentheses |
|
How to Generate the Key Store File
This task contains the following steps:
-
Configure Docker Swarm to enable the TLS verification
For details, see Configure Docker Swarm for TLS.
Retrieve the cert.pem and key.pem.
-
Convert the cert and key to the Key Store file used by UCMDB
-
Generate the key in PKCS12 format
-
Enter the following command in Linux Shell:
openssl pkcs12 -export -in <your cert> -inkey <your key> -out <pkcs12 formated key>
For example,
openssl pkcs12 -export -in cert.pem -inkey key.pem -out sh.pk12
- cert.pem is the cert that you retrieved from Step 1 to access Docker Swarm.
- key.pem is the key that you retrieved from Step 1 to access Docker Swarm.
- sh.pk12 is the PKCS12 file that you want to generate.
-
The command will prompt you as follows:
Enter Export Password:
(Type the Key Password that you want .This is the Key Password to be configured in UCMDB HTTP protocol.)Verifying - Enter Export Password:
(Confirm the above one) -
Note down the PKCS12 file that is generated and the Key Password to be configured in UCMDB HTTP protocol.
-
-
Convert the key into JKS format using keytool (from Java JDK)
-
Enter the following command in Linux Shell:
keytool -importkeystore -destkeystore <Java keystore file> -srcstoretype PKCS12 -srckeystore <pkcs12 formated key>
For example,
keytool -importkeystore -destkeystore keystore.jks -srcstoretype PKCS12 -srckeystore sh.pk12
- The keystore.jks file is the Key Store file to be used in UCMDB HTTP protocol.
- sh.pk12 is the PKCS12 file that is generated in Step a.
-
The command will prompt you as follows:
Enter destination keystore password:
(Type the Key Store Password that you want. This is the Key Store Password to be configured in UCMDB HTTP protocol.)Re-enter new password:
(Confirm the above one)Enter source keystore password:
(Type the Key Password that is entered in Step a) -
Note down the full path of the Key Store file that is generated and the Key Store Password to be configured in UCMDB HTTP protocol.
-
-