IMPORTANT ANNOUNCEMENT: On May 6, 2024, Carbon Black User eXchange (UeX) and Case Management will move to a new platform!
The Community will be in read-only mode starting April 19th, 7:00 AM PDT. Check out the blog post!
You will still be able to use the case portal to create and interact with your support cases until the transition, view more information here!

App Control: How To Confirm Network Settings for API and Server Communication

App Control: How To Confirm Network Settings for API and Server Communication

Environment

  • App Control Server: All Supported Versions
  • Microsoft SQL Server: All Supported Versions

Objective

To confirm the Server Address as currently stored in the App Control database.

Resolution

  1. Login to the application server as the Carbon Black Service Account.
  2. Launch SQL Server Management Studio.
  3. Verify the Server Address currently stored in the database:
    use DAS;
    select * FROM shepherd_configs where name IN ('RPCServerAddress', 'WebServerAddress')

Additional Notes

  • Updating the App Control Server Hostname should be done following the steps outlined here.
  • If Console access is unavailable, the following queries can be executed while the App Control Server and Reporter services are stopped:
    use das;
    EXEC dbo.updateshepherdconfig @name = 'RPCServerAddress', @value = 'Correct FQDN ServerAddress Here';
    EXEC dbo.updateshepherdconfig @name = 'WebServerAddress', @value = 'Correct FQDN ServerAddress Here';
        

Related Content


Labels (1)
Tags (2)
Was this article helpful? Yes No
0% helpful (0/1)
Article Information
Author:
Creation Date:
‎09-09-2020
Views:
1247
Contributors