是否可能/如何创建实时远程日志文件的本地副本以进行观看/跟踪?
设想: 我可以使用 ssh 和 tail 查看远程 Unix 机器上的日志,但无法安装软件。我想使用诸如 multitail 或其他日志查看器之类的东西来观看日志文件,这些查看器在远程计算机上不可用。当然,如果我能找到一种方法来创建正在写入的日志的实时本地副本,我就可以在本地计算机上使用我想要的任何软件。
问题: 为此目的是否可以执行诸如将 ssh 客户端的输出重定向到文件之类的操作,或者是否有其他方法来实现此目标?
Scenario:
I can watch logs on the remote Unix machine using ssh and tail but I cannot install software. I want to use something like multitail or other log viewer which is not available on the remote machine to watch the log files. Of course, if I could find a way to create live local copies of the logs as they are being written, I can use what ever software I want on the local machine.
Question:
Would it be possible to do something like re-direct the output of the ssh client to a file for this purpose or is there another way to accomplish this goal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
-l
选项:例如,
Multitail 似乎不支持 bash 进程替换。
Use the
-l
option:For example
Multitail doesn't seem to support bash process substitution, however.
是的,您可以使用 netcat 来完成此操作。请注意,如果您不将其合并到链中,日志文件将通过网络以未加密的方式发送,这对于某些日志文件可能存在安全风险。
这个想法是使用
netcat
,它基本上就像网络上的管道一样工作。1. 在保存日志文件的计算机上,执行:
2. 在想要进一步处理该文件的计算机上,执行:
或者您也可以写入文件在目标机器上使用“>”然后在该文件上使用 multitail。
端口号由您选择,大于1024的16位数字。
Yes, you can do this by using netcat. Note that if you do not incorporate it into the chain, the log file will be sent over the network unencrypted, which can be a security risk for some log files.
The idea is that you use
netcat
, which basically works like a pipe over the network.1. On the machine that holds the log file, do:
2. On the machine that wants to further process the file, do:
Or you can also write to a file on the target machine with '>' and then use multitail on that file.
The port number is to be chosen by you, a 16bit number larger than 1024.