Para garantir que seu aplicativo seja desassociado de seu terminal - para que ele não interfira nos comandos de primeiro plano e continue a ser executado após o logout - nohup
garante que nem stdin nem stdout nem stderr sejam dispositivos semelhantes a terminal . A documentação descreve as ações necessárias:
If the standard output is a terminal, all output written by the named utility to its standard output shall be appended to the end of the file nohup.out in the current directory. If nohup.out cannot be created or opened for appending, the output shall be appended to the end of the file nohup.out in the directory specified by the HOME environment variable. If neither file can be created or opened for appending, utility shall not be invoked.
If the standard error is a terminal, all output written by the named utility to its standard error shall be redirected to the same file descriptor as the standard output.
Você redirecionou o stdout para um arquivo quando digitou > exhibitor.out
na sua linha de comando. Se você está certo em fazer com que o stderr do seu aplicativo seja direcionado para o mesmo arquivo que o stdout, você não precisa fazer mais nada. Ou você pode redirecionar o stderr para um arquivo diferente, adicionando um argumento como 2> exhibitor.err
. (Obrigado a um usuário desconhecido - minhas notificações não mostraram um nome - por sugerir a inclusão dessa alternativa.)