It doesn’t seem like there is any documentation on this from what I can find. With that said it seems the easiest way would probably be to just setup SMTP by following the official documentation.
If that’s not an option you could edit the user table within the database.sqlite file. If you’re using docker this will be located in the .n8n directory where you started the container.
If you’re not familiar with interacting with databases, you can use a free GUI program like https://sqlitebrowser.org/
Using this tool you can visit the “Browse Data” tab and select user from the “Table” drop-down.
Replace the contents of the existing password with the following.
Hey Glitch
is the sample password standard for all n8n instances or is there a different encryption for each?
Saw there was an encryption key in the folder next to the sqlite database
Hello good morning!
Supposedly, if you don’t assign N8N_ENCRYPTION_KEY to your initial settings, n8n initially creates a random key for that variable, which is used to encrypt the original key (which I think would initially be user passwords are stored using hashing with bcrypt and then are encrypted with the key defined in N8N_ENCRYPTION_KEY )
In summary, this key is used to encrypt the others and obtain the correct hash of your key.
Therefore, for the key that @Dwayne_Taylor gave you for admin to work, it would only work if you have the same key N8N_ENCRYPTION_KEY=xxxx defined in your n8n instance.