nohup ./agri_wrf_rttov.sh 202211${var}000000 > for.out 2>&1 &中 > for.out 2>&1 &分别是什么意思?
时间: 2024-06-01 12:07:09 浏览: 146
在Linux环境下,nohup是一个命令,用于在后台运行脚本或命令。"./agri_wrf_rttov.sh 202211${var}000000"是需要在后台运行的脚本或命令。
"> for.out"是Linux中的重定向符号,表示将命令的输出重定向到for.out文件中。
"2>&1"也是重定向符号,表示将标准错误输出重定向到标准输出中。
所以,"> for.out 2>&1 &"这个命令的意思是将"./agri_wrf_rttov.sh 202211${var}000000"这个命令的输出重定向到for.out文件中,并将标准错误输出也重定向到标准输出中,最后将这个命令放到后台运行。
相关问题
root@DESKTOP-0CU081I:/mysqld_exporter-0.12.1.linux-amd64# nohup ./mysqld_exporter -config.my-cnf=".my.cnf" 2>&1 1>/tmp/mysqld_exporter.log & [4] 1481 root@DESKTOP-0CU081I:/mysqld_exporter-0.12.1.linux-amd64# nohup: ignoring input and redirecting stderr to stdout [4]+ Exit 1 nohup ./mysqld_exporter -config.my-cnf=".my.cnf" 2>&1 > /tmp/mysqld_exporter.log root@DESKTOP-0CU081I:/mysqld_exporter-0.12.1.linux-amd64# tail -f /tmp/mysqld_exporter.log mysqld_exporter: error: unknown short flag '-c', try --help
根据您的命令输出及错误信息,您的问题可能是由于在选项 `-config.my-cnf` 之前多了一个 `-` 符号。请尝试使用以下命令,去掉多余的 `-` 符号:
```
nohup ./mysqld_exporter --config.my-cnf=".my.cnf" 2>&1 > /tmp/mysqld_exporter.log &
```
这个命令应该会启动mysqld_exporter,并将输出重定向到`/tmp/mysqld_exporter.log`文件中。如果您仍然遇到问题,请告诉我您的操作系统和mysqld_exporter版本,我会尽力帮助您解决问题。
使用这个命令nohup ./mysqld_exporter --web.disable-authentication=true --log.level=info --web.listen-address=:9104 --web.telemetry-path=/metrics 2>&1 1>/tmp/mysqld_exporter.log & 后台运行mysqld_exporter时,-log_slow_filter这个参数要加在命令中如何指定
要在命令中指定-log_slow_filter参数,只需要在命令中添加--config.my-cnf=path/to/my.cnf,然后在my.cnf文件中添加以下内容:
```
[mysqld_exporter]
log_slow_filter = my_filter_regex
```
将my_filter_regex替换为您想要的正则表达式。然后在启动命令中添加--config.my-cnf=path/to/my.cnf参数即可。完整的命令示例:
```
nohup ./mysqld_exporter --web.disable-authentication=true --log.level=info --web.listen-address=:9104 --web.telemetry-path=/metrics --config.my-cnf=path/to/my.cnf 2>&1 1>/tmp/mysqld_exporter.log &
```
阅读全文