Hi Guys, I know. It's crazy. Right? But I did accidentally remove the admin account for one of our iTop instances. What can I do?
Hello,
I suggest you to add the admin profile to another existing user directly in database:
select * from priv_urp_profiles; Will show your profiles
select * from priv_user; Will show your users.
The table priv_urp_userprofile will make the link between users and profiles.
update priv_urp_userprofile set profileid=xxx where userid=xxx; Should do the job.
Best regards, Ben
Log in to post a comment.
Hi Guys, I know. It's crazy. Right? But I did accidentally remove the admin account for one of our iTop instances. What can I do?
Hello,
I suggest you to add the admin profile to another existing user directly in database:
select * from priv_urp_profiles;
Will show your profiles
select * from priv_user;
Will show your users.
The table priv_urp_userprofile will make the link between users and profiles.
update priv_urp_userprofile set profileid=xxx where userid=xxx;
Should do the job.
Best regards,
Ben