安全

A.9. MySQL 5.0 FAQ — 安全

Questions

  • 26.9.1:
    在哪里能找到关于MySQL安全的资料?

    Where can I find documentation that addresses security issues for MySQL?

  • 26.9.2:
    MySQL 5.0是否一直都支持SSL?

    Does MySQL 5.0 have native support for SSL?

  • 26.9.3:
    MySQL 二进制发行版中是否已经内置SSL支持了,或者我是否需要重新编译MySQL 二进制发行版才能支持它呢?

    Is SSL support be built into MySQL binaries, or must I recompile the binary myself to enable it?

  • 26.9.4:
    MySQL 5.0是否内置类似LDAP目录的验证呢?

    Does MySQL 5.0 have built-in authentication against LDAP directories?

  • 26.9.5:
    MySQL 5.0是否支持基于角色的权限控制(RBAC)呢?

    Does MySQL 5.0 include support for Roles Based Access Control (RBAC)?

Questions and Answers

26.9.1:
Where can I find documentation that addresses security
issues for MySQL?

最好从这里开始: Section 5.7, “General Security Issues”.

以下是从MySQL文档中能找到的关于安全方面的信息:

The best place to start is Section 5.7, “General Security Issues”.

Other portions of the MySQL Documentation which you may find
useful with regard to specific security concerns include the
following:

26.9.2:
Does MySQL 5.0 have native support for SSL?

大部分MySQL 5.0二进制发行版都支持客户端-服务端的SSL连接.我们现在不能在所有的平台下都编译支持新的 YaSSL 库,因为它比较新,不能被所有的平台都支持.详情请看 Section 5.9.7, “Using Secure Connections”.

Most 5.0 binaries have support for SSL
connections between the client and server. We can't
currently build with the new YaSSL library everywhere, as
it's still quite new and does not compile on all platforms
yet. See Section 5.9.7, “Using Secure Connections”.

You can also tunnel a connection via SSH, if (for instance)
if the client application doesn't support SSL connections.
For an example, see Section 5.9.7.5, “Connecting to MySQL Remotely from Windows with SSH”.

26.9.3:
Is SSL support be built into MySQL binaries, or must I
recompile the binary myself to enable it?

大部分MySQL 5.0二进制发行版都支持客户端-服务端的SSL连接来加强安全性,可信性.不过 YaSSL 库当前还没有编译到所有的平台中.详情请看 Section 5.9.7, “Using Secure Connections”.

Most 5.0 binaries have SSL enabled for
client-server connections that are secured, authenticated,
or both. However, the YaSSL library currently does not
compile on all platforms. See
Section 5.9.7, “Using Secure Connections”, for a complete listing
of supported and unsupported platforms.

26.9.4:
Does MySQL 5.0 have built-in authentication
against LDAP directories?

不.这在MySQL的开发计划路线中称为"波动的特性",这意味着我们会在将来实现这个功能,但还不能确定什么时候才能完成.

No. Support for external authentication methods is on the
MySQL roadmap as a “rolling feature”, which
means that we plan to implement it in the future, but we
have not yet determined when this will be done.

26.9.5:
Does MySQL 5.0 include support for Roles Based
Access Control (RBAC)?

不.这在MySQL的开发计划路线中称为"波动的特性",这意味着我们会在将来实现这个功能,但还不能确定什么时候才能完成.

No. Support for roles is on the MySQL roadmap as a
rolling feature”, which means that we plan to
implement it in the future, but we have not yet determined
when this will be done.

技术相关: