Skip to content

Commit 461b38b

Browse files
Fix mvn site documentation errors (#411)
* Fix some mvn site errors
1 parent c7cf382 commit 461b38b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

wiki/markdown/configuration.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ These Eiffel Intelligence password properties can be provided encrypted:
192192

193193
A password property is configured by providing the encrypted password in this format.
194194

195-
some.component.password=ENC(<encrypted password>)
195+
some.component.password=ENC(myEncryptedPassword)
196196

197197

198198
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
201201
"url": "<ldap address>",\
202202
"base.dn": "<dn>",\
203203
"username": "<username>",\
204-
"password": "ENC(<encrypted password>)",\
204+
"password": "ENC(myEncryptedPassword)",\
205205
"user.filter": "<filter>"\
206206
}]
207207

@@ -215,20 +215,20 @@ Short guide about encrypting passwords:
215215
**1** Encrypt actual component password with secret encrypting password.
216216
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:
217217

218-
./encrypt.sh input="<the actual component password>" password=<the secret encryptor password>
218+
./encrypt.sh input="<the actual component password>" password=mySecretEncryptorPassword
219219

220220
**2** That above step will generate the encrypted component password, example:
221221

222222
rv/2O+hOT4GJSPmmF/cF1w==
223223

224-
**3** Now open application.properties file and add the new encrypted password to the specific component password property with "ENC(<encrypted password>)" format:
224+
**3** Now open application.properties file and add the new encrypted password to the specific component password property with "ENC(myEncryptedPassword)" format:
225225

226226
some.component.password=ENC(rv/2O+hOT4GJSPmmF/cF1w==)
227227

228228
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.
229229

230230
**4** Now its time to run Eiffel-Intelligence with these encrypted passwords in application.properties.
231231
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=<the secret encryptor password>" flag, example:
232+
Execute Eiffel-Intelligence with "jasypt.encryptor.password=mySecretEncryptorPassword" flag, example:
233233

234-
java -jar eiffel-intelligence-<version>.war --jasypt.encryptor.password=<the secret encryptor password> --spring.config.location=/path/to/application.properties
234+
java -jar eiffel-intelligence-<version>.war --jasypt.encryptor.password=mySecretEncryptorPassword --spring.config.location=/path/to/application.properties

0 commit comments

Comments
 (0)