Updating the service portal URL on the FSM SQL database

Describes steps to update the service portal URL in the FSM SQL database.

Steps

  1. From the FSM host system, launch the Microsoft SQL Server Management Studio.
  2. Log in to the FSM server with the sa credentials and Connect to SQL Server.
  3. Navigate to FSM (SQL Server version – sa) > Databases and select the wbsn-data-security database.


  4. Select New Query from the tool bar.
  5. Enter the following command to query the current service portal URL and then click Execute from the tool bar:
    select * from pa_config_properties where name='CASB_FONE_SERVICE_PORTAL_URL' and group_name='CASB_FONE_SERVICE_CREDENTIALS'

    Ensure that the query is executed successfully.

  6. Review the current URL in the VALUE column.


    By default, this points to the Commercial Cloud URL of https://portal.bitglass.com. If this does not match the URL you use to connect to the Forcepoint ONE SSE, continue to the next steps to update the field.

  7. Select New Query from the tool bar.
  8. Enter the following command to update the current service portal URL and then click Execute from the tool bar:
    update pa_config_properties set value='<portal connection URL>' where name='CASB_FONE_SERVICE_PORTAL_URL' and group_name='CASB_FONE_SERVICE_CREDENTIALS';

    Replace the <portal connection URL> with the URL you use to connect to the Forcepoint ONE SSE. For example, https://portal.us.bitglass.net for the Trial Forcepoint ONE SSE.

    Ensure that the query is executed successfully.

  9. Switch tabs back to the first query and then click Execute again from the tool bar.
  10. Confirm the updated service portal URL in the VALUE column.