Linux;如果我正在运行的程序使用某些端口,如何查找日志?

发布于 2024-09-25 11:36:59 字数 90 浏览 6 评论 0原文

我正在运行带有 csf 防火墙的 CentOS 5。我正在运行一个无法连接到另一台服务器的程序(我认为使用了一些被 csf 阻止的端口)。 “端口”的日志文件在哪里?

I am running CentOS 5 with csf firewall. I'm running a program that can't connect to another server (using some port that is blocked by csf I presume). Where is the log file for 'ports'?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

多像笑话 2024-10-02 11:36:59

Netstat 是用于获取端口和网络活动的命令。为了诊断服务器进程,我通常使用:

netstat -tln

这会在 tcp 模式侦听下产生端口编号。要识别关联的进程,您还可以使用 -p 来获取 pid。以下是 IANA 端口列表

Netstat is the command to use to get ports and network activity. To diagonise server processes I usually use:

netstat -tln

This yields port numbers in tcp mode listening. To identify associated processes you can also use -p to grab the pid. Here is the IANA ports list.

不打扰别人 2024-10-02 11:36:59

在搜索了更多线程后,我找到了答案。

# tail -f /var/log/messages

显示 UDP 消息,但不显示端口...嗯...

I found my answer right after searching a few more threads.

# tail -f /var/log/messages

Shows the UDP message but not the port.... Hmm....

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文