Information Centric Tagging Administration Console Wizard giving configuration error
search cancel

Information Centric Tagging Administration Console Wizard giving configuration error

book

Article ID: 172912

calendar_today

Updated On:

Products

Information Centric Security

Issue/Introduction

Information Centric Tagging (ICT) Administration Console Wizard configuration error: "...data not valid (You do not have authorization to access this page...)"

 

Executing Administration Console installation wizard in the first step (configuring Databases). We receive error message :

Resolution

This may happen because your server(Domain Controller  or ICT server) installed in a different language than English.

ICT uses the segregation groups to provide the access to the consoles. These groups are configured in the AD but, during the configuration, the group configured in the database is the BUILTIN\USERS.

  1. Make sure that the user you are using to configure ICT belongs to ICT_CONFIGURATION (ICT configuration group)

Run the following script in the Database(if you are not using the default ICT configuration group change it accordingly in the scrip)

USE [ICT_CONFIG]
GO
 
UPDATE [dbo].[Configuration]
   SET [Value] = 'ICT_CONFIGURATION'
   where variable = 'AdSystemSetupConsoleGroup'
GO

Alternatively you can change it directly in the database:

 Database – ICT_CONFIG:

  •   Access the SQL Management studio and connect to the instances where the ICT DBs are
  • Expand Databases – ICT_CONFIG – Tables
  • Right click dbo.Configuration and select Edit Top 200 Rows
  • Change the AdSystemSetupConsoleGroup variable according to your system

Also check that you don't have BUILTIN\USERS in ICTAdministration console web.config (line 36)    
<authorization>
<allow roles=" BUILTIN\USERS, BUILTIN\USERS, BUILTIN\USERS, BUILTIN\USERS, BUILTIN\USERS, BUILTIN\USERS " />
<deny users="*" />
</authorization>

 The BUILTIN\USERS is available on every system language. The only thing that is diferent is the “USERS”.

A server restart maybe required.

Attachments