I came across this post and thought what if I moved over our old SECRETs to the new instance as well.
- So I SSHed into my DO droplet
cd /opt/redash && cat env
- Copied the following lines:
REDASH_COOKIE_SECRET=SOME_VALUE_HERE
REDASH_SECRET_KEY=SOME_VALUE_HERE
- Now SSHed into my AWS EC2 instance and switched to root user
sudo -s
cd /opt/redash && vim env
- Pasted here the copied lines replacing the existing values and exited the editor saving changes.
-
docker-compose down && docker-compose up -d
to restart the services.
That’s it. It solved my issues.
1 Like