Task 4: To configure FAS license
FAS connects to BMC AMI Common Enterprise Services (CES) to retrieve license information. The connection to CES, which can be via a local CES server or via a cloud license, must be configured on FAS.
For Windows
- Select Start > Programs > BMC > File-AID Services > Configuration shortcut to invoke the utility.
- Follow one of these steps:
- To use a local CES server to connect to CES, select the License Preferences tab, select the Enterprise Services radio button. Then select the Enterprise Services tab and in the Service URL field, enter the URL for the CES server. Here is an example of a CES URL: http://yourCesServer:yourCesPort/

- To use a cloud license to connect to CES, select the Cloud radio button in the License Preferences tab. Then set the following properties:

- Service URL
- Customer Number
Site ID
To use BMC maintained CES cloud license, contact BMC Support
- To use a local CES server to connect to CES, select the License Preferences tab, select the Enterprise Services radio button. Then select the Enterprise Services tab and in the Service URL field, enter the URL for the CES server. Here is an example of a CES URL: http://yourCesServer:yourCesPort/
- If the configuration is changed, click OK to save the settings. Restart the server for the changes to take effect.
For Linux
- In the directory containing the installed FAS, issue the shell command ./runServerConfig.sh.
Follow one of these steps:
- To use a local CES server to connect to CES, select option 5 and enter false in the License Preferences tab. Then enter option 4 and enter the URL for the Enterprise Services tab. Here is an example of a CES URL: http://yourCesServer:yourCesPort/
- To use a cloud CES, select option 5 and enter true in the License Preferences tab. Then set the following properties:
- CES Cloud URL (Option 6)
- Customer Number (Option 7)
- Site ID (Option 8)
To use BMC maintained CES cloud license, contact BMC Support.
- Stop and restart FAS to apply the changes. See task Task 5: To control FAS.
To configure HTTPS CES license URL for FAS
This section explains how to configure the CES license URL to use HTTPS for File-AID Services (FAS). Using HTTPS ensures secure communication between FAS and the CES server and helps prevent certificate trust and license connectivity issues.
CES secure URL format:
https://<CES_server>:<CES_secure_port>/
Run the following following steps:
Step 1: Export the certificate from the CES keystore | Export the SSL certificate from the CES keystore (.jks file).
Notes:
|
|---|---|
Step 2: Copy the certificate to the required Java security paths | Copy the exported certificate file to the Java security directory used by FAS. Default FAS Java security path: <FAS_installation_path>/MMCServer/eclipse/jre/lib/security/ For Java 11, copy the certificate to the security directory for each Java version used by FAS. Example paths:
|
Step 3: Import the certificate into the Java truststore | Import the certificate into the Java cacerts truststore. Run the following command: keytool -importcert -file <certificate_name>.cer -keystore cacerts -storepass changeit -alias <alias_name> Notes:
|
Step 4: Restart the FAS service | Restart the FAS service to apply the certificate changes. Service to restart: FAS Use your standard service management commands or scripts. |
Step 5: Verify CES HTTPS connectivity | After the services restart, verify HTTPS access to the CES license endpoint. Run the following command: curl -k https://<CES_server>:<CES_secure_port>/compuware/ws/Licenses/listLicenses/fileAid Expected result: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <AvailableLicenseInfoResponse> <reasonCode>0</reasonCode> <returnCode>0</returnCode> <availableLicenseInfoList> <availableLicenseInfo> <licenseCount>YourLicenseCount</licenseCount> <productName>YourProductName</productName> </availableLicenseInfo> </availableLicenseInfoList> <customerName>YourCustomerName</customerName> <customerNumber>YourCustomerNumber</customerNumber> <customerSiteId>YourCustomerSiteId</customerSiteId> </AvailableLicenseInfoResponse> A successful XML response confirms that:
|