nerdexam
CompTIA

XK0-005 · Question #10520

A Linux administrator is troubleshooting a memory-related issue. Based on the output of the commands: Which of the following commands would address the issue?

The correct answer is B. kill -9 8321. The command that would address the memory-related issue is kill -9 8321. This command will send a SIGKILL signal to the process with the PID 8321, which is the mysqld process that is using 99.7% of the available memory according to the top output. The SIGKILL signal will…

Troubleshooting

Question

A Linux administrator is troubleshooting a memory-related issue. Based on the output of the commands: Which of the following commands would address the issue?

Options

  • Atop -p 8321
  • Bkill -9 8321
  • Crenice -10 8321
  • Dfree 8321

How the community answered

(33 responses)
  • A
    6% (2)
  • B
    79% (26)
  • C
    12% (4)
  • D
    3% (1)

Explanation

The command that would address the memory-related issue is kill -9 8321. This command will send a SIGKILL signal to the process with the PID 8321, which is the mysqld process that is using 99.7% of the available memory according to the top output. The SIGKILL signal will terminate the process immediately and free up the memory it was using. However, this command should be used with caution as it may cause data loss or corruption if the process was performing some critical operations.

Topics

#Process Management#Memory Troubleshooting#Linux Commands#System Recovery

Community Discussion

No community discussion yet for this question.

Full XK0-005 Practice