nerdexam
CompTIA

XK0-004 · Question #433

Which of the following will MOST likely fix the issue?

The correct answer is E. Exclude the web root directory from antivirus scanning. Antivirus software performing real-time scanning of the web root directory introduces per-request I/O latency that directly degrades web server response times.

Troubleshooting and Diagnostics

Question

Which of the following will MOST likely fix the issue?

Options

  • AAdd more CPUs to the server
  • BReplace the network cable
  • CAdd a second web server and a load balancer
  • DAdd more RAM to the server
  • EExclude the web root directory from antivirus scanning

How the community answered

(32 responses)
  • A
    6% (2)
  • C
    9% (3)
  • D
    3% (1)
  • E
    81% (26)

Why each option

Antivirus software performing real-time scanning of the web root directory introduces per-request I/O latency that directly degrades web server response times.

AAdd more CPUs to the server

Additional CPUs address CPU-bound bottlenecks; slow response caused by AV-intercepted file I/O is not a compute-bound problem.

BReplace the network cable

A network cable replacement fixes physical-layer connectivity faults and does not affect software-level file access latency introduced by antivirus scanning.

CAdd a second web server and a load balancer

A second web server with a load balancer distributes incoming traffic but replicates the same antivirus overhead on each node, leaving the root cause unresolved.

DAdd more RAM to the server

More RAM helps memory-bound or cache-starved workloads; AV-induced I/O interception is not resolved by increasing available memory.

EExclude the web root directory from antivirus scanningCorrect

Real-time antivirus scanning intercepts every file-read operation the web server performs against the web root, adding overhead to each HTTP request served. Excluding the web root directory from antivirus scanning eliminates this I/O bottleneck and restores expected response times. This is a standard performance tuning step recommended by most AV vendors when protecting web server hosts.

Concept tested: Web server performance impact of antivirus real-time scanning

Source: https://learn.microsoft.com/en-us/defender-endpoint/configure-exclusions-microsoft-defender-antivirus

Topics

#web server performance#antivirus exclusion#slow response#performance troubleshooting

Community Discussion

No community discussion yet for this question.

Full XK0-004 Practice