由于我的 Debian 服务器上的最新 openssl 升级,我的 mysql 客户端无法连接并给出以下消息
SSL connection error: error:14082174:SSL routines:SSL3_CHECK_CERT_AND_ALGORITHM:dh key too small
Run Code Online (Sandbox Code Playgroud)
我猜这是为了防止Logjam攻击。
感谢https://weakdh.org/sysadmin.html,我知道如何生成更强的 Diffie-Hellman 参数。但是,我没有找到任何 MySQL 配置选项来实际使用它们。
有人知道吗?
我们正在使用 apache 代理来使我们的应用程序服务器能够通过 Internet 访问特定的网站。设置如下:
application servers --> apache proxy --> Internet website
Run Code Online (Sandbox Code Playgroud)
一些请求失败并在应用程序服务器日志中出现以下错误:
<head>
<title>502 Proxy Error</title>
</head><body>
<h1>Proxy Error</h1>
<p>The proxy server received an invalid
response from an upstream server.<br />
The proxy server could not handle the request <em><a href="/link">POST
nbsp;/link</a></em>.<p>
Reason: <strong>Error reading from remote server</strong></p></p>
</body>
Run Code Online (Sandbox Code Playgroud)
以及 apache error.log 文件中的以下调试日志:
[Mon May 20 09:57:54 2013] [debug] mod_proxy_http.c(56): proxy: HTTP: canonicalising URL //myURL.com
[Mon May 20 09:57:54 2013] [debug] proxy_util.c(1506): [client 172.20.101.71] proxy: https: found worker …Run Code Online (Sandbox Code Playgroud) ftp 服务器是否可以侦听除 21(任何 FTP 客户端发起连接的默认控制端口)之外的任何其他端口?如果是,客户端如何知道它必须在哪个端口上发起连接?
在服务器上使用非默认控制端口是否违反 RFC?请注意,我不是在询问服务器端数据端口。
谢谢桑卡尔