A cleaner workaround: qpidd --auth=no --ssl-cert-store-location localmachine
From: Decorps, Laurent Sent: 29 August 2012 12:58 To: '[email protected]' Subject: RE: [qpidd 0.18 win64] error Failed to initialise SSL listener I have found a work around... I am forcing the use of the localmachine store location... For some reasons (and I am no windows / SSL expert), the currentuser location does now work anymore... SslProtocolFactory::SslProtocolFactory(const SslServerOptions& options, const std::string& host, const std::string& port, int backlog, bool nodelay, Timer& timer, uint32_t maxTime) ... if (certStoreLocation == "currentuser") { flags = CERT_SYSTEM_STORE_LOCAL_MACHINE;//CERT_SYSTEM_STORE_CURRENT_USER; } else if (certStoreLocation == "localmachine") { flags = CERT_SYSTEM_STORE_LOCAL_MACHINE; } else if (certStoreLocation == "currentservice") { flags = CERT_SYSTEM_STORE_CURRENT_SERVICE; } else { QPID_LOG(error, "Unrecognised SSL certificate store location: " << options.certStoreLocation << " - Using default location"); } ... From: Decorps, Laurent Sent: 29 August 2012 11:12 To: [email protected]<mailto:[email protected]> Subject: [qpidd 0.18 win64] error Failed to initialise SSL listener Hello there, I am getting this error when I start qpidd with no-auth. Last week, this was working fine... A couple of windows updates have happened in the meantime... How should I go about investigating this ? Kind Regards
