简体   繁体   中英

Can't connect to MySQL database using Coda 2

I am hosting a website on a Raspberry Pi that has a MySQL server running.

Using Terminal on Mac, I can remotely ssh into the RPi and then connect to the server.

I am trying to remotely connect to the server using Coda 2, but it doesn't seem to be working. I chose the 'via SSH' option, using the following details:

在此输入图像描述

(I've removed my login details)

However, using the exact same details with SequelPro, it works just fine?

在此输入图像描述

What is going on here? Why is it not working for Coda?

This is a known issue with Coda 2. I'm going to assume you're using SSH keys, if not please elaborate.

Open ~/.ssh/config , you'll need to use sudo vim/nano/emacs because its a protected file. Then add these two lines:

Host 192.168.1.108
IdentityFile /the/path/to/your/ssh/key

This asserts the identification of the SSH key.

Reference to the Coda docs: here

Please use server as 192.168.1.108 (your server ip address) not 127.0.0.1

Thanks

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM