Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用软件远程访问 MySQL。我可以通过 https 连接到数据库以确保连接安全吗?
例如,使用主机https://mydomain.com。
HTTPS 用于连接到 Web 服务器,而不是数据库服务器。请参阅以下 MySQL 文档:
使用 SSL 进行安全连接
如何从应用程序中使用它取决于语言和驱动程序。有关如何使用带有 MySQLi 扩展的 PHP 来执行此操作,请参阅此问题。