BBahmni 한국어 매뉴얼검색
한국어 번역 완료
한국어English

Lab Security and Access Control (OpenELIS)

Purpose and Benefits

<Brief Intro about Security in OpenELIS>

Built-in Roles

Role NameAccessNotes

Reset Password of a User

One can change the password of any user, by logging into the system as an Administrator, and then go to Administration &rarr; Manage Users. Select the user, and click on Edit. Now you can set a new password for the user.

If you are locked out as an Administrator because you forgot the password, then to reset it, you will need to fire the following Update query in the Lab Database.

# Connect to the clinlims database
> psql -Uclinlims clinlims
 
# Fire the following update query to change the password to 'adminADMIN!'
> update login_user set password = 'n2OrWHXVm/BQsgd1YZJoCA==' where login_name = 'admin';


# Sometimes the user password expires because date is in the past. In this case run the query (date format: YYYY-MM-DD):
> update login_user set password_expired_dt = '2025-06-30' where login_name = 'admin';

Table of Contents

관련 문서: Security Roles and Privileges
원문 정보

Bahmni Wiki · CC BY-SA 4.0

원문 보기 ↗