当前位置:   article > 正文

CentOS7.8 安装chirpstack日志_centos安装 chirpstack

centos安装 chirpstack

安装mosquitto

1.添加EPEL软件包安装源:yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
2.安装mosquitto:yum install mosquitto
3.配置mosquitto

#创建密码文件
touch /etc/mosquitto/pwfile
#创建策略文件
touch /etc/mosquitto/aclfile
#创建日志目录
mkdir /var/log/mosquitto
#创建日志文件
touch /var/log/mosquitto/mosquitto.log
#创建本地持久化文件目录
mkdir /var/lib/mosquitto
#创建chirp用户
mosquitto_passwd /etc/mosquitto/pwfile chirp
#输入chirp用户的密码

vi /etc/mosquitto/mosquitto.conf
# 修改以下项
#持久化配置
persistence true

persistence_location /var/lib/mosquitto/

#日志文件配置
log_dest file /var/log/mosquitto/mosquitto.log

#用户名密码认证配置
allow_anonymous false

password_file /etc/mosquitto/pwfile

acl_file /etc/mosquitto/aclfile
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  1. 配置用户策略:vi /etc/mosquitto/aclfile
user chirp  #用户chirp
topic chirpstack   #可对主题chirpstack读写
  • 1
  • 2
  • 测试mosquitto
    接收端进程
    mosquitto_sub -t <topic> -u <user> -P <password>
    发布端进程
    mosquitto_pub -t <topic> -m <message> -u <user> -P <password>
  1. 日志查看:tail -f /var/log/mosquitto/mosquitto.log

安装gateway-bridge

1.新建一个目录,下载redhat安装包到该目录 wget https://artifacts.chirpstack.io/downloads/chirpstack-gateway-bridge/chirpstack-gateway-bridge_3.9.2_linux_386.rpm
2.安装rpm:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/171194
推荐阅读
相关标签
  

闽ICP备14008679号