weeweetan
weeweetan
Hello, is the shutting down status never exited? I tested it here. After reloading, it completely exited in about 1 minute. According to the gdb information you provided, the shutting...
1. When the problem occurs, there are still about 150G of available memory,total memory 256G 2. Trying to repeatable this issue 3. ”QAT driver fails to load“, can I find...
@mcdullbloom yes, same problem, so I need the developer to confirm why these lines are added
@mcdullbloom after receiving the response, client calls the sleep function to block
ssl = SSL_new(ctx); SSL_set_fd(ssl, sock); if (SSL_connect(ssl) 0) { buffer[bytes] = 0; printf("%s", buffer); } } sleep(10000); SSL_free(ssl); close(sock); implement a simple client like this
Did you configure port 443 in the stream block? @hardikpatel9 ``` stream { upstream backend { server xx.xx.xx.xx; } server{ listen 443 ssl; ssl_certificate xx.crt; ssl_certificate_key xx.key; proxy_pass backend; }...