码迷,mamicode.com
首页 > 其他好文 > 详细

前端调用mqtt不能使用1883端口的问题

时间:2020-05-23 20:10:54      阅读:534      评论:0      收藏:0      [点我收藏+]

标签:配置   web   匿名   audio   nbsp   服务器   squit   display   监听   

不知为何,前端ws访问1883端口总是失败

在阿里云服务器配置了mosquitto消息服务器

添加更改配置文件 /etc/mosquitto/conf.d/myconfig.conf

 1 # 配置mosquitto支持websocket,且监听端口号为8083
 2 port 1883
 3 listener 8083
 4 protocol websockets
 5 
 6 # 关闭匿名访问,客户端必须使用用户名
 7 allow_anonymous false
 8 
 9 #指定 用户名-密码 文件
10 password_file /etc/mosquitto/pwfile.txt

这样,前端就可以用 client = mqtt.connect(ws://120.79.x.x:8083,options)  来访问了

前端调用mqtt不能使用1883端口的问题

标签:配置   web   匿名   audio   nbsp   服务器   squit   display   监听   

原文地址:https://www.cnblogs.com/nuister/p/12944058.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!