Monthly Archives: July 2024
Download and install Zabbix 7.0 LTS for Ubuntu 24.04 (Noble) Server, Frontend, Agent, MySQL, Apache
Default login password
Admin // zabbix
systemctl enable zabbix-server zabbix-agent apache2
Source: Download and install Zabbix 7.0 LTS for Ubuntu 24.04 (Noble) Server, Frontend, Agent, MySQL, Apache
1 Zabbix agent item keys list
The item keys are listed without parameters and additional information. Click on the item key to see the full details.
1 Zabbix agent
Source: 1 Zabbix agent
1 Creating an item -network
Creating an item
Source: 1 Creating an item
zabbix agent安裝(Ubuntu18.04) – 黑手的挨踢工作紀錄
netstat -anpt | grep zabbix
Zabbix Document
Linux shell script 產生隨機亂數指令用法範例 | ShengYu Talk
ffmpeg使用nohup &在后台运行时挂起问题解决_ffmpeg在后台运行-CSDN博客
ffmpeg 默认情况下启用与 stdin 的交互。在Mac OS X和Linux系统上,这会导致 ffmpeg 在后台运行的作业挂起。
方法一:
如果在指令中添加 -nostdin 选项会导致ffmpeg无法启用stdin交互,因此避免了挂起后台进程。
nohup ffmpeg -nostdin -i 源流地址 -c:v copy -c:v copy -f flv 推流地址 >> /dev/null 2>&1 &
1
方法二:
设置输入重定向 </dev/null
nohup ffmpeg -i 源流地址 -c:v copy -c:v copy -f flv 推流地址 >> /dev/null 2>&1 </dev/null &
1
如果对您有帮助不妨点赞关注一波~
————————————————版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/qq_37788558/article/details/108218037
ffmpeg使用nohup &在后台运行时挂起问题解决
Shell 手動執行成功,排程失敗 | Linux | 郭仕杰 CJ Kuo
Source: Shell 手動執行成功,排程失敗 | Linux | 郭仕杰 CJ Kuo
當在 Crontab 執行 shell 指令其中帶有客製化指令,呈現結果會是失敗的。
因 Crontab 排程中執行是不會載入此使用者的資訊,故無法正確執行客製化系統中的語法。
所以在 shell 第二行加以下程式碼
source /etc/profile
shell脚本:Syntax error: Bad for loop variable错误解决方法-CSDN博客
错误如下:
Syntax error: Bad for loop variable
分析:
从 ubuntu 6.10 开始,ubuntu 就将先前默认的bash shell 更换成了dash shell;其表现为 /bin/sh 链接倒了/bin/dash而不是传统的/bin/bash。
allen@allen-lql ~/workspace/script $ ls -l /bin/sh
lrwxrwxrwx 1 root root 4 Aug 12 14:29 /bin/sh -> dash
所以在使用sh执行检测的时候实际使用的是dash,而dash不支持这种C语言格式的for循环写法。
解决办法:
1、将默认shell更改为bash。(bash支持C语言格式的for循环)
sudo dpkg-reconfigure dash
在选择项中选No
2、直接使用bash检测:
bash -n xxx.sh
3、为了确保shell脚本的可移植性,直接更改shell脚本,使用shell支持的for循环格式:
for a in `seq $num`
refer :
https://blog.csdn.net/liuqinglong_along/article/details/52191382