I'm trying to migrate mysql to postgres using pgloader, since I'm using window so, I installed pgloader in windows linux subsystem, and I have used following command to migrate the DB pgloader mysql://root@localhost/f1db pgsql://postgres@localhost:5433/f1db
KABOOM!
FATAL error: Failed to connect to pgsql at "localhost" (port 5433) as user "postgres": Server requested md5-password authentication, but no password was given.
An unhandled error condition has been signalled:
Failed to connect to pgsql at "localhost" (port 5433) as user "postgres": Server requested md5-password authentication, but no password was given.
What I am doing here?
Failed to connect to pgsql at "localhost" (port 5433) as user "postgres": Server requested md5-password authentication, but no password was given.
Waiting for the monitor thread to complete.
Please tell that how to pass password for both MYsql and Postgres in the command line and if I have @ in my password how to use it in the command because we already have user@localhost in the command.