A system administrator has noticed vulnerability on a high impact production server. A recent update was made available by the vendor that addresses the vulnerability but requires a reboot of the system afterwards. Which of the following steps should the system administrator implement to address the vulnerability?

A. Test the update in a lab environment, schedule downtime to install the patch, install the patch and reboot the server and monitor for any changes
B. Test the update in a lab environment, backup the server, schedule downtime to install the patch, install the patch, and monitor for any changes
C. Test the update in a lab environment, backup the server, schedule downtime to install the patch, install the update, reboot the server and monitor for any changes
D. Backup the server, schedule downtime to install the patch, installs the patch and monitor for any changes


Answer: C. Test the update in a lab environment, backup the server, schedule downtime to install the patch, install the update, reboot the server and monitor for any changes

Computer Science & Information Technology

You might also like to view...

Define a function named alwaysTwo that has no parameters and returns the integer 2 as its result.

What will be an ideal response?

Computer Science & Information Technology

Analyze the following code:

``` public class Test { public static void main(String[] args) { new B(); } } class A { int i = 7; public A() { setI(20); System.out.println("i from A is " + i); } public void setI(int i) { this.i = 2 * i; } } class B extends A { public B() { // System.out.println("i from B is " + i); } @Override public void setI(int i) { this.i = 3 * i; } }``` a. The constructor of class A is not called. b. The constructor of class A is called and it displays "i from A is 7". c. The constructor of class A is called and it displays "i from A is 40". d. The constructor of class A is called and it displays "i from A is 60".

Computer Science & Information Technology

The Insert Table of Figures button is located on the ________ tab in Word

Fill in the blank(s) with correct word

Computer Science & Information Technology

How do you pause a print job in Windows Server 2008?

What will be an ideal response?

Computer Science & Information Technology