Forum Discussion

Former_Member's avatar
Former_Member
Ideator I
9 years ago

How to disable admin account in ARAS Innovator 11?

Im new to this PLM sofware. Trying to program the open source version. I was able to get most of it sorted out but i couldnt find anywhere how to disable admin account. Any help appreciated. I cant use the account without admin disabled. Vijay

2 Replies

  • Hi Vijay, You can also enable and disable user login via SQL:
    -- enable login
    update innovator.[user] set logon_enabled='1' where login_name in ('admin','root')
    
    -- disable login
    update innovator.[user] set logon_enabled='0' where login_name in ('admin','root')
    Note: Do not disable the vadmin user, or you will encounter issues with vault permission. Eli Aras Labs Software Engineer
  • Search for admin user, lock it and on left side there is checkbox "Enabled" untick it.