User Tools

Site Tools


uptime

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
uptime [2015/11/12 12:46] luke7858uptime [2024/05/23 07:26] (current) – external edit 127.0.0.1
Line 1: Line 1:
-**__Server uptime__**+==== Process Uptime ==== 
 +Find the process ID of the master (parent process), then: 
 +<sxh bash> 
 +ls -ld /proc/3380 
 +</sxh> 
 +Output looks like: 
 +<sxh bash> 
 +dr-xr-xr-x 8 root root 0 Nov 12 23:05 /proc/3380 
 +</sxh> 
 +or 
 +<sxh bash> 
 +ps -eo user,pid,cmd,etime,ppid | grep http 
 +</sxh> 
 +<sxh bash> 
 +ps -eo user,pid,cmd,etime,ppid | grep service 
 +</sxh> 
 +Show JUST the master process: 
 +<sxh  bash> 
 +ps -eo user,pid,cmd,etime,ppid | grep -v grep | grep http | grep root 
 +</sxh> 
 + 
 +Output is simlar: 
 +<sxh bash> 
 + 3380 nginx: master process /usr/  1-02:50:02 
 + 8543 nginx: worker process          02:50:10 
 + 8544 nginx: worker process          02:50:10 
 + 8545 nginx: worker process          02:50:10 
 + 8546 nginx: worker process          02:50:10 
 + 8547 nginx: worker process          02:50:10 
 + 8548 nginx: worker process          02:50:10 
 + 8549 nginx: worker process          02:50:10 
 + 8550 nginx: worker process          02:50:10 
 +</sxh> 
 + 
 +The bit we are interested in is the master process: 
 +<sxh bash> 
 + 3380 nginx: master process /usr/  1-02:50:02 
 +</sxh> 
 +This represents 1 days, 2 hours, 50 mins and 2 seconds 
 +\\ 
 +\\ 
 +------------------------ 
 +==== Server uptime ====
 <sxh bash> <sxh bash>
 w w
Line 8: Line 50:
 \\ \\
 \\ \\
-**__Apache uptime__**+------------------------ 
 +==== Apache uptime ====
 \\ \\
 CentOS CentOS
Line 31: Line 74:
 \\ \\
 \\ \\
-**__mysql uptime__**+------------------------ 
 +==== mysql uptime ==== 
 +\\
 You can use any of the following commands You can use any of the following commands
 <sxh bash> <sxh bash>
-SHOW GLOBAL STATUS LIKE 'Uptime';+mysqladmin  version | grep -i uptime
 </sxh> </sxh>
 or or
 <sxh bash> <sxh bash>
-mysqladmin  version | grep -i uptime+SHOW GLOBAL STATUS LIKE 'Uptime';
 </sxh> </sxh>
 +
 or or
 <sxh bash> <sxh bash>
-mysql -e 'SHOW GLOBAL STATUS LIKE "Uptime"' | grep ''[[:digit:]]'' | awk '{ print $2 / 60 / 60 / 24}'+mysql -e 'SHOW GLOBAL STATUS LIKE "Uptime"' | grep ''[[:digit:]]'' | awk '{ print $2 / 60 / 60 / 24 " days"}'
 </sxh> </sxh>
uptime.1447332397.txt.gz · Last modified: 2024/05/23 07:26 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki