After rebooting one Virtual IO (VIO) server in a redundant environment, the following command output from the client partition shows that the path to the shared disk from the rebooted VIO server remains in a failed state.  Vio_client1# lspath Failed hdisk0 vscsi0 Enabled hdisk0 vscsi1 What must the administrator do to ensure that the path is automatically restored when a VIO server is brought back into service? ()A、 On both VIO servers, modify the inittab making chdev the last command, so that they will start during VIO server reboot.B、 On both VIO servers, change the following parameters and reboot each of them in turn    hcheck_interval =60 hcheck_mode=interactiveC、 On client logical partition, modify the inittab making chdev the last command, so that they will start during client partition reboot.D、 On the client logical partition, change the following parameters and reboot the client    hcheck_interval =60hcheck_mode=interactive

After rebooting one Virtual IO (VIO) server in a redundant environment, the following command output from the client partition shows that the path to the shared disk from the rebooted VIO server remains in a failed state.  Vio_client1# lspath Failed hdisk0 vscsi0 Enabled hdisk0 vscsi1 What must the administrator do to ensure that the path is automatically restored when a VIO server is brought back into service? ()

  • A、 On both VIO servers, modify the inittab making chdev the last command, so that they will start during VIO server reboot.
  • B、 On both VIO servers, change the following parameters and reboot each of them in turn    hcheck_interval =60   hcheck_mode=interactive
  • C、 On client logical partition, modify the inittab making chdev the last command, so that they will start during client partition reboot.
  • D、 On the client logical partition, change the following parameters and reboot the client    hcheck_interval =60   hcheck_mode=interactive

相关考题:

Bras Basah Road is named____________.A.after a personB.after a placeC.after an activityD.by its shape

A user states that the wireless router keeps rebooting while the power to the other equipment stays on. Which of the following should the technician perform to prevent users from rebooting the router?()A. Change the default administrator passwordB. Change the IP range of the wireless networkC. Hide the SSIDD. Disable WEP

A server keeps rebooting at various times throughout the day. Which of the following tools wouldBEST help to diagnose this issue?() A. MultimeterB. Temperature monitorC. Cable testerD. Toner probe

When does a MS get IP address?() A.After MS finishes GPRS attachB.After MS finishes PDP context activate procedureC.After MS requests RA updateD.After MS finishes Cell update

AFTER DROPPING THE PILOT means ______.A.After boarding the pilotB.After the pilot leaving the shipC.After the pilot going on boardD.After taking the pilot

Your company h as an Active Directory Domain Services (AD DS) domain. All client computers run Windows 7. You are deploying Microsoft Enterprise Desktop Virtualization (MED - V) virtual machines (VMs) on several client computers. You need to ensure that names of the new VM s follow a naming convention. What should you do?()A、In the MED - V Management console, configure the Image Update Settings.B、In the MED - V Management console, add a script action and set the VM computer name pattern.C、In the MED - V Management console, config ure the deployment options.D、In the VM, run the System Preparation Tool (Sysprep) and choose to start the factory session after rebooting.

After adding a new Ethernet card to a system and rebooting, the system administrator notices the card was not configured. How can the system administrator determine if there were errors during the configuration process for the card?()A、Examine the bootlog with the command: alog -o -f /var/adm/ras/bootlogB、Display the device attributes and errors with the command: lsdev -C -l ent0C、Examine the AIX errlog for configuration method errors with the command: errpt -a -C ent0D、Examine the ODM for configuration errors with the command: odmget -q "method_errors" ent0

An administrator wants to use a Windows system to monitor a server that is rebooting. Which of the following commands should the administrator use to know when the NIC is back online in the server?()A、 ping i 240B、 ping -tC、 ping -aD、 ping w 240

A technician purchases a new 120 GB IDE hard disk to use in an old server as a swap drive. After adding the drive to the server, the technician discovers that the operating system does not detect the drive.   After rebooting the server, the technician notices the drive is missing from POST and comes to the conclusion that the BIOS needs to be updated. The technician downloads the latest version of the BIOS update from the manufacturer website.   Which action should the technician take next?()A、 backup the BIOS configuration to use laterB、 install the BIOS update from a command promptC、 create a bootable floppy and copy the BIOS update tools to the floppyD、 read the manufacturer’s guidelines and recommendations on installing the update

When does a MS get IP address?()A、After MS finishes GPRS attachB、After MS finishes PDP context activate procedureC、After MS requests RA updateD、After MS finishes Cell update

Where is the MPLS label imposed?()A、after the Layer 3 header and before the Layer 2 payloadB、after the Layer 3 header and before the Layer 4 payloadC、after the Layer 2 header and before the Layer 1 payloadD、after the Layer 1 header and before the Layer 2 payloadE、after the Layer 2 header and before the Layer 3 payload

A server keeps rebooting at various times throughout the day. Which of the following tools wouldBEST help to diagnose this issue?()A、MultimeterB、Temperature monitorC、Cable testerD、Toner probe

