Setting database credentials at initial setup
The setup tool applies credentials to the policy database. Also, this tool generates the configuration.yml file that configures the PingAuthorize Policy Editor.
About this task
Using setup or environment variables, you can set credentials for both the admin user and the application user.
Because this setup is an initial setup, the Policy Editor is not running.
Steps
-
Set credentials for both the admin user and the application user.
Choose from:
-
Setting credentials with the
setuptool.Include the following options and the credential values with
setup: -
--dbAdminUsername -
--dbAdminPassword -
--dbAppUsername -
--dbAppPasswordFor example, the following command sets the policy database admin credentials to
adminuser/Passw0rdand the policy database application credentials toappuser/S3cret.bin/setup --dbAdminUsername adminuser \ --dbAdminPassword Passw0rd \ --dbAppUsername appuser \ --dbAppPassword S3cret \ --interactive
-
Setting credentials with environment variables.
Using environment variables, you can avoid credentials showing up in process lists and command-line history.
The following example sets the policy database admin credentials to
adminuser/Passw0rdand the application user credentials toapp/S3cret.env PING_DB_ADMIN_USERNAME=adminuser \ PING_DB_ADMIN_PASSWORD=Passw0rd \ PING_DB_APP_USERNAME=app \ PING_DB_APP_PASSWORD=S3cret \ bin/setup
Using environment variables at initial setup generates the
configuration.ymlfile with theadminuser/Passw0rdcredentials and theapp/S3cretcredentials instead of the default credentials.For more information about these and other UNIX environment variables you can use to override configuration settings, see Starting PingAuthorize Policy Editor.
-