Mysql VPN.
HI..how do I share or connect Mysql using a Internet private VPN? NOTE: I ms access as a front end....also Work bench to manage
Microsoft AccessVPNMySQL Server
Last Comment
David Favor
8/22/2022 - Mon
David Favor
1) You'll only do this if you'd like to reduce your connection speed down to VPN speed, usually much slower than raw connection speed.
2) If you require max connection speed, you'll create a TLS cert to encrypt your data flow.
So anyone can see the data flow then, except seeing the data is useless, as it's encrypted.
3) For fastest speed, you'll run your site/app code on the same machine with your MariaDB/MySQL instance, so your data flow runs at RAM speed, rather than network speed.
2) If you require max connection speed, you'll create a TLS cert to encrypt your data flow.
So anyone can see the data flow then, except seeing the data is useless, as it's encrypted.
3) For fastest speed, you'll run your site/app code on the same machine with your MariaDB/MySQL instance, so your data flow runs at RAM speed, rather than network speed.