Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的 Linux VPS 上构建一个服务,它侦听某个 UDP 端口并对捕获的(文本)消息执行某些操作。此处理包括将消息附加到本地存储的 txt 文件并将其作为 http 发送,并带有一个 post 变量到另一台服务器。
我已经查看了 Nginx,但目前可以看到该服务器只能绑定接收 http 数据包。虽然是异步的。
在 linux 上实现这种监听服务的最佳方法是什么?哪个有能力进行上述处理?
例如 node.js 有可能吗?看起来不错
为简单起见,您可以使用 xinetd,对于应用程序,您可以使用任何脚本语言,这将从标准输入读取数据包并将其保存到文件中。