There are 3 ways to reset a password:
- Using email by “Forgot password” link on the login page. It works in SaaS by default. It can work in on-premise deployments, but you need to set up the email backend.
- Login as a superuser, go to
/admin/users/user
page, find your user and reset password: - Go to LS terminal, run
/label-studio-enterprise/label_studio_enterprise && python3 [manage.py](<http://manage.py>) shell_plus
u = User.objects.get(email='test@test.te')
u.set_password('new-password')
u.save()