nohup java -jar pgcz.jar >nohup.out 2>&1 &
时间: 2023-11-16 07:57:46 浏览: 110
这是一个在Linux系统下运行Java程序的命令。其中nohup表示不挂断地运行命令,即使终端关闭也不会停止程序的运行;java -jar pgcz.jar表示运行pgcz.jar这个Java程序;>nohup.out表示将程序的标准输出重定向到nohup.out文件中;2>&1表示将标准错误输出重定向到标准输出中,即一起输出到nohup.out文件中。最后的&表示将程序放到后台运行,不占用当前终端。
这个命令的作用是在后台运行Java程序,并将程序的输出和错误信息重定向到nohup.out文件中,以便于查看和调试程序。
相关问题
nohup java -jar xxx.jar --server.port=8081 > nohup.out 2>&1 & 啥意思
这是一个在Linux系统下运行Java应用程序的命令。其中nohup命令表示不挂断地运行命令,即使终端关闭或者用户退出也不会影响命令的执行。java -jar xxx.jar表示运行一个名为xxx.jar的Java应用程序。--server.port=8081表示指定应用程序的端口号为8081。> nohup.out 2>&1 &表示将应用程序的输出重定向到nohup.out文件中,并将标准错误输出也重定向到nohup.out文件中,最后将应用程序放到后台运行。
nohup java -jar app.jar > /dev/null 2>&1 &
&1 &
This command starts a Java application in the background, redirects standard output to /dev/null (which discards it), redirects standard error to standard output, and detaches the process from the terminal by using nohup and &. This allows the application to continue running even if the terminal is closed, and prevents it from being terminated by the HANGUP (SIGHUP) signal.
阅读全文