問題タブ [emq]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
mqtt - Mosquitto - EMQX ブリッジ接続名
1) Mosquitto ブリッジ接続名を決定する方法。
以下に記述されたスニペットは、EMQx ドキュメント ( http://emqtt.io/docs/v2/bridge.html#mosquitto-conf )からのものです。
接続名 - emqttd は何に基づいて書かれていますか?
2) ホスト 172.22.25.53 およびポート 2883 の EMQX から tcp 接続を開いています。同じシステムから接続しようとすると。それは絶対にうまくいきます。しかし、別のシステムから、このエラーが発生します
私の mosquitto.conf ファイルは次のとおりです。
ubuntu - emqttでSSLを暗号化する
私は Emqtt 2.3.3 バージョンを使用しています。暗号化を使用してsslを実装しようとしています。以下の手順を使用して同じことを実装しています
sudo apt-get update,sudo apt-get install software-properties-common,sudo add-apt-repository ppa:certbot/certbot,sudo apt-get update,sudo apt-get install certbot
sudo certbot certonly --standalone -d example.com openssl verify -CAfile /etc/letsencrypt/live/$domain/chain.pem /etc/letsencrypt/live/zhengyupan.de/cert.pem
/etc/letsencrypt/live/$domain/cert.pem: OK
emq listener.ssl.external.keyfile = /etc/letsencrypt/live/$domain/privkey.pem listener.ssl.external.certfile = /etc/letsencrypt/live/$domaion/fullchain.pem で以下の構成を変更しました
cat /etc/ssl/certs/DST_Root_CA_X3.pem /etc/letsencrypt/live/$domain/chain.pem > ca.pem
mosquitto_sub -t abc -h $domain -p 8883 -d --cafile ~/ca.pem
購読すると、接続がタイムアウトしたなどのエラーが発生します