Closed caiot744 closed 6 hours ago
This is not the place to post this issue. If you are in password mode your password is the ENV for AUTH_TOKEN
in the storage folder .env
file. If you are in multi-user mode you probably rolled your token and you can reset the account manually by opening a bash shell container and doing:
cd app/server/models
node
const {User} = require('./user.js');
await User.where() // get user id you want to reset
await User.update(userId, {password: "newpassword");
await User._update(userId, {seen_recovery_codes: false});
exit()
How are you running AnythingLLM?
Docker (remote machine)
What happened?
for some reason, when i insert the credentias it says: Error: Could not validate login.
i already refresh the stack on docker, somebody can help´me?
Are there known steps to reproduce?
No response