是否可以检查应用程序开始使用端口并建立的时间

是否可以检查应用程序开始使用端口并建立的时间

从下面的netsta我们可以看到Air_metal应用程序正在使用端口50070并建立

# netstat -anp | grep :50070 | grep ESTABLISHED
tcp6       0      0 100.14.74.11:48148     100.14.74.12:50070     ESTABLISHED 29455/Air_metal

是否可以检查 Air_metal 应用程序开始使用端口 50070 并建立的时间

答案1

使用端口检查进程号;然后使用进程号,您可以读取 /proc//sched 并以毫秒为单位获取统计信息。

root@zaphod:/tmp# netstat -anp | grep -i postgr
tcp        0      0 0.0.0.0:5432            0.0.0.0:*               LISTEN      904/postgres
tcp6       0      0 :::5432                 :::*                    LISTEN      904/postgres
udp6       0      0 ::1:49729               ::1:49729               ESTABLISHED 904/postgres
unix  2      [ ACC ]     STREAM     LISTENING     13146    904/postgres         /var/run/postgresql/.s.PGSQL.5432
root@zaphod:/tmp# head /proc/904/sched
postgres (904, #threads: 1)
-------------------------------------------------------------------
se.exec_start                                :     346550579.786859
se.vruntime                                  :         67740.577403
se.sum_exec_runtime                          :         14266.931943
se.nr_migrations                             :                11174
nr_switches                                  :                69572
nr_voluntary_switches                        :                69407
nr_involuntary_switches                      :                  165
se.load.weight                               :              1048576
root@zaphod:/tmp#

所以我检查

heroot@zaphod:/tmp# dc
346550579 1000 / 60 / 60 / 24 / pq
4

我在此计算器上得到大约 4 天
如果我检查我的正常运行时间(我的 postgres 示例在启动时启动),那么它将相等(4 天)

root@zaphod:/tmp# w
 21:46:44 up 4 days, 18 min,  4 users,  load average: 0.29, 0.65, 0.72
USER     TTY      FROM             LOGIN@   IDLE   JCPU   PCPU WHAT
francois tty7     :0               Thu21    4days 28:10   0.05s /bin/sh /etc/xdg/xfce4/xinitrc -- /etc/X11/xinit/xserverrc
francois pts/1    tmux(7598).%0    Thu21    2:55m 30.29s 30.20s irssi
francois pts/2    tmux(7598).%1    Fri21    2.00s  0.21s 11.34s tmux
francois pts/3    tmux(7598).%2    18:17    2:37m  0.13s  0.13s -bash
root@zaphod:/tmp#
root@zaphod:/tmp# #IT IS OK

没关系。我的示例流程从 4 天开始就使用 is port。

相关内容