Did you use the DB and SSH passwords that Forge sent you in the email?
Can't connect Sequel Pro to Forge
I've connected to Forge so many times from Sequel Pro, and now, out of the blue, it won't connect. But I can connect with the command line.
At first, the error Sequel Pro gave me was something like this. So I ran chmod 600 ~/.ssh/id_rsa and tried connecting again. Sequel Pro asked for my SSH password, and the password I entered didn't work.
So I generated a new SSH key and tried again. Again, the password isn't working, and yet I can still connect from the command line.
Any ideas please? It seems pretty weird since it has worked before.
Hi @JennySwift and @ejdelmonico,
I found a resolution to my issue – hopefully it'll help with yours.
From the command line – I was originally in ~/.ssh but I'm not sure it makes a difference – run:
ssh-add -l
If you see the following output…
The agent has no identities.
…run:
ssh-add
You may be prompted to enter your passphrase for your private key…
Enter passphrase for /Users/[username]/.ssh/id_rsa:
…in which case, enter your key passphrase and press enter.
You should see something similar to the following output:
Identity added: /Users/[username]/.ssh/id_rsa (/Users/[username]/.ssh/id_rsa)
You can confirm your identity was added by re-running ssh-add -l, which should return something similar to the following output:
4096 SHA256:1234ABCabcETC /Users/[username]/.ssh/id_rsa (RSA)
At this point, try connecting to your Forge database again through Sequel Pro.
With any luck, you'll reconnect without issue.
Good luck!
Please or to participate in this conversation.