This message was deleted.
# ask-for-help
s
This message was deleted.
x
Sorry, there is no formal way to reset your password, there is a tricky way: 1. connect to the postgresql database 2. execute the following SQL to clear the email field of the first user:
Copy code
UPDATE "user" set email = '' where id = 1;
3. Execute the following command to get the method to initialize yatai admin user:
Copy code
helm get notes yatai -n yatai-system
m
I understand the first part however I don't get the second part Let' say I have 2 users with usernames:
apple
and
pear
I have access to
apple
but I lost password for
pear
Based on your instruction: 1. I connect to postgresql DB 2. I perform query to reset the email for user
pear
3. What happens here? What does this helm command do?
x
1. What happens here? What does this helm command do?
Just show you how to init the first yatai user with the password
m
Ok, so I can init only the first user but not anyone created later, right?
x
Yes, just init first user not create anyone
m
I see So in case I want to reset password for any other user that is not the first user - I can't do it for now?