zmstone
zmstone
maybe the issue has been fixed in 0.4.29: https://github.com/emqx/emqtt-bench/pull/276 please give it a try @nuomi666
this is because the certificate is issued for `*.domain.net` while your actual server is at `127.0.0.1`. you should turn off "TLS Verify" if you want to skip strict hostname check.
Hi @mrAsadi Sorry, this seems to be a bug. We cannot turn off TLS verify. Before we can fix it, is the workaround: 1. configure DNS to match the domain...
> thankyou [@zmstone](https://github.com/zmstone), all steps you that you mentioned is already done, but still got the same error is it a wildcard certificate? could you try a non-wildcard ?
> > > thankyou [@zmstone](https://github.com/zmstone), all steps you that you mentioned is already done, but still got the same error > > > > > > is it a wildcard...
it's because the emqtt process is shutdown. there are 2 options: 1. trap exit (handle EXIT messages) 2. unlink, then monitor (handle DOWN messages) you'll probably need to catch the...
maybe share the crash log?
Hi @sk-lemken > The [post](https://elixirforum.com/t/any-recommendations-on-a-mqtt-client-for-elixir/41028/4) mentioned to Process.flag(:trap_exit, true). Right, this is also what I suggested above as "1. trap exit (handle EXIT messages)" > why is the behaviour in...
@sk-lemken I'm afraid I'll need you to share the exact EXIT signal. `emqtt` never complains when `host` is missing, because it has a default host which is `{127,0,0,1}`. For example:...