#
Configuring Access to the Open iT Shared Software Assets Directory (SSAD)
#
Activating the Shared Software Assets Directory (SSAD) Feature
Open a command prompt with Administrator level privileges.
Go to the contrib\bin directory, which is by default in
C:\Program Files\OpeniT\Core\contrib\bin
, run the command:Command Syntaxcd $ROOT_DIR\contrib\bin
Examplecd C:\Program Files\OpeniT\Core\contrib\bin
Once in the directory, run the command:
Command Syntaxactivate_ssad.bat true
The following arguments are available when running the
activate_ssad
script.Available Arguments for activate_ssad
You may also use the following options for
activate_ssad
.Available Options for activate_ssad
Open a command prompt with Administrator level privileges.
Go to the contrib\bin directory, which is by default in
/opt/openit/contrib/bin
, run the command:Command Syntaxcd $ROOT_DIR/contrib/bin
Examplecd /opt/openit/contrib/bin
Once in the directory, run the command:
Command Syntax./activate_ssad.pl true
The following arguments are available when running the
activate_ssad
script.Available Arguments for activate_ssad
You may also use the following options for
activate_ssad
.Available Options for activate_ssad
Change the file ownership by running the command:
Command Syntaxchown -R [openit_user]:[openit_group] /var/opt/openit/etc
where:
Arguments to Change File Ownership
Examplechown -R openit:openit /var/opt/openit/etc
Verify that the file ownership of
data_generation_config
is changed. Run the command:Command Syntaxls -l /var/opt/openit/etc | grep data_generation_config
This displays detailed information about the
data_generation_config
file.Example Output-rw-r--r-- 1 openit openit 8954 Apr 29 11:25 data_generation_config
Verify that the file ownership of
core_mapping_ssad.oconf
is changed. Run the command:Command Syntaxls -l /var/opt/openit/etc/scheduler | grep ssad
This should display detailed information about the
core_mapping_ssad.oconf
file.Example Output-rw-r--r-- 1 openit openit 1425 Apr 29 11:25 core_mapping_ssad.oconf
#
Configuring the Shared Software Assets Directory (SSAD) Access Credentials
Coordinate with the Open iT Account Manager or Delivery/Support Team to get your SSAD access credentials.
Open a command prompt with Administrator level privileges.
Go to the bin directory, which is by default in
C:\Program Files\OpeniT\Core\bin
, run the command:Command Syntaxcd $BIN_DIR
Examplecd C:\Program Files\OpeniT\Core\bin
Once in the directory, encrypt the client secret, run the command:
Command Syntaxopenit_ssad_connector --encrypt <client_secret>
Copy the encrypted value of the client secret.
Go to the Configuration folder, which is by default in
C:\Program Files\OpeniT\Core\Configuration
.Open the
credentials.json
file.Paste the encrypted value of the client secret.
credentials.json1 | { 2 | "SSAD": { 3 | "client_id": <client_id_value>, 4 | "client_secret": <encrypted_client_secret> 5 | } 6 | }
Save the changes.
Coordinate with the Open iT Account Manager or Delivery/Support Team to get your SSAD access credentials.
Go to the bin directory, which is by default in
/opt/openit/bin
, run the command:Command Syntaxcd $BIN_DIR
Examplecd /opt/openit/bin
Once in the directory, encrypt the client secret, run the command:
Command Syntax./openit_ssad_connector --encrypt <client_secret>
Copy the encrypted value of the client secret.
Go to the Configuration folder, which is by default in
/var/opt/openit/etc
.Open the
credentials.json
file.Paste the encrypted value of the client secret.
credentials.json1 | { 2 | "SSAD": { 3 | "client_id": <client_id_value>, 4 | "client_secret": <encrypted_client_secret> 5 | } 6 | }
Save the changes.