DB SSH Connection
User select db ssh Assistant To **connect to a MySQL database via SSH**, you typically follow this process: — ### ✅ 1. **SSH into the server** (where MySQL is installed): ssh -i /path/to/private-key user@server-ip -p port Example: ssh -i ~/.ssh/id_rsa nethues@116.203.33.80 -p 1322 — ### ✅ 2. **Login to MySQL**: Once inside the server: mysql […]