我们有网上购物网站。当我要结帐页面时,我收到这样的错误“错误:14094410:SSL 例程:SSL3_READ_BYTES:sslv3 警报握手失败(35)”
从 apache 错误日志中,我可以看到一些连接到 api.paypal.com 的尝试。这是我的 apache 错误日志的一部分
* About to connect() to api.paypal.com port 443 (#0)
* Trying 66.211.168.123... * connected
* Connected to api.paypal.com (66.211.168.123) port 443 (#0)
* successfully set certificate verify locations:
* CAfile: none
CApath: /etc/ssl/certs
* error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure
* Closing connection #0
Run Code Online (Sandbox Code Playgroud)
当我尝试使用 curl 连接到 api.paypal.com 时,我收到了这样的错误
curl -iv https://api.paypal.com/
* About to connect() to api.paypal.com port 443 (#0)
* Trying 66.211.168.91... connected
* Connected to api.paypal.com (66.211.168.91) port …
Run Code Online (Sandbox Code Playgroud) 我有一个具有以下配置的 LAMP 服务器。
CPU : Intel(R) Xeon(R) CPU
内存:32GB
硬盘:80 GB
在虚拟环境中运行。
服务器中的所有东西都运行得很顺利。但是我注意到 RAM 使用量是服务器每天都在无缘无故地增加。
这是我服务器上的当前内存使用情况。
# free -g
total used free shared buffers cached
Mem: 31 13 17 0 0 10
-/+ buffers/cache: 1 29
Swap: 2 0 2
Run Code Online (Sandbox Code Playgroud)
您可以在下面看到过去 8 周的内存使用情况。 http://i.stack.imgur.com/543jh.png
我执行了以下命令来查找每个进程消耗的内存量。
# ps -eo size,pid,user,command --sort -size | awk '{ hr=$1/1024 ; printf("%13.2f Mb ",hr) } { for ( x=4 ; x<=NF ; x++ ) { printf("%s ",$x) } print "" }'
0.00 Mb COMMAND
2253.62 …
Run Code Online (Sandbox Code Playgroud)