A work order states that a customer used Windows updates and after rebooting the computer, the video driver was corrupted and the computer was in safe mode. Which of the following would be the BEST action to take?()A、Download and install the correct video driver from the manufacturer’s web site.B、Remove the video driver and reboot the computer.C、Use the Driver Roll Back feature in Device Manager.D、Go back to Windows update and specify the correct video driver.

A user states that the wireless router keeps rebooting while the power to the other equipment stays on. Which of the following should the technician perform to prevent users from rebooting the router?()A、Change the default administrator passwordB、Change the IP range of the wireless networkC、Hide the SSIDD、Disable WEP

What is the FIRST and most important step in system troubleshooting?()A、back up the system dataB、gather information about the problemC、try rebooting the system to see if that fixes the problemD、check the System Error Log or Event Log

A patch has been applied to the operating system.  After rebooting, the system is hung.  Which of the following commands should have been performed to prevent the system from hanging?()A、 lppchk, bosboot B、 lslpp -l, oslevel C、 installp -C, lppchk D、 bosboot, synclvodm

After making changes to IP aliasing and rebooting the system, an AIX server is unable to communicate with other hosts.  Which command can be run to check ent0 adapter configuration relative to IP address and network mask?()A、ifconfig -aB、errpt -aC、cfgmgr -vD、entstat -d ent0

Which command should an administrator use to put a system in maintenance mode without rebooting?()  A、init 0B、telinit mC、shutdown -FMD、sh /etc/rc.maint

class Work implements Runnable {  Thread other;   Work(Thread other) { this.other = other; }  public void run() {  try { other.join(); } catch (Exception e) { }  System.out.print("after join ");  } }  class Launch {  public static void main(String [] args) {  new Thread(new Work(Thread.currentThread())).start();  System.out.print("after start ");  } }  结果为:()A、after joinB、after startC、after join after startD、after start after join

In RMAN, when the RESYNC CATALOG command is issued, in which two situations does the command file actually perform synchronization?()A、After the COPY command.B、After adding a data file in the target database.C、After adding a tablespace in the target database.D、After adding a tablespace in the catalog database.E、After dropping a data file in the catalog database.F、After running SQL Loader to load a large amount of data.

Your company has an Active Directory Domain Services (AD DS) domain. All client computers run Windows 7. You are deploying Microsoft Enterprise Desktop Virtualization (MED-V) virtual machines (VMs) on several client computers. You need to ensure that names of the new VMs follow a naming convention. What should you do?()A、In the MED-V Management console, configure the Image Update Settings.B、In the MED-V Management console, add a script action and set the VM computer name pattern.C、In the MED-V Management console, configure the deployment options.D、In the VM, run the System Preparation Tool (Sysprep) and choose to start the factory session after rebooting.

单选题A graphics card has been added to the system. After rebooting, the system hangs during the login process with a blue screen indicating "CDE please wait". Which of the following procedures should be performed next?()AReinstall the CDE softwareBCheck the name resolutionCUncomment the last line in .dtprofileDBoot in maintenance mode and perform fsck on file systems

单选题A technician purchases a new 120 GB IDE hard disk to use in an old server as a swap drive. After adding the drive to the server, the technician discovers that the operating system does not detect the drive.   After rebooting the server, the technician notices the drive is missing from POST and comes to the conclusion that the BIOS needs to be updated. The technician downloads the latest version of the BIOS update from the manufacturer website.   Which action should the technician take next?()A backup the BIOS configuration to use laterB install the BIOS update from a command promptC create a bootable floppy and copy the BIOS update tools to the floppyD read the manufacturer’s guidelines and recommendations on installing the update

单选题An administrator is at a remote data center assisting a colleague who is replacing a bad fibre channel  adapter.  Which command can be used to manage a hot plug slot without powering off or rebooting the  server()AdrslotBIsslotCIsattrDprtconf

单选题Certkiller.com has servers on the main network that run Windows Server 2008. It also has two domain controllers. Active Directory services are running on a domain controller named CKDC1. You have to perform critical updates of Windows Server 2008 on CKDC1 without rebooting the server. What should you do to perform offline critical updates on CKDC1 without rebooting the server()AStart the Active Directory Domain Services on CKDC1BDisconnect from the network and start the Windows update featureCStop the Active Directory domain services and install the updates. Start the Active Directorydomain services after installing the updates.DStop Active Directory domain services and install updates. Disconnect from the network and then connect againENone of the above

单选题After a critical service failure occurs the server keeps rebooting every fifteen minutes not giving anadministrator enough time to troubleshoot the failure.  Which of the following does the administrator need to do to allow enough time to work on the system to troubleshoot the problem?()AModify boot.ini fileBDisable automatic reboot on serviceCPress F6 at boot upDClear cache

单选题A patch has been applied to the operating system.  After rebooting, the system is hung.  Which of the following commands should have been performed to prevent the system from hanging?()A lppchk, bosboot B lslpp -l, oslevel C installp -C, lppchk D bosboot, synclvodm

单选题An administrator wants to use a Windows system to monitor a server that is rebooting. Which of the following commands should the administrator use to know when the NIC is back online in the server?()A ping i 240B ping -tC ping -aD ping w 240