This was the error I get when zbx try to exec the step to get an https page
Web monitoring is not capable to use certains private certificates.
I see in src/zabbix_server/httppoller/httptest.c
/* Process self-signed certificates. Do not verify certificate. */
if(CURLE_OK != (err = curl_easy_setopt(easyhandle,CURLOPT_SSL_VERIFYPEER , 0)))
{
zabbix_log(LOG_LEVEL_ERR, "Error doing curl_easy_perform [%s]",
curl_easy_strerror(err));
return;
}
I think it is a CURL issue. But i cannot fix couse i'd never user curl. ¿CAPATH?
Web monitoring is not capable to use certains private certificates.
I see in src/zabbix_server/httppoller/httptest.c
/* Process self-signed certificates. Do not verify certificate. */
if(CURLE_OK != (err = curl_easy_setopt(easyhandle,CURLOPT_SSL_VERIFYPEER , 0)))
{
zabbix_log(LOG_LEVEL_ERR, "Error doing curl_easy_perform [%s]",
curl_easy_strerror(err));
return;
}
I think it is a CURL issue. But i cannot fix couse i'd never user curl. ¿CAPATH?
Comment