首页 > 系统相关 >linux mqtt 安装配置

linux mqtt 安装配置

时间:2023-08-03 10:44:48浏览次数:44  
标签:config sudo etc mqtt mosquitto conf linux 安装

安装

sudo apt install mosquitto

配置密码用户

sudo mkdir -p /etc/mosquitto/config
sudo touch /etc/mosquitto/config/pwfile.conf
sudo mosquitto_passwd -b /etc/mosquitto/config/pwfile.conf qq 123456

配置文件

qtimes@AIBox-01-01-m:~$ cat /etc/mosquitto/mosquitto.conf
pid_file /var/run/mosquitto.pid
persistence true
persistence_location /var/lib/mosquitto/
log_dest file /var/log/mosquitto/mosquitto.log

listener 1883
protocol mqtt
listener 9001
protocol websockets

allow_anonymous false
password_file /etc/mosquitto/config/pwfile.conf

重启服务

sudo systemctl restart mosquitto
sudo service mosquitto status

*使用mqtt

*使用ws

标签:config,sudo,etc,mqtt,mosquitto,conf,linux,安装
From: https://www.cnblogs.com/wanqieddy/p/17602652.html

相关文章

  • Linux:user is not in the sudoers file. This incident will be reported 解决方法
    学习自:userisnotinthesudoersfile.Thisincidentwillbereported解决方法_一路奔跑94的博客-CSDN博客1、原因没有在权限文件中说明该用户具有sudo权限2、解决步骤1)以root身份去/etc/sudoers文件中,编辑vi/etc/sudoers2)在rootALL=(ALL)ALL之下添加一行xxxALL......
  • linux根据地址添加出站策略--脚本
    文件名称:add_policy.sh内容:#!/bin/bashmain(){num=1echo"<?xmlversion="1.0"encoding="utf-8"?><direct></direct>">direct.xml#read-p"请输入文件全路径名称:"ip_addrwhilereadlinedo......
  • [转]Linux下系统防火墙的发展历程和怎样学好防火墙(iptalbes和firewalld)
    原文地址:Linux下系统防火墙的发展历程和怎样学好防火墙(iptalbes和firewalld)-Repetition_Maximum-博客园有关firewalld和iptables详细使用的文章iptables详解firewalld详解=====================================华丽的分割线===================================== 1.......
  • 17.pyhton驱动电脑安装的zebra打印机机通过ZPL指令打印
    1#encoding:utf-823fromtkinterimport*4fromtkinterimportmessagebox5importwin32print6importtime7fromtkinterimportscrolledtext89#控制输入框只能输入数字且小于8位数10defvalidate_op(input_text):11ifinput_te......
  • linux环境部署nginx
    Linux环境下Nginx的离线安装与在线安装详细步骤参考地址:Nginx安装步骤——离线安装与在线安装详解_nginx依赖包_Olrookie的博客-CSDN博客CentOS7使用firewall-cmd打开关闭防火墙与端口以开放8080端口为例_firewall-cmd--add-port=8080/tcp--permanent_克豪的博客-CSDN博客一、......
  • 转载:国产linux系统使用 PageOffice 在线打开 word 文件
    一、客户端环境1、操作系统银河麒麟,中标麒麟,统信UOS2、芯片芯片(CPU):x86(Intel、兆芯),ARM(飞腾、鲲鹏),龙芯3、浏览器360安全浏览器奇安信uos自带浏览器4、wps版本wps专业版(11.8.x.xxxxx)国产版卸载wps命令dpkg-l|grepwps|awk'{print$2}'|xargssudoaptpurge......
  • SD-WebUI安装的时候的小波折
    1.外面与里面不一样 小小的眼睛大大的疑惑.jpg进到stable-diffusion-webui选中venv点击Delete后运行webui.bat就会重新创建了(没有这个文件夹就是没有虚拟环境,要还有错就继续找么(;´д`)ゞ)配置:SD-WebUI的.bat脚本报版本不对,外部查看是对的这种情况是因为python有个东西:venv......
  • 运维——centos7安装Docker详细步骤(无坑版教程)
    转自:https://cloud.tencent.com/developer/article/1701451一、安装前必读在安装Docker之前,先说一下配置,我这里是Centos7Linux内核:官方建议3.10以上,3.8以上貌似也可。注意:本文的命令使用的是root用户登录执行,不是root的话所有命令前面要加sudo1.查看当前的内核版本......
  • Linux系统笔记
    Linux系统笔记Linux环境搭建以及常用命令Linux常见目录框架dev/设备文件//linux下一切皆文件bin/系统程序sbin/管理员系统程序lib/系统程序库文件etc/系统程序和大部分应用程序的全局配置文件ust/Linux常用命令打开终端:ctrl+alt+t关闭终端:ctrl+alt+q放大:ctrl+......
  • vuetools的安装
    1、下载源码https://gitcode.net/mirrors/vuejs/vue-devtools/-/tree/master2、npminstall如果慢,就加上镜像npminstall--registry=https://registry.npm.taobao.org遇到的问题1:‘cross-env’不是内部或外部命令,也不是可运行的程序或批处理文件。解决1:cnpmicross-en......