Suspended iDash User
search cancel

Suspended iDash User

book

Article ID: 420506

calendar_today

Updated On:

Products

iDash Workload Automation

Issue/Introduction

 The idashAdm user is suspended is there a way to remove the suspension?

Resolution

The only way to remove the suspended idashAdm user is to delete the existing entry and then add it back.

Please run the following delete statement:

delete from idash_config where type = 'user' and id = 'idashAdm' and deleted = 0;

Then insert the following three rows to recreate the idashAdm user:

INSERT INTO idash_config (server, type, id, owner, tag, value, edited, deleted)
VALUES
('primary', 'user', 'idashAdm', 'idashAdm', 'z.20010101000000', 'ENC(4loN89pH/NUtR9GLLuGkrg==)', 1160435872, 0);

INSERT INTO idash_config (server, type, id, owner, tag, value, edited, deleted)
VALUES
('primary', 'user', 'idashAdm', 'idashAdm', 'idash.user.name', 'idashAdm', 1160435872, 0);

INSERT INTO idash_config (server, type, id, owner, tag, value, edited, deleted)
VALUES
('primary', 'user', 'idashAdm', 'idashAdm', 'idash.user.idash.admin.privilege', 'true', 1160435872, 0);