rocketmq nohup: ignoring input and appending output to ‘nohup.out’
时间: 2023-11-15 11:56:46 浏览: 88
这个问题的意思是在使用 `nohup` 命令启动 RocketMQ 时,终端会输出 `ignoring input and appending output to ‘nohup.out’` 的提示信息,这是因为 `nohup` 命令会忽略输入并将输出追加到 `nohup.out` 文件中。这个提示信息并不影响 RocketMQ 的正常运行。
相关问题
centos使用nohup命令启动RocketMQ broker提示:nohup: ignoring input and appending output to ‘nohup.out’
这个提示是因为 nohup 命令会将标准输出和标准错误输出重定向到 nohup.out 文件中,而忽略输入。如果你想要在后台启动 RocketMQ broker,可以使用以下命令:
```
nohup sh bin/mqbroker -n localhost:9876 &
```
这样就可以将 RocketMQ broker 启动在后台,并将输出重定向到 nohup.out 文件中。
nohup: appending output to ‘nohup.out’ nohup: ignoring input and appending output to ‘nohup.out’
nohup命令是在Linux中用于在后台执行命令,并将输出信息重定向到nohup.out文件中的命令。当你在终端中使用nohup命令时,会出现"nohup: ignoring input and appending output to ‘nohup.out’"的错误信息,表示命令会忽略输入并将输出信息添加到nohup.out文件中。此外,你还提到了另一个错误信息"nohup: ignoring input and redirecting stderr to stdout",这表示命令会忽略输入并将标准错误输出重定向到标准输出。
所以,当你在终端看到"nohup: appending output to ‘nohup.out’ nohup: ignoring input and appending output to ‘nohup.out’"的输出时,说明nohup命令执行成功,命令将输出信息追加到nohup.out文件中并忽略输入。
阅读全文