This message was deleted.
# k3s
a
This message was deleted.
c
1. don’t use
@here
there are 5k people in this channel 2. I have no idea how you’re using remotedialer. Are you using it as a library in your own project? What are you trying to do?
b
Yes we need to avoid punching a hole in the security or firewall, What we are trying is Access the psql using remote dialer framework and access the cluster So client ll be running in psql and server in another VM From server trying to access the PSQL via remote tunnel
l
Copy code
psql --host="http://<remote-dialer-server-ip>:8123/client/foo/tcp/127.0.0.1:5432" --username=postgres --password
Password:
psql: error: could not translate host name "http://<remote-dialer-server-ip>:8123/client/foo/tcp/127.0.0.1:5432" to address: nodename nor servname provided, or not known
i was successfully able to do http call, but tcp as above fails @creamy-pencil-82913
just my concern on to handle tcp request via remote dialer
c
I don’t think the postgres client supports connecting to URLs, does it? It expecting a hostname and port, not a URL.
b
Yes it need port for host, remote dialer will not support right