An environment has a DC server and an Exchange server. The administrator needs to install a patch and restart both servers while minimizing downtime. Which of the following is the BEST way to restart the servers?()A. Restart both servers at the same time

题目

An environment has a DC server and an Exchange server. The administrator needs to install a patch and restart both servers while minimizing downtime. Which of the following is the BEST way to restart the servers?()

A. Restart both servers at the same time so the servers are down at the same time.

B. DC server first, then the Exchange server second.

C. The order in which the servers are restarted does not matter.

D. Exchange server first, then the DC server second.


相似考题
参考答案和解析
参考答案:B
更多“An environment has a DC server and an Exchange server. The administrator needs to install ”相关问题
  • 第1题:

    下面是该网站中数据库连接程序conn.inc的代码,请在空白处填入相应的程序代码。

    <%

    Setcorm=server.(1)("adodb.connection")

    conn.provider="sqloledb"

    provstr="server=127.0.0.1;database=(2);uid=(3);pwd=(4)"

    conn.open(5)

    %>


    正确答案:(1)createobject (2)CJB (3)User (4)Test (5)provstr
    (1)createobject (2)CJB (3)User (4)Test (5)provstr

  • 第2题:

    某电子商务网站中数据库连接程序conn.inc的部分代码如下,请将(41)空缺处的代码填写完整。set conn=server.(41)("adodb.connection")

    A.sq1

    B.like

    C.CreateObject

    D.GetRecordSet


    正确答案:C
    解析:ASP是通过一组被称为ADO(ActiveXDataObjects)的对象模块来对后台数据库进行操作。无论后台数据库采用何种形式,只要该数据库具有对应的ODBC或OLEDB驱动程序,ADO对象就能对该数据库进行操作。Server对象提供了一系列的方法和属性,在使用ASP编写脚本时是非常有用的。最常用的是Server.CreateObject方法,它允许在当前页的环境或会话中在服务器上实例化其COM对象。ASP在存取数据库之前,先要利用Server对象的CreateObject方法来创建ADO对象模块的Connection对象以建立数据库的连接。因此(41)空缺处所填写的内容是CreateObject。

  • 第3题:

    Your company runs Remote Desktop Services. All client computers run Windows XP SP3. You have a Remote Desktop Session Host (RD Session Host) server.You need to ensure that users can print by using Easy Print while connected to the RD Session Host server.What should you do on the client computers?()

    A.Install .NET Framework 3.5.

    B.Enable Network Level Authentication (NLA)

    C.Enable a Windows Firewall Inbound Rule for File and Printer Sharing.

    D.Enable a Windows Firewall Outbound Rule for File and Printer Sharing.


    参考答案:A

  • 第4题:

    WebLogic12c,theMavenplug-inhasbeenenhancedwithwhichMavengoal?()

    A.wls:unzip,wls:install-domain,wls:start-domain,wls:wlst,wls:appc

    B.wls:install,wls:install-domain,wls:start-domain,wls:wlst,wls:appc

    C.wls:unzip,wls:create-domain,wls:start-domain,wls:wlst,wls:appc

    D.wls:install,wls:create-domain,wls:start-server,wls:wlst,wls:appc


    参考答案:D

  • 第5题:

    Aspartofyourdesign,youareevaluatingwhethertoupgradealldomainstoWindowsServer2003.Basedoncurrentconfigurations,whichserverorserverspreventyoufromachievingthisgoal?()

    A.DC2

    B.DC3

    C.DC4

    D.DC5

    E.DC6

    F.Server1


    参考答案:D, E

  • 第6题:

    下面是一段ASP程序,填空。  <% ’创建连接对象  Set Session("conn") = Server.CreateObject("()") ’ 打开站点目录data子目录中的student.mdb的Access数据库  Session("conn").()= "Driver={Microsoft Access Driver (*.mdb)};DBQ=" & Server. ()("./data/student.mdb") Session("conn").()   ’ 打开连接对象 ...... ’该部分为执行代码  Session("conn").Close   ’关闭数据连接对象       () ’释放连接对象  %>
    ADODB.Connection;ConnectionString;MapPath;Open;Set Session("conn") = Nothing