标签:err NPU name stderr stdin out 错误 ash inpu
在启动weblogic的时候我们经常看到如下的命令:
nohup java -jar /opt/apps/$APP --server.port=$SERVER_PORT >/var/log/$APP_NAME/deploy.log 2>&1 &
其中 0、1、2分别代表如下含义:
0 – stdin (standard input)
1 – stdout (standard output)
2 – stderr (standard error)
nohup+最后面的& 是让命令在后台执行
>deploy.log 是将信息输出到deploy.log日志中
2>&1 是将标准错误信息转变成标准输出,这样就可以将错误信息输出到deploy.log 日志里面来。
标签:err NPU name stderr stdin out 错误 ash inpu
原文地址:https://www.cnblogs.com/nxjblog/p/12401575.html