This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Flexera Community
- :
- FlexNet Manager
- :
- FlexNet Manager Knowledge Base
- :
- Changing a Service Account into an Interactive Account
Subscribe
- Mark as New
- Mark as Read
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
Changing a Service Account into an Interactive Account
Changing a Service Account into an Interactive Account
Summary
How do I change a Service Account into an Interactive Account (and vice versa)?Synopsis
I created a Service Account but meant to create an Interactive Account. How do I change this?
Discussion
Changing a Service Account into an Interactive Account (and vice versa) is currently not possible without running an SQL query.
- On FNMS Cloud (both US and EU), this must be requested through support.
- On FNMS On-Premises, this can be remedied via the 'Workaround' available in this KB.
Workaround
According to the online help available via the ? icon in the top-right of the Web UI, the difference between a Service and Interactive Account is the Web Service role is assigned automatically to a Service Account. You can read this by navigating down to System Menu -> Accounts -> Creating an Account.
Creating a Service Account, it can be seen that this is assigned the Web Service role and that the Interactive column of dbo.ComplianceOperator is set to 0.
Follow these steps to change the account into an Interactive Account (and vice versa by changing the SET Interactive statement to 0):- Back up the FNMS Compliance DB, particularly the dbo.ComplianceOperator table.
- Change the role of the account and permissions as desired.
- Amend and run the following SQL command, adjusting the variable @OperatorLogin to the DOMAIN\username of the account:
DECLARE @OperatorLogin varchar(255) SET @OperatorLogin = 'DOMAIN\username' UPDATE dbo.ComplianceOperator SET Interactive = 1 WHERE OperatorLogin = @OperatorLogin
Additional Information
This is typically seen when a user that has been mistakenly set up as a service account tries to login and gets an access denied page with the following message:Your account does not allow you to access FlexNet Manager Suite interactively.
Please contact your administrator.
Please contact your administrator.
No ratings