IBM C9510-401 Exam Practice Questions (P. 5)
- Full Access (73 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #21
A system administrator discovers an issue that requires a change to a federated server. In this cell, WebSphere administrative security is enabled, but application security is not enabled.
How should the administrator make this change?
The administrator should use:
How should the administrator make this change?
The administrator should use:
- Aa web browser to connect to the node agent https port.
- Ba web browser to connect to the deployment manager admin_host port.
- Cthe job manager to submit a job to update the unmanaged server.
- Dan ssh connection to the node and modify the client_types.xml file.
Correct Answer:
B
The admin_host virtual host is used for access to the WebSphere administrative console.
At installation time, the host is configured to match requests on the wc_adminhost and wc_adminhost_secure ports for the stand-alone server or deployment manager.
References: WebSphere Application Server V8.5 Administration and Configuration Guide for the Full Profile (July 2013), page 303
B
The admin_host virtual host is used for access to the WebSphere administrative console.
At installation time, the host is configured to match requests on the wc_adminhost and wc_adminhost_secure ports for the stand-alone server or deployment manager.
References: WebSphere Application Server V8.5 Administration and Configuration Guide for the Full Profile (July 2013), page 303
send
light_mode
delete
Question #22
A system administrator has created a Jython script that will run in WebSphere Network cell where administrative security is enabled. This script is named and will be run by using the following: doUpdate.py wsadmin connType RMI f doUpdate.py
How can the administrator suppress a user/password prompt from appearing when this script is run?
Set the user and password in the:
How can the administrator suppress a user/password prompt from appearing when this script is run?
Set the user and password in the:
- Asas.client.props file.
- Bssl.client.props file.
- Csoap.client.props file.
- Dwsadmin.properties file.
Correct Answer:
A
The user Id and password needed for wsadmin to connect to a secured server can be supplied as command line options and in properties files. If used together, command line options take precedence over what is in the properties files. The properties files are located at Profile_root/properties.
If you use a Remote Method Invocation (RMI) connector or a JSR160RMI connector, set the following properties in the sas.client.props file with the appropriate values: com.ibm.CORBA.loginUserid= com.ibm.CORBA.loginPassword=
References:
https://www.ibm.com/support/knowledgecenter/SSAW57_8.5.5/com.ibm.websphere.nd.doc/ae/txml_security.html
A
The user Id and password needed for wsadmin to connect to a secured server can be supplied as command line options and in properties files. If used together, command line options take precedence over what is in the properties files. The properties files are located at Profile_root/properties.
If you use a Remote Method Invocation (RMI) connector or a JSR160RMI connector, set the following properties in the sas.client.props file with the appropriate values: com.ibm.CORBA.loginUserid= com.ibm.CORBA.loginPassword=
References:
https://www.ibm.com/support/knowledgecenter/SSAW57_8.5.5/com.ibm.websphere.nd.doc/ae/txml_security.html
send
light_mode
delete
Question #23
A system administrator wants to learn some of the Jython scripting commands for the administration of the environment.
Which product feature should the administrator use?
Which product feature should the administrator use?
- AThe wsadmin.properties file to load a profile.
- BThe AdminTask object to generate wsadmin scripts.
- CThe guided activities panel from the Integrated Solutions Console (ISC).
- DThe "Log command assistance commands" option in the Integrated Solutions Console (ISC).
Correct Answer:
D
D
send
light_mode
delete
Question #24
Within a WebSphere Application Server Network Deployment cell, a system administrator needs to write a script to determine if a particular server is stopped. It is important that the wsadmin script explicitly return a status of stopped as opposed to just failing.
What wsadmin object should the administrator use to write this script?
What wsadmin object should the administrator use to write this script?
- AAdminApp
- BAdminTask
- CAdminConfig
- DAdminControl
Correct Answer:
D
Use the AdminControl object to invoke operational commands that manage objects for the application server.
Many of the AdminControl commands have multiple signatures so that they can either invoke in a raw mode using parameters that are specified by Java
Management Extensions (JMX), or by using strings for parameters. In addition to operational commands, the AdminControl object supports some utility commands for tracing, reconnecting with a server, and converting data types.
References:
https://www.ibm.com/support/knowledgecenter/en/SSAW57_8.5.5/com.ibm.websphere.nd.doc/ae/rxml_admincontrol.html
D
Use the AdminControl object to invoke operational commands that manage objects for the application server.
Many of the AdminControl commands have multiple signatures so that they can either invoke in a raw mode using parameters that are specified by Java
Management Extensions (JMX), or by using strings for parameters. In addition to operational commands, the AdminControl object supports some utility commands for tracing, reconnecting with a server, and converting data types.
References:
https://www.ibm.com/support/knowledgecenter/en/SSAW57_8.5.5/com.ibm.websphere.nd.doc/ae/rxml_admincontrol.html
send
light_mode
delete
Question #25
A system administrator is tasked with monitoring the overall health of the WebSphere environment to be able to tune the environment properly. Specifically, the administrator was asked to:
✑ Monitor how much time is spent in the various parts of the environment.
✑ Determine the concurrent usage of the site.
✑ Identify potential memory leaks.
Which PMI modules can the administrator examine to obtain this data?
✑ Monitor how much time is spent in the various parts of the environment.
✑ Determine the concurrent usage of the site.
✑ Identify potential memory leaks.
Which PMI modules can the administrator examine to obtain this data?
- ANumber of requests, Java virtual memory, Average response time
- BNumber of requests, Average response time, Web server thread pools
- CAverage response time, Java virtual memory, Number of Live HTTP Sessions
- DAverage response time, Web server thread pools, Number of Live HTTP Sessions
Correct Answer:
C
Monitoring overall system health. To monitor overall system health, monitor the following statistics at a minimum:
✑ Average response time
Include statistics, for example, servlet or enterprise beans response time. Response time statistics indicate how much time is spent in various parts of WebSphere
Application Server and might quickly indicate where the problem is (for example, the servlet or the enterprise beans).
✑ Java virtual memory
Use JVM metrics to understand the JVM heap dynamics, including the frequency of garbage collection. This data can assist in setting the optimal heap size. In addition, use the metric to identify potential memory leaks.
✑ Number of Live HTTP Sessions
The number of live HTTP sessions reflects the concurrent usage of your site. The more concurrent live sessions, the more memory is required. As the number of live sessions increase, you might adjust the session time-out values or the Java virtual machine (JVM) heap available.
References:
https://www.ibm.com/support/knowledgecenter/en/SSAW57_8.5.5/com.ibm.websphere.nd.doc/ae/tprf_monitoringhealth.html
C
Monitoring overall system health. To monitor overall system health, monitor the following statistics at a minimum:
✑ Average response time
Include statistics, for example, servlet or enterprise beans response time. Response time statistics indicate how much time is spent in various parts of WebSphere
Application Server and might quickly indicate where the problem is (for example, the servlet or the enterprise beans).
✑ Java virtual memory
Use JVM metrics to understand the JVM heap dynamics, including the frequency of garbage collection. This data can assist in setting the optimal heap size. In addition, use the metric to identify potential memory leaks.
✑ Number of Live HTTP Sessions
The number of live HTTP sessions reflects the concurrent usage of your site. The more concurrent live sessions, the more memory is required. As the number of live sessions increase, you might adjust the session time-out values or the Java virtual machine (JVM) heap available.
References:
https://www.ibm.com/support/knowledgecenter/en/SSAW57_8.5.5/com.ibm.websphere.nd.doc/ae/tprf_monitoringhealth.html
send
light_mode
delete
All Pages