공유 서버에서 httpd 요청을 생성하는 사이트를 찾는 방법

공유 서버에서 httpd 요청을 생성하는 사이트를 찾는 방법

공유 서버가 있는데 WordPress 사이트 중 하나가 손상되었습니다. 서버의 모든 WordPress 사이트를 정리했는데 모든 것이 괜찮은 것 같습니다.

오늘 확인해 보니 htop에 httpd 요청이 많이 있는 것을 발견했습니다.

질문:서버에서 이러한 요청을 생성하는 사이트를 쉽게 찾을 수 있는 방법이 있습니까?

센토스 6.5

답변1

(다음은 Apache httpd를 가정합니다.) 핸들러가 구성된 경우 http://your.host/server-status각 스레드/프로세스에서 처리한 마지막 요청이 포함된 상태 정보를 에서 볼 수 있습니다. 예제 출력의 스니펫http://www.apache.org/server-status:

Srv PID Acc M   CPU SS  Req Conn    Child   Slot    Client  VHost   Request
0-3 14945   0/1516/44613    _   388.52  6   0   0.0 198.85  4925.35 200.23.10.34        
0-3 14945   0/1487/45982    _   388.22  9   0   0.0 36.54   5136.00 68.84.15.163        
0-3 14945   0/1499/47317    _   388.55  5   0   0.0 55.79   4677.07 190.245.218.189 www.apache.org:80   GET /proper/commons-bsf/images/external-classic.png HTTP/1.1
0-3 14945   0/1488/44601    _   388.58  0   0   0.0 51.48   5345.17 14.139.185.82       
0-3 14945   0/1245/47133    _   388.41  2   0   0.0 39.04   4884.93 95.91.249.186       
0-3 14945   0/1339/46175    R   388.07  0   1   0.0 220.24  4794.02 14.139.185.82       
0-3 14945   0/1474/47807    _   388.41  3   0   0.0 36.18   4933.90 95.91.249.186       
0-3 14945   0/1479/48044    _   388.45  9   0   0.0 37.67   5960.46 68.84.15.163    www.openoffice.org:80   GET /projects/update/aoo341/check.Update HTTP/1.1

Srv Child Server number - generation
PID OS process ID
Acc Number of accesses this connection / this child / this slot
M   Mode of operation
CPU CPU usage, number of seconds
SS  Seconds since beginning of most recent request
Req Milliseconds required to process most recent request
Conn    Kilobytes transferred this connection
Child   Megabytes transferred this child
Slot    Total megabytes transferred this slot

관련 정보