On remote UNIX machine I have running MySQL on UNIX socket and I want to have a connection to this MySQL on my local Windows machine.
Previously I used next command that works on my Mac:
ssh -nNT -L 127.0.0.1:3307:<remote_socket_path> <remote_user>@<remote_ip> -p <remote_port>
On Windows I tried various tools like Plink and had no success, all of those tools expects host:port setup and doesn't recognize a socket path.
So what am I doing wrong and how I can tunnel remote socket like I'm doing it on Mac using SSH command?