The error is not that it can’t find the certificate, it does find it. The problem is that it is a self signed certificate that isn’t trusted.
Not sure if you are using docker or run it directly on digital ocean. When running directly on digital ocean then I would expect it to trust its own generated certificate. When running in docker you probably have to do some extra work to trust it.
An other solution is to ignore the untrusted certificate, add rejectUnauthorized: false to the ssl option.
You say it does find it - but I feel like that can’t be true, because I tried multiple paths and the error message stays the same. Is it possible all these paths work? If not then it’s producing that error without actually loading the certificate I guess
I have rejectUnauthorized: false on now by using 'default in wappler:
I trust you blindly, is this safe enough? Your link is saying not to do this
I’d like to join in on this thread. I’m testing out Digital Ocean’s Managed database features. So I created a new project in Wappler: Docker with NodeJS, no db setup, yet.
I add a db according to steps in tutorial by using connection string (tried both Public network and VPC Network.
I also added my own ip to the trusted sources in DO (also did this for a droplet, that I want to use for this DB)
Get error about self signed certificate.
Try workaround by selecting Custom SSL profile and in my case point towards folder with .crt from DO download:
I added a user with the legacy mysql 5 password, but to no avail!
For a Direct Database Connection I see no option to select Database MySQL 8, I only see this for the default database connection in the project settings. This setting is on:
Here are my settings, this should work since it seems like we have the exact same setup.
In my live production environment (because I still use the docker db for the local environment)
Under server actions → globals → database connections → db
Thanks for your reply, @karh! I checked things over again and it turns out that the fix mentioned in
Did fix my issue after all. Somehow the password encryption setting for my new legacy user did not persist and was still on MySQL 8+ mode. I have now successfully changed that to Legacy MySQL 5.x mode (mind you, the password will change upon this change) and now it works!
So do you still use the default SSL setting, @karh? I tried the custom setting, but got the same error message as you did. Default settings fixes this, but does not use the certificate? I’m not sure I have enough knowledge of SSL to understand if that is a potential issue or not.