加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
start.sh 469 Bytes
一键复制 编辑 原始数据 按行查看 历史
YunFei 提交于 2024-07-10 17:11 . 视频流程上传完成
#!/bin/sh
#
# Start the service....
#
#创建ipc通信所需要的路径
mkdir /tmp/ipc/unixsock -p
mkdir /tmp/ipc/msgqueue -p
mkdir /tmp/ipc/msgqueue/peer -p
chmod 777 /tmp/ipc/unixsock
chmod 777 /tmp/ipc/msgqueue
chmod 777 /tmp/ipc/msgqueue/peer
#搜索进程启动-》mqttBroker启动-》上报进程启动-》stm32_sever+modbus_sever-》http上报-》阿里云上报-》视频流启动
search_service &
usleep 100
report_service &
sleep 1
stm32_service &
exit 0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化