-
-
Notifications
You must be signed in to change notification settings - Fork 577
Failed to connect to pgsql while the password contains char '@' #1653
New issue
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
Comments
Came looking for the same answer, thought mine was broken because my password contained The answer to my problem was in #1197 --> instead of passing the password as part of the connection string, set $PGPASSWORD. You have the |
got it, thanks |
I faced the same problem and tried several approaches but got nothing working. Finally, I decided to run a simple command in terminal and that got it working. What I tried that didn't work
What I tried that worked |
@CharaD7 , maybe:
WDYT? |
@mvk Looks good but seems like too much work. I will consider doing this when running from a script. Thank you! |
full password is Hi@3812
use
load database
from mysql://root:Hi@3812@localhost/enhscada_dc
into postgresql://postgres:Hi@3812@localhost/enhscada_dc
or
load database
from mysql://root:Hi%403812@localhost/enhscada_dc
into postgresql://postgres:Hi%403812@localhost/enhscada_dc
are all auth failed,
when cannot change the password, how can i fix it?
The text was updated successfully, but these errors were encountered: