We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
brain fried will fill out later as needed but ill try to give the gist here.
my password for postgres has a ' in it.
'
the environment vars passes in a long string which go then parces.
one of those is where you set the password
ive set it using password=$(cat p) in bash but that doesnt work with systemd env vars.
password=$(cat p)
i changed the db password and it is fine for me, but maybe this is worth fixing?
The text was updated successfully, but these errors were encountered:
Try %27 See this https://en.wikipedia.org/wiki/Percent-encoding and this https://www.postgresql.org/docs/current/libpq-connect.html Do a find in the postgres link to drop right to the section "The connection URI needs to be encoded with percent-encoding"
%27
Example Password iL0v3ch'ck3n
Percent-encoded Password iL0v3ch%27ck3n
Sorry, something went wrong.
No branches or pull requests
brain fried will fill out later as needed but ill try to give the gist here.
my password for postgres has a
'
in it.the environment vars passes in a long string which go then parces.
one of those is where you set the password
ive set it using
password=$(cat p)
in bash but that doesnt work with systemd env vars.i changed the db password and it is fine for me, but maybe this is worth fixing?
The text was updated successfully, but these errors were encountered: