Confirm Network Settings for API and Server Communication
book
Article ID: 288404
calendar_today
Updated On:
Products
Carbon Black App Control (formerly Cb Protection)
Issue/Introduction
Steps to confirm the Server Address as currently stored in the App Control database.
Environment
- App Control Server: All Supported Versions
- Microsoft SQL Server: All Supported Versions
Resolution
- Log in to the application server as the Carbon Black Service Account.
- Launch SQL Server Management Studio and execute the following query:
USE das;
SELECT * FROM shepherd_configs (NOLOCK) WHERE name IN ('RPCServerAddress', 'WebServerAddress');
- Verify the two match, and if necessary update the Hostname of the App Control Server.
Additional Information
If Console access is unavailable, the Server Address can be adjusted following these steps:
- Use SQL Server Management Studio to execute the following query:
USE das;
EXEC dbo.updateshepherdconfig @name = 'RPCServerAddress', @value = 'Correct FQDN ServerAddress Here';
EXEC dbo.updateshepherdconfig @name = 'WebServerAddress', @value = 'Correct FQDN ServerAddress Here';
- Open the file: C:\Program Files (x86)\Bit9\Parity Console\WebUI\include\parity.ini
- Verify the line, IP Address= matches the Server Address, example:
....
[ServerInfo]
protocol=http
endpoint=127.0.0.1:41001
IP Address=appcontrol.local
....
Feedback
thumb_up
Yes
thumb_down
No