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
Copy file name to clipboardExpand all lines: wiki/markdown/configuration.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -192,7 +192,7 @@ These Eiffel Intelligence password properties can be provided encrypted:
192
192
193
193
A password property is configured by providing the encrypted password in this format.
194
194
195
-
some.component.password=ENC(<encrypted password>)
195
+
some.component.password=ENC(myEncryptedPassword)
196
196
197
197
198
198
Ldap encrypted password is set inside **ldap.server.list** property according the example below:
@@ -201,7 +201,7 @@ Ldap encrypted password is set inside **ldap.server.list** property according th
201
201
"url": "<ldap address>",\
202
202
"base.dn": "<dn>",\
203
203
"username": "<username>",\
204
-
"password": "ENC(<encrypted password>)",\
204
+
"password": "ENC(myEncryptedPassword)",\
205
205
"user.filter": "<filter>"\
206
206
}]
207
207
@@ -215,20 +215,20 @@ Short guide about encrypting passwords:
215
215
**1** Encrypt actual component password with secret encrypting password.
216
216
Encrypting password should be a secret password and is created/generated by administator user and should not be written/stored in application.properties or any other config files near the application in the filesystem:
217
217
218
-
./encrypt.sh input="<the actual component password>" password=<the secret encryptor password>
218
+
./encrypt.sh input="<the actual component password>" password=mySecretEncryptorPassword
219
219
220
220
**2** That above step will generate the encrypted component password, example:
221
221
222
222
rv/2O+hOT4GJSPmmF/cF1w==
223
223
224
-
**3** Now open application.properties file and add the new encrypted password to the specific component password property with "ENC(<encryptedpassword>)" format:
224
+
**3** Now open application.properties file and add the new encrypted password to the specific component password property with "ENC(myEncryptedPassword)" format:
Do step 1 to 3 for all component passwords and properties in application.properties. Remember to use same secret encryptor password for all components passwords.
229
229
230
230
**4** Now its time to run Eiffel-Intelligence with these encrypted passwords in application.properties.
231
231
Eiffel-Intelligence will decrypt password properties with help of the provided secret encryptor password at run-time.
232
-
Execute Eiffel-Intelligence with "jasypt.encryptor.password=<thesecretencryptorpassword>" flag, example:
232
+
Execute Eiffel-Intelligence with "jasypt.encryptor.password=mySecretEncryptorPassword" flag, example:
0 commit comments