How do I notify linode that a guide has an error in it?
I was doing the bitwarden guide and all went well until disabling user signup. It started throwing problems about a cipher being wrong. After a bit of trial and error I realized that there is a problem with the guide.
At the beginning, there is this command:
sudo docker run -d --name bitwarden -v /srv/bitwarden:/data -e WEBSOCKET_ENABLED=true -p 127.0.0.1:8080:80 -p 127.0.0.1:3012:3012 --restart on-failure bitwardenrs/server:latest
Later on in the guide you remove that instance and then reinstall it with another flag set:
sudo docker run -d --name bitwarden -v /srv/bitwarden:/data -e WEBSOCKET_ENABLED=true -e SIGNUPS_ALLOWED=false -p 127.0.0.1:8080:80 -p 127.0.0.1:3012:3012 --restart on-failure bitwardenrs/server:1.13.1
Notice the last line went from bitwardenrs/server:latest to bitwardenrs/server:1.13.1. This forces 1.13.1 to be installed instead of the newer version, causing a mismatch from the data originally created. Changing the last line to bitwardenrs/server:latest on the second command fixes the issue.
3 Replies
You can file a support ticket at
https://cloud.linode.com/support/tickets
Categorize it as General/Account/Billing.
-- sw
While @stevewi's answer is valid, you can cut out the middleman and just report an issue via the guide itself. Our docs are publicly hosted on Github, so each page has an option to report an issue, view the file, or edit the file to submit a pull request with your edits. This is basically what Support would be doing on your behalf.
If you'd like, we can do this for you, or you have to option.
I submitted a PR (hopefully correctly)
https://github.com/linode/docs/pull/4089