- 15 Jan 2025
-
DarkLight
-
PDF
Initial Configuration
- Updated on 15 Jan 2025
-
DarkLight
-
PDF
Upon successful installation, a default IP configuration file will be created at /opt/pronghorn/current/properties.json
. This file will initially contain a default IP configuration that may be edited to match the environment.
For installs via Itential Deployer, the IP config file is located at /opt/automation-platform/current/properties.json
.
Legacy IP installs and IP installs using .bin
executables will continue using pronghorn
.
-
Edit
/opt/pronghorn/current/properties.json
. -
Change all references of
mongodb://mongo:27017
to either the hostname/IP address of your MongoDB server orlocalhost
if hosted on the IP server.Example Options
# Option 1) Hosted locally on IP server. mongodb://localhost:27017 # Option 2) Hosted on a standalone MongoDB server. mongodb://mongodb.test.com:27017 # Option 3) MongoDB replica set. mongodb://mongo01.test.com:27017,mongo02.test.com:27017,mongo03.test.com:27017?replicaSet=rs0
-
Change all references of
"host": "redis"
to either the hostname or IP address of your Redis server orlocalhost
if hosted on the IP server.Example Options
# Option 1) Hosted locally on IP server. "host": "localhost" # Option 2) Hosted on a standalone Redis server. "host": "redis.test.com"