Overview
...
Overview
In version 11 the use of a keystore is optional, these instructions can be skipped if desired. In version 10 use of the keystore is required.
PhixFlow can use a keystore for:
- a pepper string, which PhixFlow will add to local user passwords when encrypting them
- the database username and password.
The pepper string and database account credentials are encrypted and stored here, along with their aliases
...
When PhixFlow is running, it provides the account credentials to its database as follows:
...
. You can then use an alias to retrieve each secret from the keystore.
To configure the keystore, use the Java keytool -importpass
command at the command line. In the following examples, we have used
- a file type of PKCS12. You can also use JCEKS.
- a keystore name of keystore.jks. If you use a different name for the keystore, you must update its name in the phixflow-secret.xml configuration file.
...
- This file stores the location of the keystore file and optionally its password (2a in the diagram below).
- Alternatively, the keystore password is configured as an environment variable (2b in the diagram below)
...
This is shown in the diagram below.
Figure 1: How PhixFlow authenticates to its database
Tip |
---|
You can use the same keystore to encrypt credentials for several PhixFlow instances. We recommend that you use actual credentials and aliases that clearly relate to their instance. |
How to Configure a Keystore
The examples in the instructions below use the following names, passwords or variables.
...
PhixFlow-DB-Dev
...
pdbdev
...
Step 1 Create the keystore
1.1. At the command line, use the Java keytool command -importpass
to create a keystore. At the same time, you will add the alias for the database username.
Keytool Syntax
Code Block |
---|
<keytool> -importpass -alias <keyAlias> -keystore <pathToKeystoreFile> -storetype <keytype> |
where:
<keytool> is:
- for Windows command prompt
"%JAVA_HOME%\bin\keytool.exe"
- for Windows PowerShell
&"$env:JAVA_HOME\bin\keytool.exe"
- for Linux
$JAVA_HOME/bin/keytool
- for Windows command prompt
<keyAlias>
is the alias for the username, for examplepdbdev
.<pathToKeystoreFile>
is the full path to the keystore file, for exampleC:\secure\hidden.jks
.- <keytype> is either PKCS12 or JCEKS.
Examples
Windows:
...
- Adding Data to a Keystore for the command syntax and how the keystore works
- Understanding Password Encryption for information about the pepper string and how to ensure user security information is migrated to use the most secure encryption
- Considerations for Pepper Strings for whether or not to use different pepper keys for different instances.
Panel | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
|
Tip |
---|
When you run the keytool -importpass command, it always prompts for a "password". This is because the keytool does not distinguish between the secrets that it stores. At the prompt, enter the actual value you want to store securely. |
Create the keystore and add the pepper string and its alias
If you are creating the keystore on Windows, you must use the backslash \
in the path. PhixFlow will not be able to read the pepper key value if you use the forward slash /
.
Note |
---|
If you have follow the recommended instructions for installing Java (Install Java) the keytool program will be in your path. If you have take a different approach, you can find the keytool program under JAVA_INSTALLATION_HOME/bin . |
- Run the
-importpass
command, specifying the alias:pepperkey
The alias is case-sensitive and must match phixflow-instance.xml:
If you use a different alias, update phixflow-instance.xml to use the same alias.<prop key="pepperkey">pepperkey</prop>
When prompted, enter the password you want to set for the keystore file, then re-enter to confirm it.
Keep a secure record of this password.Tip If you are following these instructions to upgrade PhixFlow, and your keystore already exists, in step 2 enter the password for your keystore.
See also: Adding Data to a Keystore- When prompted for the password, enter the string you want to use to pepper user passwords.
We recommend this string has the same characteristics as a password. For example it should be a random string containing at least 6 letters, numbers and special characters.
Keep a secure record of the pepper key.
Code Block | ||
---|---|---|
| ||
keytool -importpass -alias pepperkey -keystore C:\secure\keystore.jks -storetype PKCS12 |
Code Block | ||
---|---|---|
| ||
keytool -importpass -alias pepperkey -keystore C:\secure\keystore.jks -storetype PKCS12 |
Code Block | ||
---|---|---|
| ||
keytool -importpass -alias pepperkey -keystore /opt/secure/keystore.jks -storetype PKCS12 |
Populate the Keystore
Step 1 Add the database username
1.1 Run the -importpass
command, specifying the alias username for the PhixFlow database, for example phixflow-database-user
.
1.2 When prompted, enter the keystore password.
1.3 When prompted for the password, enter the actual username for the PhixFlow database, for example phixflow
.
Code Block | ||
---|---|---|
| ||
keytool -importpass -alias phixflow-database-user -keystore C:\secure\keystore.jks -storetype PKCS12 |
Code Block | ||
---|---|---|
| ||
keytool -importpass -alias phixflow-database-user -keystore C:\secure\ |
...
keystore.jks -storetype PKCS12 |
Code Block | ||
---|---|---|
|
...
| |
keytool -importpass -alias |
...
phixflow-database-user -keystore /opt/secure/ |
...
keystore.jks -storetype PKCS12 |
1.2. The keytool prompts you to set a password for the keystore file and confirm it. Enter the password, eg. storepw
and re-enter to confirm.
...
Step 2 Add the database password and alias to the keystore file
2.1. Run the -importpass
command specifying the alias password for the PhixFlow database, for
...
example phixflow-
...
database-
...
password
.
Step 2 Add the database password and alias to the keystore file
2.1. Repeat the commands, using <keyAlias>
to add the alias for the password. For example, run the command:
Windows:
2.2 When prompted, enter the keystore password.
2.3 When prompted for the password, enter the actual password for the PhixFlow database.
Code Block | ||
---|---|---|
| ||
keytool -importpass -alias |
...
phixflow-database-password -keystore C:\secure\ |
...
keystore.jks -storetype PKCS12 |
Linux:
Code Block | ||
---|---|---|
| ||
keytool -importpass -alias |
...
phixflow-database-password -keystore C:\secure\ |
...
keystore.jks -storetype PKCS12 |
2.2 The keytool prompts you to enter the password for the keystore, for example, storepw
.
2.3 When the keytool prompts you to enter the actual password to be stored, enter the password for the PhixFlow database, for example, P*56word
.
Code Block | ||
---|---|---|
| ||
keytool -importpass -alias phixflow-database-password -keystore /opt/secure/keystore.jks -storetype PKCS12 |
Configure Phixflow
The configuration process differs between version 10 and version 11.
Please follow the relevant instructions below.
Expand | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
The following settings need to be configured in local.properties or as environment variables.
|
Expand | ||
---|---|---|
| ||
Step 1 Configure phixflow-datasource.xmlEdit phixflow-datasource.xml to add the aliases for the PhixFlow database username and password. For example:
|
...
|
...
Step |
...
2 Set the Environment Variable
|
...
Create an environment variable |
...
with the form |
...
|
...
...
|
...
|
...
|
...
...
Never add the keystore password to the profile for the Tomcat user.
Step |
...
3 Configure phixflow-secret.xmlCopy phixflow-secret.xml.example to phixflow-secret.xml and edit it to set the values as follows:
|
...
|
...
|
Changing the Keystore Password
It is not possible to change the password directly on the keystore file as this corrupts its values. Instead we recommend creating a new keystore file and importing the original values into it.
The process to create a new keystore is:
- Tomcat needs to be stopped.
- Rename your original keystore file e.g.
keystoreOld.jks
. - Use the importkeystore command to import the existing keystore into a a new keystore, at which point you will be prompted for the password for the original keystore and then a new password for the new keystore.
- Give the new keystore the original keystore's name e.g.
keystore.jks.
- Give the new keystore the original keystore's name e.g.
- Depending on your configuration, you will need to update local.properties, phixFlow-secret.xml or the environment variable, with the new keystore password.
Examples
Code Block | ||||
---|---|---|---|---|
| ||||
keytool -importkeystore \
-srckeystore keystoreOld.jks -srcstoretype PKCS12 \
-destkeystore keystore.jks -deststoretype PKCS12 |
Code Block | ||||
---|---|---|---|---|
| ||||
keytool -importkeystore \
-srckeystore keystoreOld.jks -srcstoretype PKCS12 \
-destkeystore keystore.jks -deststoretype PKCS12 |