What Is WAS
What Is WAS
What Is WAS
What is WAS
Provides the infrastructure for running applications that run your business.
Common environment and programming model for your applications.
Platform for developing and Deploying web services and SOA based apps
Secure, Scalable, reliable transaction engine for ERP
IBM WebSphere is architected to enable you to build business-critical applications
for the Web
WebSphere includes a wide range of products that help you develop and serve
Web applications.
They are designed to make it easier for clients to build, deploy, and manage
dynamic Web sites more productively
WAS implements J2EE specification
With the Base and Express packages, you are limited to single application server
environments. The Network Deployment package allows you to extend this
environment to include multiple application servers that are administered from a
single point of control and can be clustered to provide scalability and high availability
environments.
Functionality of WAS
WebSphere Application Server works with a Web server (such as the IBM HTTP
Server) to route requests from browsers to the applications that run in
WebSphere Application Server. Web server plug-ins are provided for
installation with supported Web browsers. The plug-ins direct requests to the
appropriate application server and perform workload balancing among servers
in a cluster.
Packaging
All V6 application servers have the same core and base functionality
WebSphere Application Server - Express V6 node can be upgraded to a WebSphere
Application Server V6 node(.Can be done without any software upgrades .Only a
paper license upgrade is required)
WebSphere Application Server- Express V6 and WebSphere Application Server V6
node can be federated into a WebSphere Application Server - Network Deployment
V6 cell (Can be done without any software upgrades .Only a paper license upgrade is
required)
Edge Components
Using Edge components can reduce Web server congestion, increase content
availability, and improve Web server performance. As the name indicates, Edge
components usually run on machines that are close (in a network configuration
sense) to the boundary between an enterprise’s intranet and the Internet.
Web container
A Web container, which processes HTTP requests, servlets, and JavaServer Pages
(JSPs)
Servlet processing
When handling servlets, the Web container creates a request object and a response
object, then invokes the servlet service method. The Web container invokes the
6
servlet’s destroy method when appropriate and unloads the servlet, after which the
JVM performs garbage collection.
EJB Container
The Enterprise JavaBeans (EJB) container provides all the runtime services that are
needed to deploy and manage enterprise beans. It is a server process that handles
requests for both session and entity beans.
WAS Services
J2EE Connector Architecture services
Transaction service
Dynamic cache service
Message listener service
Object Request Broker service
Administrative service (Java Management Extensions)
Diagnostic trace service
Debugging service
Name service (Java Naming Directory Interface)
Performance Monitoring Interface service
Security service (JAAS and Java 2 security)
7
A Web server handles the HTTP protocol. When the Web server receives an HTTP
request, it responds with an HTTP response, such as sending back an HTML page. To
process a request, a Web server may respond with a static HTML page or image,
send a redirect, or delegate the dynamic response generation to some other program
such as CGI scripts, JSPs (JavaServer Pages), servlets, ASPs (Active Server Pages),
server-side JavaScripts, or some other server-side technology. Whatever their
purpose, such server-side programs generate a response, most often in HTML, for
viewing in a Web browser.
Understand that a Web server's delegation model is fairly simple. When a request
comes into the Web server, the Web server simply passes the request to the
program best able to handle it. The Web server doesn't provide any functionality
beyond simply providing an environment in which the server-side program can
execute and pass back the generated responses. The server-side program usually
provides for itself such functions as transaction processing, database connectivity,
and messaging.
While a Web server may not itself support transactions or database connection
pooling, it may employ various strategies for fault tolerance and scalability such as
load balancing, caching, and clustering—features oftentimes erroneously assigned as
features reserved only for application servers.
Eg: Apache HTTP Server, Sun ONE Web Server, iPlanet Web Server
Such application server clients can include GUIs (graphical user interface) running on
a PC, a Web server, or even other application servers. The information traveling back
and forth between an application server and its client is not restricted to simple
display markup. Instead, the information is program logic. Since the logic takes the
form of data and method calls and not static HTML, the client can employ the
exposed business logic however it wants.
8
In most cases, the server exposes this business logic through a component API, such
as the EJB (Enterprise JavaBean) component model found on J2EE (Java 2 Platform,
Enterprise Edition) application servers. Moreover, the application server manages its
own resources. Such gate-keeping duties include security, transaction processing,
resource pooling, and messaging.
Like a Web server, an application server may also employ various scalability and
fault-tolerance techniques.
(3) Webserver delegation model is fairly simple,when the request comes into the
webserver,it simply passes the request to the program best able to handle it(Server
side program). It may not support transactions and database connection pooling.
(4) Application server is more capable of dynamic behaviour than webserver. We can
also configure application server to work as a webserver.Simply applic! ation server
is a superset of webserver.
In J2EE application modules are packaged as EAR, JAR and WAR based on their
functionality .These files are simply zipped files using java jar tool. These files are
created for different purposes.
.jar files:
JAR files (Java ARchive) allows aggregating many files into one, it is usually used to
hold Java classes in a library. i.e. Math.jar These files are with the .jar extension.
The .jar files contain the libraries, resources and accessories files like property files.
.war files:
WAR files (Web Application aRchive) stores XML, java classes, and JavaServer pages
for Web Application purposes. These files are with the .war extension. The war file
contains the web application that can be deployed on the any servlet/jsp container.
The .war file contains jsp, html, javascript and other files for necessary for the
development of web applications.
.ear files:
9
EAR files (Enterprise ARchive) combines JAR and WAR files to make a combined
archive for Enterprise Applications. The .ear file contains the EJB modules of the
applications
4. Explain
10
Session affinity:
Most servers use the term "Session Affinity" to indicate that within a
cluster of servers, requests from the same client always get routed back to the same
server. (or) In a clustered environment, any HTTP requests associated with an HTTP
session must be routed to the same Web application in the same JVM.
Session Persistance:
You use session persistence to permanently store data from an HTTP
session object to enable failover and load balancing across a cluster of WebSphere
Applicaiton Servers.
Sessiontracking:
Session tracking enables you to track a user's progress over multiple
servlets or HTML pages, which, by nature, are stateless.
click Servers > Application servers > server_name > Web container
settings > Session management > Session Timeout
What are the different levels at which session timeout can be set
application level, web module level, server level
6. Back Ups
Simple
Simple name
The simple name binding is guaranteed to succeed if lookup is within
the same server or when connected directly to the name space of the server
containing the target of the lookup. It can be used in a servlet or EJB, if it is certain
that the object is located on the same application server. Here is an example of a
simple name:
ejb/webbank/Account
Corba
Corbaname
The corbaname binding is always guaranteed to work. However, it
12
requires that you know the correct path to the object at deployment time. Here is
an example of a corbaname:
corbaname::myhost1:9812/NameServiceServerRoot#ejb/webbank/A
ccount
Complex names
Compound name/remote/complex
Applications that do not run in the same server cannot use simple
name lookup because the simple name is not local to the application. Instead, an
application of this type must look the object up directly from the name server. Each
application server contains a name server. System artifacts such as EJB homes are
bound relative to the server root context in that name server. The fully qualified
(compound name) JNDI name is always guaranteed to work.
Here is an example of a compound name:
cell/nodes/node1/servers/server1/ejb/webbank/Account
Connection Timeout
This value indicates the number of seconds a request for a connection
waits when there are no connections available in the free pool and no new
connections can be created.
Max Connections
Specifies the maximum number of physical connections that you can create in
this pool.
Min Connections
Specifies the minimum number of physical connections that you can create in
this pool.
Reap Time
Specifies the interval in seconds between runs of pool maintenance thread.
13
Unused Timeout
Specifies the interval in seconds after which an idle or unused connection is
discarded.
Aged Timeout
Specifies the interval in seconds before a physical connection is discarded.
Which one should be the highest and which one should be the lowest in
the reap/unused/aged timeouts.
Aged timeout should be the highest and Reap timeout should be
lowest.
Purge Policy
Specifies how to purge connections when a stale connections or fatal
connection error is detected.
What are stale connection exceptions
When an application receives a stale connection exception on a
database operation, it indicates that the connection currently held is no longer valid.
(or)
Whenever a troubled connection is encountered, a
staleConnectionException is raised. (A troubled connection is an inconsitent
connection object in a connection pool)
13. How would you go about when a new application comes into ur
environment (resources, settings, heaps etc)
18. VerboseGC
that the Garbage Collector works will help you to diagnose problems.
How do set it up
In Admin Console goto Servers > Application Servers > Java
and Process Management > Process Definition > Java Virtual Machine > Check
Verbose Garbage Colletion option.
What is the effect of changing max heap and min heap size of a jvm
Max Heap Size: When you have established the maximum
heap size that you need, you might want to set the minimum heap size to the same
value; Using the same values is not usually a good idea, because it delays the start
of garbage collection until the heap is full. The first time that the Garbage Collector
runs, therefore, becomes a very expensive operation. Also, the heap is more likely to
be fragmented and require a heap compaction. Again this is a very expensive
operation.
Min Heap Size: The recommendation is to start your
application with the minimum heap size that it needs. When it starts up, the
Garbage Collector will run often and, because the heap is small, it runs efficiently.
It shows the objects that are using large amounts of memory on the
Java heap, and what is preventing them from being collected by the Garbage
Collector.
Through wsadmin
>set mythread_dm [$AdminControl completeObjectName
type=JVM,process=server1,*]
>$AdminControl invoke $mythread_dm dumpThreads
21. How do you make a jvm run as a service in windows and why.
WASService.exe. The reason we can utilize this service on
Windows platform is because the Windows OS automatically starts this service
whenever the system is up and we can flexibily start and stop the server from
windows services.
24. What is a PMR and explain how you worked with IBM on a PMR
PMR: Problem Management Record ---- PMR is created wehn a customer
submits a request to fix a software problem via ESR. A PMR number is assigned to
track the request. You can attach files to your PMR to provide the IBM engineer more
information to better assist you.
ESR: Electronic Service Request --------
17
25. What all parameters did you tune in WAS (other than JDBC connection
pool and heap sizes)
We can tune some of these other aspects such as
1. Application server (parameter : )
2. JVM tunings (parameter : )
3. Applications (parameter : )
4. Database (parameter : )
5. JMS (parameter : )
6. Security
7. Hardware capacity and settings (parameter : )
8. Operating System (parameter : )
9. Web Servers (parameter : )
26. What other connection pools do you know in WAS other than JDBC
connection pool
J2C connection pool
MQ connection pool
Thread pool
30. What is the utility that comes with WAS / IHS to manage certificates
ikeyman.sh
32. How do you change the port number for admin console
C:\WebSphere\profiles\dmgr\config\cells\dmgr_cell\nodes\dmgr_node\servic
eindex.xml (dmgr starts but cannot open the admin console because the port hasn't
been changed in virtual host xml file)
19
C:\WebSphere\profiles\dmgr\config\cells\dmgr_cell\virtualhosts.xml
33. How do you disable security for Deployment manager without logging
into the console
security.xml , enable=false
34. If you have to change the ports of a jvm manually without logging into
the admin console which file would you edit.
serverindex.xml
What are the two virtual hosts that come with WAS installation
admin_host, default_host
When the request comes to a webserver how does the webserver know
the JVM that is capable of handling that request.
The webserver first takes the request and if it can't serve, it
forwards the request to the plugin config file . The plugin config file routes the
request to the appropriate application server (or cluster member or jvm)
according to the mapping information it has.
If changes are made to the config file should the webserver be restarted
Yes. The webserver must to restarted so the changes made to the config
file become effective.
What changes are made to this config file (automatically) during plugin
installation on the webserver
The plugin's binary module file (.dll) path and the plugin's
configuration file (plugin-cfg.xml) path will be copied to the httpd.conf file
automatically.
Syntax
It must be invoked from a temporary work directory >
C:\IBM\WebSphere\AppServer\bin\collector.sh | bat
21
Use
It can be used to send it to the IBM Customer Support to assist in
determining and analyzing your problem.
Output file
The output will a .jar file. For example: node31-dmgr_cell-dmgr_node-
dmgr-WASenv.jar
Will it work??
We can federate it to the same DM. This works.
Global Security > LTPA > TrustAssociation > Check Enable trust association
and Apply
-W silentInstallLicenseAcceptance.value="true"
-P wasProductBean.installLocation="C:\IBM\WebSphere\AppServer"
-OPT disableOSPrereqChecking="true"
-OPT installType="installNew"
-OPT createProfile="true"
-OPT profileType="deploymentManager"
-OPT PROF_enableAdminSecurity="true"
-W nodehostandcellnamepanelInstallWizardBean.nodeName="krishna_node"
-W nodehostandcellnamepanelInstallWizardBean.hostName="localhost"
-W winservicepanelInstallWizardBean.winServiceQuery="true"
-W winservicepanelInstallWizardBean.accountType="localsystem"
-W winservicepanelInstallWizardBean.startupType="manual"
8) What is the use of SOAP Connector port and what is the default soap port number
for DMGR profile.
Client Applications like wsadmin uses Simple Object Access Protocol and
that is listening to the port 8879. If we want federate a profile by using
SOAP protocol and SOAP connector port number, we can federate a profile.
9) What is the default Http transport port number for Application Server profile and
what is the use.
9080, (if ssl was enabled 9443) If we want to invoke applications running
on AppServer we are using HTTP transport port
10) What is the default Bootstrap port number in App.Serv profile and what is the
use.
2809. To access the EJB’s, JNDI use bootstrap port to obtain initial context
root.
11) Installation was successful and when I am trying to start server it is giving
“Invocation Target Exception” why you will get this issue and how you are trouble
shooting this issue.
May be the problem with hostnames, hostnames are mismatched. Add the
host name in etc/hosts file which you had given at the time of installation.
13) Write the complete command to create an App.Serv profile through command
line.
C:\IBM\WebSphere\AppServer\bin>wasprofile.bat -create -profileName
AppSrv04 -profilePath "C:\IBM\WebSphere\AppServer\profiles\AppSrv04" -
template Path "C:\IBM\WebSphere\AppServer\profileTemplates\default" -
nodeName app_node04 -cellName cell04 -hostName krishamurthy
15) If you get a problem before creating a log’s directory at the time of installation,
at that time where you can check the status of installation
tmp/log.txt
16) What is the difference between managed node and unmanaged node
Manged Node contains node agent, we can administer federated profiles
servers and applications from dmgr admin console. For unmanaged the will
be no nodeagent.
17) What is the impact for the federated profile servers, if DMGR is down.
No impact on servers and applications
20) If we stop the nodeagent, what will be the impact for end users.
There is no impact for end users
22) What are the different user registries under global security in 6.0 and 6.1.
Local OS, Custom, LDAP. Federated repository was added in 6.1
24) What is the port number for LDAP server with SSL and without SSL?
25
27) What are the advantages and disadvantages of Local OS,Custom and LDAP user
registries?
Global Security: In 6.0 we have 3 ways to provide security for admin
console.
1) Local os user registry.
2) Custom user registry.
3) LDAP (Light Weight Directory Access Protocol) user registry.
a) Custom user registry: Here we have to create two files named:
Users. Registry
Groups. Registry
We can create this file any where but we have to configure this absolute path to the
application servers.
b) LDAP: It is a mechanism & not a server. Here we are integrating seperate
directory servers.
if SSL is enabled the port number is 636, if it is not enabled 389.
-> In local os user registry we have to create user accounts and that user
accounts have to configure to websphere application servers.
where as in the custom user registry specifying user names and passwords in
a normal file and we are specifying the absolute path of that file into the websphere
application server. whenever we are going for LDAP user registry we have to specify
user id & password & type of directory server, port number (default is 389), if SSL is
enabled we have to specify port number as 636 and we have to specify Base
distinguished name which indicates authentication for users and we have to specify
Bind distinguished name and Bind password which specify authorization for user and
we have to select "Advanced Light Weight Directory Access Protocol user registry
settings" there we have to specify user filter classes and group filter classes
(automatically it will be there) and finally we have to restart the server.
29) What is the full form of JAR and what a jar file contains?
An EJB module which contains enterprise java beans class files and EJB
deployment descriptors are packed as JAR files with .jar extension.
30)Write the name of the jar file necessary to configure Oracle 9i & Oracle 10g
Database.
In oracle 10g & 9i We have only one jar file i.e OJDBC14.JAR (for log) & Class12.jar
(for 9i) and In DB2 we have 3 or more jar files. i.e
DB2JCC.JAR,DB2JCC_LICENSE_C4.JAR, DB2JCC_LICENCE_CIS42.JAR.
-> The .jar file is nothing but a collection of .class files. It is necessary to
communicate with the database. So we should configure this jar files with database.
37) when you configure LDAP with application server, if the users are unable to
connect to WAS. How do you trouble shoot this scenario?
You don’t trouble shoot, you *troubleshoot*
The issue is - U have LDAP, running on Server x. Server y, WAS bind to server x.
if a problem occurs, u need to dig like this -
A) Ldap up or not
B) If yes, can server y reach server x [simple ping or telnet on ldap port]
C) If yes - Ur infrastructure is clear
D) Any firewall between server y and server x. talk to firewall team, ask them to
enable trace between server y and x. any droppage of packets?
E. if everything is clean, talk to ldap admin, enable trace on that specific group who
are getting auth errors.
F) Look into systemout.log, find out what exactly the error message you get.
G) U have to login to admin console and verify the authentication. u can *test* ldap
auth from console. Feb 7 (2 days ago) Raju
38) What is the difference between Signed Certificate and Self-signed certificate?
Which one you prefer?
http://webdesign.about.com/od/ssl/a/signed_v_selfsi.htm
39) In Windows 2003 box, an application server process is not responding. How do
you trouble shoot this issue. Even when you are unable to kill the process.
*trouble shoot* - On any server, app server freeze - may because of resource
crunch, or process failing to release a resource, jvm could not complete a specific
thread, blablabla.
a. do u have enuf rights to kill the process?
b. check the processor utilization thru task manager
c. kill -3, if not responding, try again, again and again
d. verfiy the disk space.
e. verify error log and out log.
Blabla
40) how many types of scripting you have done or you know?
such questions cannot be asked in a forum, or its difficult to answer. if i were you, i
wud say, perl scripting, php, python, jython, tcl, jacl, ant, shell, blabla. Feb 7 (2
days ago)
28
41) when you are on call support when you got a severity 1 ticket, how do you take
action. Explain in detail.
Open the ticket, read the message what the problem is about.
login to targeted server(s), check logs, depending on error, propagate first hand info
to stakeholders. sit on the issue, fix it, close it.
42) What is a fix pack, refresh pack and when you will go for fix pack installation and
when you will go for refresh pack installation?
fix pack fixes certain issues.
refresh pack is a mile stone for a release.
a refresh pack takes you to a release, say
6.0.0.1 is a release. if you apply rp2, it becomes a release 6.0.2. if you apply fp35, it
becomes 6.0.2.35, which is not a release. Feb 7 (2 days ago) Raju
43) when you find in a particular server 'cpu starvation' error message what you will
do?
whenever there is not enough physical memory available to allow the high
availability manager threads to have consistent runtimes. When the CPU is spending
the majority of its time trying to load swapped-out processes while processing
incoming work, thread starvation might occur.
Goto InfoCenter, search for starvation.
Click OK and then Save to apply these changes to the master configuration.
Restart the server for these changes to take effect.
Transient high availability heartbeat failures und
11.If we said to analyze thread dumps can you do?
Ya!! Why not
46) When you found hung thread error messages what you will do? Will you kill the
process. If yes, in which case you have to kill the process?
Lucky you and lucky me, we have IBM's InfoCenter. Is it not easy to perform a
simple search on InfoCenter like this *hung thread*?
http://publib.boulder.ibm.com/infocenter/wasinfo/v6r0/index.jsp?topic=/com.ibm.we
bsphere.nd.multiplatform.doc/info/ae/ae/ttrb_confighangdet.html
Configuring the hang detection policy
The hang detection option for WebSphere Application Server is turned on by default.
You can configure a hang detection policy to accommodate your applications and
environment so that potential hangs can be reported, providing earlier detection of
failing servers. When a hung thread is detected, WebSphere Application Server
notifies you so that you can troubleshoot the problem.
Add the following properties:
Name: com.ibm.websphere.threadmonitor.interval
Value: The frequency (in seconds)
Default: 180 seconds (three minutes).
Name: com.ibm.websphere.threadmonitor.threshold
Value: The length of time (in seconds).
Default: The default value is 600 seconds (ten minutes).
Name: com.ibm.websphere.threadmonitor.false.alarm.threshold
Value: The number of times (T) that false alarms can occur before automatically
increasing the threshold. Feb 7 (2 days ago) Raju
what is the use of it? its the central repository and depending access polices agency
wide authorized and authenticated *users* can access documents.
ex.,
u have prepared a document on ur environment. u need a place to put that
document so that ur team can access it, ur manager can access it. above that,
another team who wants to read that document can access that, above that, some
infrastructure team can access it, above that datacom people can access it and so
on.
what is the best place to put it?
on ur desk top? or attach to mail? or dump it in a shared location.
if its a shared location, what that could be? will you dump it in a zunkyard shared
location or in a proper shared location? first | < previous | next > | last
report spam reply
Deployment Manager
Job Manager
Note:The Main use of Job Manager is to queue jobs to application server in a flexible
management environment
Managing Profiles
WebSphere 5.1 :Websphere multiple installation instance can be created using
wsinstance script
Security Roles
WAS 5.1:Administrator,operator,configurator
WAS 6.1:Administrator,operator,configurator,Deployer,Admin Security Manager,ISC
Admin
WAS 7.0:Administrator,operator,configurator,Deployer,Admin Security Manager,ISC
Admin,Auditor
WebServers supported
WAS 5.1:Apache HttpServer,Domino Server,IHS,Microsoft IIS,Sun Java System Web
Server,HTTP Server for iseries
WAS 6.1:Apache HttpServer,Domino Server,IHS,Microsoft IIS,Sun Java System Web
Server
WAS 7.0:HTTPServer for Z/Os and all web servers supported in 6.1
32
User Registries/Repositries
5.1:Local Operating System,Standalone LDAP registry,Standalone Custom registry
WAS 6.1:Federated repositories,Local Operating System,Standalone LDAP
registry,Standalone Custom registry or file based registry
WAS 7.0:Same as 6.1
Managing WebServers
WAS 5.1:Web Servers cannot be managed through Websphere Admin Console
WAS 6.1:WebServers can be Administered using the Websphere Admin Console
(Stopping, Starting, Generation and propagation of Plug-in can be done). Web
Servers can be created in Managed node or in Unmanaged node
WAS 7.0 same AS V 6.1
JMS
WAS 5.1:JMS Fail Over Support and scalability is not available
WAS 6.1:JMS Fail over support and scalability is available.SIB(Service Integration
Bus Concept is being introduced)
WAS 7.0:Same as V 6.1
Monitoring
WAS 5.1:N/A
WAS 6.1:TPV(Tivoli Performance Viewer) is embedded in the Websphere Admin
Console for monitoring WebSphere Objects
WAS 7.0same as V 6.1
Components like Web Container , EJB Container , Web Service and SIP Container are
dynamically activated
33
The Portlet applications can deployed which is compliant with JSR 168
wsadmin scripts
WAS 5.1:JACL is the scripting language which is used
WAS 6.1:JACL will be deprecated from 6.1 and Jython scripting will be used.
WAS 7.0:Same as V 6.1
Posted by TechnoTips at 4:18 AM 0 comments
Reactions:
wsadmin>print objectName
WebSphere:name=JVM,process=WebSphere_Portal,platform=dynamicproxy,node=a
hdp2csmwas78,j2eeType=JVM,J2EEServer=WebSphere_Portal,version=6.0.2.21,typ
e=JVM,mbeanIdentifier=JVM,cell=wpcell
//genrate heapdump
wsadmin>AdminControl.invoke(objectName, "generateHeapDump")
Posted by TechnoTips at 4:24 AM 0 comments
Reactions:
2)Tell me about the Architecture of Web Application (how it will happen Workload
Management & clustring)
when ther request coming from the browser the webserver will handled that reuest ,
It will handled over to the plug-in, then the plug-in will looks in to the plug-in cfg.xml
file for
the reuested url and It will redirect the request to the avaliability of the servers in
the cluster.
The plug-in mainly perform the work load management.If any server is processing
any request then the plug-in will route the request to the avaliability of the servers
based on their weight and based on the algorithams.
drivers. ODBC binary code and in many cases database client code must be loaded
on each client machine that uses such a driver.
and as the program is connected to database by an extra layer in the clint hence
thay are called thick drivers.
Thin drivers: This style of driver converts JDBC calls into the network protocol used
directly by DBMSs allowing a direct call
from the client machine to the DBMS server and providing a practical solution for
intranet access. hence their conenction to DB
is more direct and without any intermediate stage making them thin drivers. type 4
driver.
Basic difference between thin and thick client
Oracle has a thin client driver which mean you can connect to a oracle database
without the Oracle client installed on your machine.
Thick client would need the Oracle Client database drivers etc.. Drivers include JDBC-
ODBC bridge drivers JDBC drivers depending on tns resolution.
Dominic
thin driver is 4 type driver in java which r provide the connectivity between
oracle and java.the main advantage is this driver is we connect the databse to java
without create DSN.and it provide the all the host computer connectivity in the
network.so its r most important driver which we use in the java.
2)What is Connection Pooling
Connection pooling is a place where a set of connections are kept and are
used by the different programers with out creating conncections to the database(it
means there is a ready made connection available for the programmers where he
can use). After using the connection he can send back that connection to the
connection pool. Number of connections in connection pool may vary.
C) As with the Type 1 driver, some binary code may be required on the client
machine, which means this type of driver is not suitable for downloading over a
network to a client.
D) All of the above
4)What is the difference between EAR, JAR and WAR file
The word web sphere popularly refers to IBM middleware technology products. Web
sphere is known for its turn key operation in e business applications. It has run time
components and tools which can help in creating applications which run on WAS.
WAS refers to web sphere application server.
10) Explain about caching proxy of IBM Web sphere Edge sphere?
A caching proxy can be configured in forward direction or as a proxy. Content
requested by the user is cached by edge before sending or adhering to the query.
Page fragments arising from JSP or servlets are cached by Edge and the caching
process is slow. Performance and scalability of J2EE applications can be increased by
edge.
17) Is the naming of connection factory independent of the name specified by JMS
client?
Yes, the naming of connection factory is independent of the name specified by JMS
client. This is made possible by WAS (Web sphere application server) with its
resource references. It isolates the application from object names. This feature is
important because it gives us the flexibility to change the administered object
without changing the JMS client code.
1) Explain us in what way your education background will help you and the
organization?
When answering this question explain to him about your education background and
some extra courses you learnt during the process.
You need to correlate your education background with the job opening. It would be
added advantage if you can explain to him about the necessary features of the job.
2) Tell us something about yourself (One of the most common question asked)?
Make sure that you tell about yourself in detail. Keep it small and simple explain to
him about all your interests, previous job, passion, hobbies, projects, etc. Just brief
him about all your interests and passion without going into detail, if asked state him
about it in detail.
40
3) Why did you choose this specific course or stream of study when there are these
many options available to you?
When answering this question explain to him about why you choose this course or
stream of study. What made you to choose this course, it would be an added
advantage if you speak about the different projects you did. Also state or explain
about your goal and higher education pursuits.
8) What is your goal and what do you like to achieve in the near future?
Explain to him about the goal which you would like to pursue in the near future and
how the company can help you achieve that goal. Have a goal which is reasonable
and achievable because it gives you a feeling of accomplishment.
tone. The answer which you give will be kept in the record. Also make it a habit to
take small tours or travelling because every job demands that.
1)How to identify unused indexes in DB2 for Linux, UNIX, and Windows
database has gone into production, the existence of too many indexes turns
out to be a cause for decreased database performance. Many indexes mean.
During database application development, developers tend to define a large
number of indexes on tables to guarantee that each and every query performs well.
After application development has been finished and a database has gone into
production, the existence of too many indexes turns out to be a cause for decreased
database performance.
Many indexes mean more work for the database system when executing UPDATE,
INSERT, and DELETE (UID) operations. In addition, regular maintenance activities
like RUNSTATS and REORG also run considerably longer in cases where many
indexes are present. Therefore, to achieve the best database performance, it is
critical to be able to determine which indexes are necessary for query execution and
which indexes you can safely drop without impacting query runtimes. This article
explains several methods that a DB2® for Linux®, UNIX®, and Windows® (DB2
LUW) database administrator (DBA) can use to identify unused and seldom used
indexes.
The JAR file format is based on the popular ZIP file format, and is used for
aggregating many files into one. Unlike ZIP files, JAR files are used not only for
archiving and distribution, but also for deployment and encapsulation of libraries,
components, and plug-ins, and are consumed directly by tools such as compilers and
JVMs. Special files contained in the JAR, such as manifests and deployment
descriptors, instruct tools how a particular JAR is to be treated.
Security. You can digitally sign the contents of a JAR file. Tools that recognize your
signature can then optionally grant your software security privileges it wouldn't
otherwise have, and detect if the code has been tampered with.
Decreased download time. If an applet is bundled in a JAR file, the applet's class files
and associated resources can be downloaded by a browser in a single HTTP
transaction, instead of opening a new connection for each file.
Compression. The JAR format allows you to compress your files for efficient storage.
Package sealing. Packages stored in JAR files can be optionally sealed to enforce
version consistency and security. Sealing a package means that all classes defined in
that package must be found in the same JAR file.
Package versioning. A JAR file can hold data about the files it contains, such as
vendor and version information.
Portability. The mechanism for handling JAR files is a standard part of the Java
platform's core API.
Compressed and uncompressed JARs
The jar tool (see The jar tool for details) compresses files by default. Uncompressed
JAR files can generally be loaded more quickly than compressed JAR files, because
the need to decompress the files during loading is eliminated, but download time
over a network may be longer for uncompressed files.
Most JAR files contain a META-INF directory, which is used to store package and
extension configuration data, such as security and versioning information. The
following files or directories in the META-INF directory are recognized and interpreted
by the Java 2 platform for configuring applications, extensions, and class loaders:
MANIFEST.MF. The manifest file defines the extension- and package-related data.
INDEX.LIST. This file is generated by the new -i option of the jar tool and contains
location information for packages defined in an application or extension. It is part of
the JarIndex implementation and used by class loaders to speed up the class loading
process.
xxx.SF. This is the signature file for the JAR file. The placeholder xxx identifies the
signer.
xxx.DSA. The signature block file associated with the signature file stores the public
signature used to sign the JAR file.
The jar tool
To perform basic tasks with JAR files, you use the Java Archive Tool (jar tool)
provided as part of the Java Development Kit. You invoke the jar tool with the jar
command. Table 1 shows some common applications:
Function Command
Creating a JAR file from individual files jar cf jar-file input-file...
Creating a JAR file from a directory jar cf jar-file dir-name
Creating an uncompressed JAR file jar cf0 jar-file dir-name
Updating a JAR file jar uf jar-file input-file...
Viewing the contents of a JAR file jar tf jar-file
Extracting the contents of a JAR file jar xf jar-file
Extracting specific files from a JAR file jar xf jar-file archived-file...
Running an application packaged as an executable JAR file java -jar app.jar
--------------------------------------------------------------------------------
connection pooling and looks at some existing vendor implementations of those APIs.
He then looks at the upcoming J2EE Connector Architecture 1.0 that would support a
vendor-independent/pluggable approach to managing resource connections.
there are:
Type 1 : JDBC-ODBC Bridge Driver
Type 2: Native API Partly Java Driver
Type 3: Network protocol Driver-
Type 4: JDBC Net pure Java Driver
2) what is JDBC? Answer
JDBC(java Database Connectivity) is an API(Application
program Interfaces), that is useful to write a java program
to connect any database,and retrieve the data form the
database and utilize the data in the java program.
1.Making a connection to a database
2.Creating SQL or MySQL statements
3.Executing that SQL or MySQL queries in the database
4.Viewing & Modifying the resulting records
3) How warnings are retrieved in JDBC? Answer
while using jdbc, warnings can occur at any time
while getting connection
while creating statement
while getting resultset, at each , we can get using
45
getWarnings() method.
Global Security: In 6.0 we have 3 ways to provide security for admin console.
1) Local os user registry.
2) Custom user registry.
3) LDAP (Light Weight Directory Access Protocol) user registry.
2) custom user registry: Here we have to create two files named:
users.registry
groups.registry
We can create this files any where but we have to configure this absolute path to the
application servers.
3)LDAP: It is a mechanism & not a server. Here we are integrating seperate directory
servers.
if SSL is enabled the port number is 636, if it is not enabled 389.
47
-> In local os user registry we have to create user accounts and that user
accounts have to configure to websphere application servers.
where as in the custom user registry specifying user names and passwords in
a normal file and we are specifying the absolute path of that file into the websphere
application server. whenever we are going for LDAP user registry we have to specify
user id & password & type of directory server, port number (default is 389), if SSL is
enabled we have to specify port number as 636 and we have to specify Base
distinguished name which indicates authentication for users and we have to specify
Bind distinguished name and Bind password which specify authorization for user and
we have to select "Advanced Light Weight Directory Access Protocol user registry
settings" there we have to specify user filter classes and group filter classes
(automatically it will be there) and finally we have to restart the server.
avaliability of the servers in the cluster. The plug-in mainly perform the work
load management.If any server is processing any request then the plug-in will
route the request to the avaliability of the servers based on their weight and
based on the algorithams.
How to take back up ? while taking back is it necessary to stop the server?
execute backupConfig.sh command to take the backup ,yes it is required to stop the
servers,by default when you execute this command it will stop all the servers on the
node so yhe partially synchronized information will not be saved .
what is a webcontainer?
A container that implements the Web component contract of the J2EE architecture.
This contract specifies a runtime environment for Web components that includes
security, concurrency, life-cycle management, transaction, deployment, and other
services. A Web container provides the same services as a JSP container as well as a
50
federated view of the J2EE platform APIs. A Web container is provided by a Web or
J2EE server
What is the error HTTP 403 indicates and how to solve these issues?
This is due to SSL certificate or some security settings in the server might have
issues.
Introduction
Your Web server thinks that the HTTP data stream sent by the client (e.g. your Web
browser or our CheckUpDown robot) was correct, but access to the resource
identified by the URL is forbidden for some reason.
By far the most common reason for this error is that directory browsing is forbidden
for the
Web site. Most Web sites want you to navigate using the URLs in the Web pages for
that site. They do not often allow you to browse the file directory structure of the
site. For example try the following URL (then hit the 'Back' button in your browser to
return to this page):
This URL should fail with a 403 error saying "Forbidden: You don't have permission
to access /accounts/grpb/B1394343/ on this server". This is because our
CheckUpDown Web site deliberately does not want you to browse directories - you
have to navigate from one specific Web page to another using the hyperlinks in
those Web pages. This is true for most Web sites on the Internet - their Web server
has "Allow directory browsing" set OFF.
Any client (e.g. your Web browser or our CheckUpDown robot) goes through the
following cycle:
Obtain an IP address from the IP name of your site (your site URL without the
leading 'http://'). This lookup (conversion of IP name to IP address) is
provided by domain name servers (DNSs).
Receive an HTTP data stream back from your Web server in response. This data
stream contains status codes whose values are determined by the HTTP
protocol. Parse this data stream for status codes and other useful information.
This error occurs in the final step above when the client receives an HTTP status code
that it recognises as '403'.
You first need to confirm if you have encountered a "No directory browsing" problem.
You can see this if the URL ends in a slash '/' rather than the name of a specific Web
page (e.g. .htm or .html). If this is your problem, then you have no option but to
access individual Web pages for that Web site directly.
It is possible that there should be some content in the directory, but there is none
there yet. For example if your ISP offers a 'Home Page' then you need to provide
some content - usually HTML files - for the Home Page directory that your ISP
assigns to you. Until the content is there, anyone trying to access your Home Page
could encounter a 403 error. The solution is to upload the missing content - directly
yourself or by providing it to your ISP. Once the content is in the directory, it also
needs to be authorised for public access via the Internet. Your ISP should do this as
a matter of course - if they do not, then they have missed a no-brainer step.
If your entire Web site is actually secured in some way (is not open at all to casual
Internet users), then an 401 - Not authorized message could be expected. It is
possible, but unlikely, that your Web server issues an 403 message instead.
Some Web servers may also issue an 403 error if they at one time hosted your site,
but now no longer do so and can not or will not provide a redirection to a new URL.
In this case it is not unusual for the 403 error to be returned instead of a more
helpful error. So if you have recently changed any aspect of your Web site setup
(e.g. switched ISPs), then a 403 message is a possibility. Obviously this message
should disappear in time - typically within a week or two - as the Internet catches up
with whatever change you have made.
If you think that the Web URL *should* be accessible to all and sundry on the
Internet and you have not recently changed anything fundamental in your Web site
setup, then an 403 message indicates a deeper problem. The first thing you can do is
check your URL via a Web browser. This browser should be running on a computer to
which you have never previously identified yourself in any way, and you should avoid
authentication (passwords etc.) that you have used previously. Ideally all this should
be done over a completely different Internet connection to any you have used before
(e.g. a different ISP dial-up connection). In short, you are trying to get the same
behaviour a total stranger would get if they surfed the Internet to your Web page
URL.
52
If this type of browser check indicates no authority problems, then it is possible that
your Web server (or surrounding systems) have been configured to disallow certain
patterns of HTTP traffic. In other words, HTTP communication from a well-known
Web browser is allowed, but automated communication from other systems is
rejected with an 403 error code. This is unusual, but may indicate a very defensive
security policy around your Web server.
The first question is whether the Web page for your URL is freely available to
everyone on the Internet. If this is not the case, then you may need to provide two
items 2. Web Site User ID and 3. Web Site Password for your CheckUpDown
account - but only if your site uses HTTP Basic Authentication. The Web Master or
other IT support people at your site will know what security and authentication is
used.
If however your Web page is open to all customers and there have been no
fundamental changes recently to how your Web site is hosted and accessed, then an
403 message should only appear if your Web server objects to some aspect of the
access we are trying to get to your Web site. Because it indicates a fundamental
authority problem, we can only resolve this by negotiation with the personnel
responsible for security on and around your Web site. These discussions
unfortunately may take some time, but can often be amicably resolved. You can
assist by endorsing our service to your security personnel. Please contact us (email
preferred) if you see persistent 403 errors, so that we can agree the best way to
resolve them.
If the “page can’t display “error comes then what you will do in the
production system?
a) There must be some network issue or server not receiving the request.
Need to check the server availability.
What is the error HTTP 404 indicates and how to solve these issues?
The 404 or Not Found error message is an HTTP standard response code indicating
that the client was able to communicate with the server but the server could not find
what was requested..
What is the difference between page not found and HTTP 404? How to solve
these issues?
a) The “Page not found” error is, the request is not reaching the server. HTTP
404 errors is request is reaching to server but whatever it is expecting it’s not found
at expected location
What is meant by ear expander utility?
EAR Expander utility is used to expand the application binaries into any path,
normally we will use this to expand it in other than the default path.
53
Once expanded we will update the same app binaries from WAS admin console to
update WAS.
The EARExpander expands Ear files into the format desired by the application server
runtime, as described in the application installation instructions. EARExpander can
also collapse the expanded format back to a normal Ear (.jar or .zip) format.
product_installation_root/bin/EARExpander.bat
To view syntax, open a command line and invoke the tool without arguments. Here
is a typical result. The line breaks have been changed for better formatting in this
documentation.
ExpansionFlags indicate whether you want every JAR file expanded, or just the
contained WAR files within the EAR file. The default is all.
Expanding files
The following example command expands the file my.ear into the
product_installation_root/bin/myEAR directory:
Collapsing files
Type each of the above commands on a single line, despite their appearance in this
documentation.
54
JVM Logs
View and modify the settings for the Java Virtual Machine (JVM) System.out and
System.err logs for this managed process. The JVM logs are created by redirecting
the System.out and System.err streams of the JVM to independent log files. The
System.out log is used to monitor the health of the running application server. The
System.err log contains exception stack trace information that is useful when
performing problem analysis. There is one set of JVM logs for each application server
and all of its applications. JVM logs are also created for the deployment manager and
each node manager. Changes on the Configuration panel will apply when the server
is restarted. Changes on the Runtime panel will apply immediately.
Process Logs
View or modify settings for specifying the files to which standard out and standard
error streams write. The process logs are created by redirecting the standard out and
standard error streams of a process to independent log files. Native code writes to
the process logs. These logs can also contain information relating to problems in
native code or diagnostic information written by the JVM. There is one set of process
logs for each application server and all of its applications. Process logs are also
created for the deployment manager and each node manager. Changes on the
Configuration panel will apply when the server is restarted. Changes on the Runtime
panel will apply immediately.
log is maintained in a binary format. Use the Log Analyzer or Showlog tool to view
the IBM service log.
Performance Tuning
All the steps for Performance Tuning would approximately take 45 minutes.
Session Timeout
Reducing the session timeout can help reduce memory consumption requirements.
To change this value, open the WebSphere Admin Console and go to
Servers -> Application Servers -> (all server names) -> Web Container -> Session
Management -> Session Timeout
and set Timeout to 10 Minutes.
Servers -> Application Servers -> (all server names) -> Web Container -> Thread
Pool
and add the parameters for Minimum size threads and Maximum size threads to 70.
When a client wants to use a connection, it looks up a data source by name from
a JNDI server.
The data source then returns a connection to the client.
57
If the data source has no more connections, it may ask the database manager for
more connections (as long as it has not exceeded the maximum number of
connections).
When the client has finished with the connection, it closes the connection.
The data source then returns the connection to the available pool.
You can configure data sources for WebSphere ® Application Server v6.x by using the
Deployment page in the application deployment descriptor editor or using the
administrative console. For WebSphere Application Server v5.1 1 test environments
and servers you can configure data sources by using the Data Source page in the
server editor.
What are the profiles available in WAS 6.x? And difference between them?
In WAS 6.1 we have 4 different types of profiles available. They are
Deployment Manager Profile(DMGR):
The deployment manager profile defines a deployment manager in a
distributed server environment
Application Server Profile:
It is a single stand –alone application server. This profile gives you an
application server that can run stand alone or un-managed.
Custom Profile
A Custom profile is an empty Node intended for federation to a
deployment manager.
Cell Profile
The application server is federated to the DMGR profile. It is a
combination of DMGR and Application server profiles.
What is the programming model/Module?
JAVA related wage to me..
What is meant by Asymmetric Cluster and how it works?
a) Clusters are groups of servers that are managed together and participate in
workload management. A cluster can contain nodes or individual application servers.
In an asymmetric cluster, business logic is split into partitions, where each partition
can be the sole accessor of a set of underlying data. As a result, each node in the
cluster can implement it's own local cache (and be the sole accessor of that data),
resulting in high performance reading and writing without the need to maintain a
distributed cache between cluster nodes.
Asymmetric clustering proposes an architecture that is almost opposite to the typical
stateless server farm where the entire app is replicated across machines, some times
using distributed caching products for performance increasing.
What information contains by SERVER INDEX file ?
a) Server index will have SOAP/Boot strap and all ports and details
What information contains by Plugin-cnf.xml file ?
58
-Symmetric encryption os used to transfer data between the client and server
-- symmetric encryption is fast but require a shared secret
3) ikeyman:
By using ikeyman we can open the KDB(key data base) and add the
certificates to the key database.
What is the difference between round robin and random load balancing?
a) Round robin load balance is nothing but symmetric clustering and random
load balancing nothing but asymmetric clustering
What is the activity log and what it is useful?
The application server creates the activity.log file from the activity of the various
WebSphere Application Server components. you cannot read this log with a text
reader. You ca use this script called, showlog under appserver root.
Ex.,
60
./WAS_INST_ROOT/bin/showlog PATH_TOACTIVITY_LOG/activity.log
like this
websphe: /software/opt/IBM/WebSphere/AppServer/bin
$ ./showlog ../profiles/AppSrv*/logs/activity.log
This displays ur activity log something like this, just as a sample:
ExtendedMessage:
What are the different roles available in the WAS?
a) In WAS we have the following roles
If memory leakage is there in then where (in which file) we get this
information?
a) Memory leakage information can get in the process logs ( Native_stdout and
Native_stderrer logs)
How many ways we can federate the Node?
Ans Before federating any Node we must make sure
Application server should be started on the Node to be added
61
We need to find the SOAP connector for DMGR( we can find this in
communication section in the detailed page for the application
server(DMGR) default is 8879 )
Custom Repository
Tell about federated repository?
Federated Repository is one of the existing users registry type. In this method we
can use multiple repositories with WebSphere application server.
If we give heap size value same for both min and max then what are the
advantages and what are the disadvantages?
The JVM has thresholds it uses to manage the JVM's storage. When the thresholds
are reached, the garbage collector gets invoked to free up unused storage.
Therefore, garbage collection can cause significant degradation of Java performance.
Before changing the initial and maximum heap sizes, you should consider the
following information:
In the majority of cases you should set the maximum JVM heap size to
value higher than the initial JVM heap size. This allows for the JVM to
operate efficiently during normal, steady state periods within the
confines of the initial heap but also to operate effectively during
periods of high transaction volume by expanding the heap up to the
maximum JVM heap size.
In some rare cases where absolute optimal performance is required
you might want to specify the same value for both the initial and
maximum heap size. This will eliminate some overhead that occurs
when the JVM needs to expand or contract the size of the JVM heap.
Make sure the region is large enough to hold the specified JVM heap.
Beware of making the Initial Heap Size too large. While a large heap size initially
improves performance by delaying garbage collection, a large heap size ultimately
affects response time when garbage collection eventually kicks in because the
collection process takes more time.
What is FFDC?
63
a) The first failure data capture (FFDC) log file saves information that is
generated from a processing failure. These files are deleted after a maximum
number of days has passed .
There are two artifacts which are produced by FFDC, the information can be located
in the <Install Root>/logs/FFDC directory:
* Exception Logs:<ServerName>_Exception.log
* Incident
Stream:<ServerName>_<threadid>_<timeStamp>_<SequenceNumber>.txt
Exception Log
row elements
The exception logs contains all of the exception paths which have been encountered
since the server has started. Due to optimizations in the data collection, the table
was created to give an over view of the exceptions which have been encountered in
the server. A entry in the table look like this :
The first element in the row is a simply index, this is simply used to determine the
number of rows in the table. In some entries, a '+' may appear in the first column,
this indicates that the row has been added to the table since the last time the entire
table was dunmped.
The second element is the number of occurences. This is useful to see if there is an
unusual number of exceptions which are occurring.
The third element in the row, is a time stamp for the last occurence of the
exeception. This is useful in looking at exceptions which have occurred at about the
same time.
The last element in the row is a combination of values. This consists of the
exception name, a source Id and the probe Id. This information is useful to locate
information in the incident steam about the specific failure.
file content
The make up of the file can be a little confusing when first viewed. The file is a
accumulation of all of the dumps which have occurred over the life of the server.
This means that much of the informaion in the file is out of data, and does not apply
to the current server. The most relevent information is the last (tail) of the file.
64
It is quite easy to locate the last dump of the exception table. The dump will be
deliminated by '-------------------...'. Entries which begin with a '+' appear outside
the delimination of the table, and indicate that they are additions to the table since
the last time the table was dumped. (Again due to performance concerns, the table
is dump only periodically, and when the server is stopping).
The information in the above file is displayed in the unordered form as the hash
table. A more viewable form of the file would be to actually sort the output based
upon the time stamp. (This is done by using mks commands, hopefully there are
available on your system).
Sorted output of only the last dump of the exception table for
Server1_Exception.log. This is done by the following command :
tail -n<n> <servername>_exception.log | sort -k4n
where n is the number exceptions in the exception table plus 1 (use the index value
to determine this value).
<servername> is the name of the server.
Note: The sort key needs a little work for servers which have rolled the data.
For demonstration purposes, the start, run and stop time have been included in the
exception log..
Incident Stream
The incident stream contains more details about exceptions which have been
encountered during the running of the server. Depending on the configuration of the
property files, the content of the incident streams will vary.
The default settings of the property files, the incident stream will not contain
exception information for exceptions which were encountered during the start of the
server (due to the Level=1 in the ffdcStart.properties). But where the server does to
ready, and new exeception which is encountered will be processed.
The incident stream files should be used in conjunction of the exception log. The
values which are contained in the exception log, in most instances will have a
corresponding entry in the incident stream. The relationship between the exception
log and the incident stream is the hash code which is made up of the exception
type, the source Id, and the probe Id. The simpliest way to look at this information
is to use the grep command. The information is not all contained on the same line, if
you need to know the exact file containing the value, you can use a compound grep
command.
file content
65
The file contains information on exception which have been encountered. Each
exception will contain information which corresponds to the information (exception
name, source Id and the probe Id) contained in the exception table (documented
above). If the catch of the exception is a non-static method, the content of the this
pointer. In some instances, if there is a diagnostic module which corresponds to the
current execution, the DM will write the information about the state of the object to
the incident stream.
In some instances, there may be an exception which was encountered while the
server is running which will not produce a call stack. This is because the exception
was encountered during the start of the server, and since the server started, the
exception is considered to be a normal path exception. All of the exception can be
seen by either looking at all of the runtime exceptions, or looking at all of the
exceptions.
How many SSL Certificate authorities available in today’s market ?
There might be many SSL CAs. Some of the SSL CAs are
Etrust
Verisign
Geotrust
RSA etc.
Test 377, IBM WebSphere Application Server, Network I May 2009 253
Deployment, V7.0, Core Administration
Test 378, IBM WebSphere DataPower SOA Appliances Firmware I June 2009 289
V3.7.x
Test 374, IBM WebSphere MQ V7.0, System Administration I July 2009 994
2009
Test 372, IBM WebSphere Business Modeler Advanced V6.2, I July 2009 992
Business Analysis and Design
Test 375, IBM WebSphere Process Server V6.2, System I October 995
Administration 2009
None in plan.
Test 371, Web Services Development for IBM WebSphere I August 807
Application Server V7.0 2009
* E = entry; I = intermediate; A = advanced
Manageprofile –listprofiles
Delete Profile:
Manageprofile –delete –profilename <profile_name>
39) How many ways we can deploy the application ? and What is the
command to deploy application ?
a) It depends on the version of the WAS we are using, but 5X and above provide
the following options.
1) Using Admin Console:
In admin console
Enterprise applications -- > Install
Provide the required parameters like full path, context root, etc.
2) Hot Deployment :
“We could copy directly the JAR files to the deployedapps folder in the
websphere “ we call this method as Hot Deployment
Dropping JSP files, with enabled class reloading ( Not recommended
for Production)
3) Using Wsadmin command:
a) In J2EE application modules are packaged as EAR, JAR and WAR based on
their functionality
JAR: EJB modules which contains enterprise java beans class files and EJB
deployment descriptor are packed as JAR files with .jar extenstion
WAR :Web modules which contains Servlet class files,JSP FIles,supporting files, GIF
and HTML files are packaged as JAR file with .war( web achive) extension
EAR :All above files(.jar and .war) are packaged as JAR file with .ear ( enterprise
archive) extension and deployed into Application Server.
Web container
when we receive request from client browser so web container will act as interface
between client request and Servlets and jsp in other words Servlets and jsp will
reside under web container in order to server client request. hence we required web
container in order to invoke Servlets or JSP (Java Server Pages)
EJB Container:
One or more EJB modules, each containing one or more enterprise beans, can be
installed in a single container.
The EJB container provides many services to the enterprise bean, including the
following:
70
1. I found in the WAS console that, the default personal certs in the node
level of WAS in not reflected in the web servers. Which was added in the
DMGR?
Steps i followed to resolve this are :
i Added the same from here.. as i already enabled Dynamically update the
runtime when changes occur" option.. it should update without restart...
Then i came to Plugin-key.kdb to verify whether the added cert is updated in
the KDB or not.. using ikeyman.
Reference:
http://www-01.ibm.com/support/docview.wss?rs=180&uid=swg21264477
http://www-01.ibm.com/support/docview.wss?uid=swg21198862
71
After that we followed the same with suggested steps and we succeeded
finally we upgraded to 6x.
It was one of challenging task in my career
47) What is the Ticketing process and escalation /approval process?
a) For all issues operations team gets alerts and they used to raise the tickets
against the appropriate team through USD (unicentre service desk). Depending on
the priority we used to allot the tickets. The priority was like (high priority P1, P2,
and low priority P3, P4, P5). Low priority tickets were attending by offshore team and
high priority were serving by onsite team. For high priority tickets we need to get
approvals from the service delivery manager. Intern service delivery manager will
take all approvals from the client side to deliver the solution. Once we get the
approvals then service delivery manager will start a bridge call
48) What is the difference between web server and App Server?
a) A Web server exclusively handles HTTP requests, whereas an application
server serves business logic to application programs through any number of
protocols
49) What is rollout update in was6.1?
a) Automatic roll out of application update in a clustered environment
Ensures no service interruption of the application. Stops, updates and starts the
application one cluster member at a time, while the other cluster members continue
to run the application
50) What is JDK version supporting in WAS 6.1?
a) J2RE 1.5.0
51) How to set plug-in logs ?
a) In Administrative console
Servers --> Webservers -->Webserver -->log files (configuration tab)(
here we can change the path of the log files (access.log,error.log)
52) What is the difference between heap dump and thread dump?
a) Heap dumps anytime you wish to see what is being held in memory Out-of-
memory errors
72
System cores
Heap dumps are taken by issuing a "kill -3" against the JVM pid. There is a cost
associated with producing heap dumps. The writing of the heap dump can be cpu
and i/o intensive depending on the size of the configured heap, you can take heap
dumps anytime you wish to see what is being held in memory. Out-of-memory
errors or a good time to view heap dumps. In fact,in most cases heap dumps should
be created when an OOM is triggered. Unless you're an administrator or root you'll
need to own the process you want to kill in order for the command to work.
Depends on the OS.
Java cores also known as thread dumps or java dumps, used for viewing the thread
activity inside the JVM at a given time. Thread dump should also contain a lot of
additional information besides just the threads and stacks used to determine hangs,
deadlocks, and reasons for performance degredation.
The kill -3 command captures JVM signals and dumps the requested diagnostic
material.There are options available to dump the heap in .txt format this files can be
huge and unless you're a genius with lots of time on your hands - don't try to read
the text dump with vi or something…..…….
Use MDD4J or HeapAnalyzer.
For taking heap dumps you need set these environment entries for that JVM using
admin consle(this is one way of doing taking heap dumps, u can also go with jacl or
jython scripts)
IBM_HEAPDUMP TRUE
IBM_HEAPDUMP_OUTOFMEMORY true(if a OOM occurs, a dump is saved to /tmp
IBM_HEAPDUMPDIR appropriate directory.
Now, if you run kill -3 pid, then a heap dump is taken in the specified directory and
also a core dump will be taken. If you didn't specify any environment entries then
only a core dump is taken
53) How you will check the details of a process if you know only port
number of that process?
First we need to find the socketno of that port by using
Netstat –Aan|grep <port_no>
Then we need to find the sid by using the socketno
Rmsock <socketno> protocol
Ex:
#netstat –Aan|grep 944
#f100020000fc4398 ……………you get some more information….
73
1) Out of Memory:
If we get this error we need to check for the standards configured in
the application server. I mean heap settings in the server and if not we
need to resent according to the standards. If you are getting this error
frequently then we need to ask application team to check for the
memory leakage. We can get this statics from the Natice_stdout and
Native_stderr files.
2) No of connections reached
Check for the recommended connection pool size in the JDBC driver.
Check the unused connections.
Temporarily increase the connection pool size.
After analysing the logs and situation if required then recycle the
application server to resolve the issue.
3) File System issue:
Check the file system by using DU
Forward to the System admin team and coordinate for the resolution.
4) Thread Dump:
Create the thread dump by issuing kill-3 command and forward to the
application team for analysis.
5) 100% CPU utilisation:
Check for the CPU utilisation bye using TOPAS command.
If required then kill some of the non important process which are
taking more cpu %
6) HTTP errors like (HTTP 400,401,403,404,500,502 etc.)
Ans) it consumes large amount of memory in networks with many users, because
each server has a copy of all sessions. And another disadvantage is each change to
a session must be replicated to all application servers.
56) Difference between horizontal clustering and vertical clustering?
Ans) the main difference between horizontal cluster and vertical cluster are:
1) We can configure the cluster members on the same node in the vertical
clustering, whereas in horizontal clustering cluster members will be there on
different nodes. In other words A WebSphere cluster consists of having multiple
application servers (cluster member or clones) across a machine (Vertical Cluster)
or across several machines (Horizontal Cluster)
Log records can be analyzed using a symptom database to interpret known events
and error conditions, and to get detailed information on error resolution.
Ans) 1) Collector tool is the tool which collects the information about the
websphere application server installation and configuration.
2) This is available in two versions
3) In either case, the result is JAR file that contains a lot of information
needed by IBM support to diagnose the problem
Ans) Log Analyzer provides interactive interface to WebSphere activity log and
contains on-line diagnoses and resolutions to known problems
Log analyser, the tool that was previously provided for viewing and analyzing the
activity or service log file, is removed from 6.1 release of the IBM WebSphere
application server.
Instead, use IBM log and trace analyser for Eclipse in the application server toolkit,
installable from the launchpad console.
For more information, see 'application server toolkit> detecting and analyzing
runtime problems > log and trace analyzer' in the information center.
Overview
The Log Analyzer, is a separately downloaded feature of WebSphere 3.5.2 and later
(it is now bundled with WebSphere 4.0x. 4.0+ and 5.0 users do not need to
download the the tool). It is designed to assist customers in diagnosing and
resolving common runtime problems.
Starting the Log Analyzer in Windows
Windows users may launch it manually with the command <WebSphere
Root>\bin\waslogbr
Starting the Log Analyzer in Unix
1. Change directory to <serverRoot>/bin; and
2. Invoke shell script waslogbr
./waslogbr
The Log Analyzer is a GUI application, so Unix users will need to launch it from a
machine with a CDE-type environment, or export the display to a GUI client
platform.
Using the Log Analyzer
76
Once the tool has opened, use the File->open menu item, and select the file
<websphere install root>/logs/activity.log. (You can also browse to activity.logs
which customers have sent you.) Expand the tree of WebSphere admin and app
server logging sessions. Uncolored records are "normal", yellow are warnings, and
pink are errors. If you select a record, you'll see its contents, including the basic
error or warning message, date, time, which WebSphere component logged the
record, and which process (i.e., admin server or an app server) it came from, in the
upper-right hand pane.
The Log Analyzer does not analyze any other log files, such as default_stderr.log or
tracefile.
To analyze the records, right click on a record in the tree on the left (click on the
"UnitOfWorkView" at the top to get 'em all), and select "analyze". Now any records
with a green check mark next to them match a record in the symptom database.
When you select a check-marked record, you'll see and explanation of the problem
in the lower-right-hand pane.
Updating the symptom database
The database of known problems and resolutions -- used by WebSphere when you
click the "analyze" menu item -- is periodically enhanced as new problems come to
light and new versions of WebSphere are introduced. To ensure that you have the
latest version of the database, use the "file -> update database -> advanced
symptom database" menu item from within the log analyzer tool. A good rule of
thumb would be to do this at least once a month. Users who have just installed the
product and have never run the update should do so immediately, since extensive
updates have been made since the tool was released.
61) What is MBeans?
Ans) MBeans are managed beans, Java objects that represent resources to be
managed. An MBean has a management interface consisting of:
Websphere application server provides a number of MBeans, each of which can have
different function and operations available. For ex
a) An application server MBean migh expose operations such as start and stop
b) An application MBean might expose operations such as install and uninstall.
MBeans can be standard or dynamic. Standard MBeans are Java objects that conform
to design patterns derived from the JavaBeans component model. Dynamic MBeans
define their management interface at runtime.
A dynamic MBean is an MBean that defines its management interface at runtime. For
example, a configuration MBean could determine the names and types of the
attributes it exposes by parsing an XML file.
Ans) Single sign-on (SSO) is a property of access control of multiple, related, but
independent software systems. With this property a user logs in once and gains
access to all systems without being prompted to log in again at each of them.
Single sign-off is the reverse property whereby a single action of signing out
terminates access to multiple software systems.
Ans) No, because node group is nothing but group of nodes which are there on
same platforms.
78
Ans) Tivoli Performance Viewer. The Tivoli Performance Viewer (TPV) enables
administrators and programmers to monitor the overall health of WebSphere
Application Server without leaving the administrative console.
From TPV, you can view current activity or log Performance Monitoring Infrastructure
(PMI) performance data for the following:
In addition to providing a built in viewer for PMI, TPV also allows you to view data for
other products or customer applications that implement custom PMI
Ans) Sun’s JNDI API is a standard extension to the java platform and it allows the
java application to access naming and directory services. With the help of JNDI java
applications can seamlessly access the heterogeneous enterprise naming and
directory services like DNS, LDAP, and Local file system, or objects in an application
server.
67) What is trace file & where you get more details in trace or log files?
Ans) Trace file contains the step by step activity details of the WAS process. Trace
file only contains more details than the logfile
68) What is virtual host and give two different virtual hosts?
Ans) The term Virtual Host refers to the practice of maintaining more than one
server on one machine, as differentiated by their apparent hostname. For example,
it is often desirable for companies sharing a web server to have their own domains,
with web servers accessible as www.company1.com and www.company2.com,
without requiring the user to know any extra path information.
69) What are difference scripting options in wasadmin engine?
b) Adminconfig
c) AdminApp
d) AdminTask
Ans) If your logs are not rotating that means your JVM hanged.
73) What is FFDC? Where you will use?
Ans) FFDC is nothing but first failure data capture. This is generated at the first
time failure of your system. It will be deleted after some time automatically. It is
usefull for diagnosis purpose.
74) How you get better performance by giving the –xnoclassgc in generic
JVM arguments in the JVM ?
Ans) By default the JVM unloads a class from memory when there are no live
instances of that class left, but this can degrade performance. Tuning off class
garbage collection eliminates the overhead of loading and un-loading the same
class multiple times.
If a class is no longer needed, the space that it occupies on the heap is normally
used for the creation of new objects. However if you have an application that
handles requests by creating new instance of a class and if requests for that
application come in at random times, it is possible that when previous requester is
finished, the normal class garbage collection will clear up this class by freeing the
heap space it occupied, only to have re-instantiate the class when the next request
comes along. In this situation you might want to use this option to disable the
garbage collection of classes
Avoid Trouble:
This option should be used with caution, if your application creates dynamically or
uses reflection, because for this type of application, the use of this option can lead
to native memory exhaustion, and cause the JVM to throw an out of memory
exception. When this option is used, if have to redeploy an application you should
80
always restart the application server to clear the classes and static data from the
previous version the application.
Ans) The Web server plug-in in the Web server is aware of the configuration of all
Web containers and can route around a failed Web container in a cluster.
Sessions can be persisted to a database or in-memory using data replication
services.
76) Explain about dynamic cache in WAS ?
Cache replication
Cache replication among cluster members takes place using the WebSphere data
replication service. Data is generated one time and then copied or replicated to other
servers in the cluster, saving execution time and resources.
External caching
The dynamic cache controls caches outside of the application server, such as that
provided by the Edge components, an IBM HTTP Server’s FRCA cache that is not
z/OS, and a WebSphere HTTP Server plug-in ESI Fragment Processor that is not
81
z/OS. When external cache groups are defined, the dynamic cache matches external
cache entries with those groups and pushes out cache entries and invalidations to
those groups. This external caching enables WebSphere to manage dynamic content
beyond the application
server. The content can then be served from the external cache instead of the
application server, improving performance.
Dynamic caching
The dynamic cache service improves performance by caching the output of servlets,
commands and JSP files. The dynamic cache works within an application server,
intercepting calls to cacheable objects, for example through a servlet's service()
method or a command's execute() method, and either stores
the object's output to or serves the object's content from the dynamic cache.
Because J2EE applications have high read-write ratios and can tolerate small degrees
of latency in the currency of their data, the dynamic cache can create an opportunity
for significant gains in server response time, throughput, and
scalability. The following caching features are available in WebSphere Application
Server.
Cache replication:
Cache replication among cluster members takes place using the WebSphere internal
replication service. Data is generated one time and copied or replicated to other
servers in the cluster, thus saving execution time and resources.
External caching:
The dynamic cache has the ability to control caches outside of the application server,
such as IBM Edge Server, a non-z/OS IBM HTTP Server's FRCA cache, and a non-
z/OS WebSphere HTTP Server plug-in ESI Fragment Processor. When external cache
groups are defined, the dynamic cache matches externally cacheable cache entries
with those groups, and pushes cache entries and invalidations out to them. This
82
allows WebSphere to manage dynamic content beyond the application server. The
content can then be served from the external cache, instead of the application
server, improving savings in performance.
77) Administrator point of view how many containers are there in was 6.1
?
Portlets are packaged in WAR files. Note that the portlet runtime does not provide
the advanced capabilities of WebSphere Portal, such as portlet aggregation and
page layout, personalization and member services, or collaboration features.
Web container:
The Web container processes servlets, JSP files and other types of server-side includes.
Each application server runtime has one logical Web container, which can be modified,
but not created or removed.
Embedded HTTP server: the Web container runs an embedded HTTP server for
handling HTTP(S) requests from external Web server plug-ins or Web browsers. The
83
embedded Web server is based on the IBM HTTP Server product. Directing client
requests to the embedded Web server is useful for testing or
development purposes and, in the Express configuration, can be considered for
production use. In the more advanced configurations, the use of an external Web
server and Web server plug-in as a front end to the Web container is more
appropriate for a production environment.
Web services engine: Web services are provided as a set of APIs in cooperation
with the J2EE applications. Web services engines are provided to support SOAP.
EJB container
The EJB container provides all the runtime services needed to deploy and manage
enterprise beans. It is a server process that handles requests for both session and
entity beans. The enterprise beans (packaged in EJB modules) installed in an
application server do not communicate directly with the server; instead, the EJB
container provides an interface between the EJBs and the server. Together, the
container and the server provide the bean runtime environment. The container
provides many low-level services, including threading and transaction support. From
an administrative viewpoint, the container manages data storage and retrieval for
the contained beans. A single container can host more than one EJB JAR file.
There are five types of deployment descriptors, each of which corresponds to a type
of deployment unit:
79) Difference between JACL & JYTHON and which one is better?
85
Ans) 1)
a) Jython depends on the Python commands whereas Jacl(Java command
language) depends on the Tcl commands.
b) Jython syntax seems more natural to programmers used to Java or C, but Jacl
syntax can be more familiar to administrators who are familiar with Tcl
c) Each language has its own style and syntax, but they end up being able to do
the same things
WSADMIN scripting tool can be used in an interactive mode, the main ability for
wsadmin is to provide the ability to run scripts.
Ans) Only difference in this application installation is optional context root for JAR
and EAR and for WAR it is mandatory. If EAR file is having multiple modules
like JAR,WAR then we can target these files to different application servers.
82) What is context root?
Ans) The context root identifies the web application. By context root only your
configuration file (Plugin-cnf.xml) route the request to the particular
application.
83) Why you are not giving context root for EAR?
Ans) Context root is optional for EAR file. If we will give context root for EAR, we
can access EAR file using that context root, If it uses SSO, we can access thru
SSO login page, If EAR contains .JARs which is ment to access through EJB
applications, then developers might use any of the protocols like IIOP/RMI in
their code/login.
84) What is the memory requirement for 6.x?
89) What is the s/w and h/w requirements to install the WAS 6.x?
Hard ware requirements for the WAS 6.1 installation.
Memory : Minimum 512 MB, Recommended 1GB ( project recommended it
will go up to 4GB to 5GB )
Had disk (File system) : Temp : 10GB,Was install root 10GB,Logs :
10GB
.
90
90) Which version of unix you are using and what is java version which
supports for was 6.x ?
91) While installing if you get error like “java not found”then what could
be the reason and how you solve it?
Ans) The problem: Attempting to use the LaunchPad program from CD-ROM
installation fails with a /java: not found error.
The solution: Change directories to the cdrom/ directory and try the installation
again.
92) How you will schedule jobs using cron jobs how you will set?
A crontab file contains entries for each cron job. Entries are separated by
newline characters. Each crontab file entry contains six fields separated by
spaces or tabs
in the following form:
30 6 * * 1,3,5 /usr/bin/calendar
93) Explain about ssl configuration steps using admin console?
3) ikeyman:
By using ikeyman we can open the KDB(key data base) and add the
certificates to the key database.
Procedure
1. Click Security > SSL certificate and key management > Manage
endpoint security configurations.
3. Click SSL configurations under Related Items. You can view and select any
of the SSL configurations that are configured at this scope. You can also view
and select these configuration at every scope that is lower on the topology.
4. Click New to display the SSL configuration panel. You cannot select links
under Additional Properties until you type a configuration name and click
Apply.
6. Select a truststore name from the drop-down list. A truststore name refers to
a specific truststore that holds signer certificates that validate the trust of
certificates sent by remote connections during an SSL handshake. If there is
no truststore in the list, see Creating a keystore configuration to create a new
truststore, which is a keystore whose role is to establish trust during the
connection.
7. Select a keystore name from the drop-down list. A keystore contains the
personal certificates that represent a signer identity and the private key that
WebSphere Application Server uses to encrypt and sign data.
8. Choose a default server certificate alias for inbound connections. Select the
default only when you have not specified an SSL configuration alias elsewhere
and have not selected a certificate alias. A centrally managed SSL
configuration tree can override the default alias. For more information, see
Central management of Secure Sockets Layer configurations.
9. Choose a default client certificate alias for outbound connections. Select the
default only when the server SSL configuration specifies an SSL client
authentication.
93
10. Review the identified management scope for the SSL configuration. Make the
management scope in this field identical to the link you selected in Step 2. If
you want to change the scope, you must click a different link in the topology
tree and continue at Step 3.
11. Click Apply if you intend to configure Additional Properties. If not, go to Step
24.
12. Click Quality of protection (QoP) settings under Additional Properties. QoP
settings define the strength of the SSL encryption, the integrity of the signer,
and the authenticity of the certificate.
o If you select None, the server does not request that a client send a
certificate during the handshake.
o If you select Supported, the server requests that a client send a
certificate. However, if the client does not have a certificate, the
handshake might still succeed.
o If you select Required, the server requests that a client send a
certificate. However, if the client does not have a certificate, the
handshake fails.
Important: The signer certificate that represents the client must be in the
truststore that you select for the SSL configuration. By default, servers within
the same cell trust each other because they use the common truststore,
trust.p12, that is located in the cell directory of the configuration repository.
However, if you use keystores and truststores that you create, perform a
signer exchange before you select either Supported or Required.
17. Click Update selected ciphers to view a list of the available ciphers for each
cipher strength.
20. Select a default trust manager for the primary SSL handshake trust decision.
21. Define a custom trust manager, if appropriate. You can define a custom trust
manager that runs with the default trust manager you select. The custom
trust manager must implement the JSSE javax.net.ssl.X509TrustManager
interface and, optionally, the com.ibm.wsspi.ssl.TrustManagerExtendedInfo
interface to obtain product-specific information.
e. Click OK. When you return to the Trust and key managers
panel, the new custom trust manager displays in the
Additional ordered trust managers field. Use the left and
right list boxes to add and remove custom trust managers.
Important: If you choose to implement your own key manager, you can
affect the alias selection behavior because the key manager is responsible for
selecting the certificate alias from the keystore. The custom key manager
might not interpret the SSL configuration as the WebSphere Application
Server key manager IbmX509 does. To define a custom key manager, click
Security > Secure communications > SSL configurations >
SSL_configuration > Trust and key managers > Key managers > New.
Click OK to save the trust and key manager settings and return to the
new SSL configuration panel.
Results
Important: You can override the default trust manager when you configure at least
one custom trust manager and set the
com.ibm.ssl.skipDefaultTrustManagerWhenCustomDefined property to true. Click
Custom Property on the SSL configuration panel. However, if you change the
default, you leave all the trust decisions to the custom trust manager, which is not
recommended for production environments. In test environments, use a dummy
trust manager to avoid certificate validation. Remember that these environment are
not secure.
What to do next
In this release of WebSphere Application Server, you can associate SSL
configurations with protocols using one of the following methods:
Set the SSL configuration on the thread programmatically
Associate the SSL configuration with an outbound protocol, and target host
and port. For more information, see Associating a Secure Sockets Layer
96
Ans) the Web server plug-in in the Web server is aware of the configuration of all
Web containers and can route around a failed Web container in a cluster.
Sessions can be persisted to a database or in-memory using data replication
services.
IBM web sphere commerce has a single platform which offers complete
ecommerce solutions to developers. It can be very productive if you are
planning to do business with consumers, business and indirectly through
channel partners. This can be used to perform business with consumers,
business and channel partners altogether.
98) Detail about the architecture of web sphere?
Web sphere edge server is used to improve the performance of web based
systems. It can be used as forward or proxy server. Basically four
components are present in the web sphere they are Network dispatcher,
Caching proxy, Content distribution and application service at the edge.
101) Explain about extended deployment?
Security model for web sphere is primarily based on JAVA EE security model.
It also depends upon the operating system. User authentication and
authorization mechanisms are also provided in WAS. Light weight third party
authentication mechanism is the main security feature present in WAS.
103) Explain about asymmetric clustering?
105) Explain about caching proxy of IBM Web sphere Edge sphere?
Managing singletons will be a thing of the past and it also provides hot
recovery of singletons which makes you forget about your GC collected
singletons. Transaction logs can stored on a shared file system. For clustering
run time operations deployment manager`s role was eliminated. J2EE failover
support and cell configuration support is also present.
107) Explain about IBM web sphere integration developer?
Web sphere integration developer provides an IDE to build applications based
on service oriented architecture. Web sphere process server and web sphere
ESB were built with WID. WID was built with RAD Eclipse based technology.
108) Explain about compute Grid?
Compute grid is also known as Web sphere batch. Web sphere extended
deployment offers a Java batch processing system called as Compute Grid.
This forms an additional feature to Web sphere network environment. Various
features are provided which help a developer to create, manage and execute
batch jobs. Job scheduler, xJCL, batch container and batch programming
controller.
109) Explain about web sphere MQ Real time transport?
Web sphere MQ and Web Sphere Business integration manager Broker are
very useful in providing Java messaging services to wide range of clients
(publisher –subscribe, point to point). Java classes are chiefly responsible for
translating the API calls to API`s defined by web sphere. It is very useful to
have knowledge of Web sphere MQ for proper configuration.
111) Explain the attribute CHANNEL in web sphere MQ?
CHANNEL specifies the name of the server connection channel. Generally this
is Web Sphere MQ network abstraction. The default standard used by
CHANNEL is SVRCONN which is the server connection channel. This server is
generally used to communicate to the queue manager by the client.
99
JACL and JYTHON are the two scripting language Which WebSphere
supports. Jacl is an implementation of a Tcl interpreter written entirely in
Java.
20) how to connect to the db2 database from websphere studio?
115) I need the difference btw the two versions of 5.x and 6.x. And in
which field they differ and why we go for 6.x rather than 5.x. and what
are the similarities for both 5.x and 6.x ?
116) How you will replace the multible occurance of single word in a text
file with another word ?
Ans) We can replace the word in vi editor by using the following command
:%s/text1 /text2 /g (return)
Text1 will be replaced by text2
117) In a clustered environment I have node1 in cell1 now I need to
configure same node in cell2 . How can I achieve this task ?
Ans) we can configure one node in one cell only. So we can can’t configure the same
node in another cell
118) How you will install the WAS?
Ans) we can apply the fix packs using the update installer. Before we go to apply fix
packs we need to take backup of the existing configuration of our WAS and all
profiles.
To take backup we can use the command
Syntax
The command syntax is as follows:
backupConfig <backup_file> [options]
where backup_file specifies the file to which the backup is written. If you do not
specify one, a unique name is generated.
The QEJBSVR user profile must have *WX authority to the directory path specified in
backup_file. If no path is specified, the QEJBSVR user profile must have *WX
authority to the current working directory.
Parameters
-nostop
Tells the backupConfig command not to stop the servers before backing up
the configuration.
-quiet
Suppresses the progress information that the backupConfig command prints
in normal mode.
-logfile <fileName>
101
Specifies the location of the log file to which information gets written.
-profileName <profileName>
Generates trace information into the log file for debugging purposes.
-username <name>
Specifies the user name for authentication if security is enabled in the server.
Acts the same as the -user option.
-user <name>
Specifies the user name for authentication if security is enabled in the server.
Acts the same as the -username option.
-password <password>
-help
-?
The following example creates a file called myBackup.zip, and does not stop any
servers before beginning the backup process.
Syntax
The command syntax is as follows:
restoreConfig <backup_file> [options]
where backup_file specifies the file to be restored. If you do not specify one, the
command will not run.
102
Parameters
-help
-logfile <fileName>
Specifies the location of the log file to which trace information is written. By
default, the log file is named restoreConfig.log and is created in your logs
directory.
-nostop
Tells the restoreConfig command not to stop the servers before restoring
the configuration.
-password <password>
-profileName
-replacelog
-trace
Generates trace information into the log file for debugging purposes.
-username <name>
Specifies the user name for authentication if security is enabled in the server.
Acts the same as the -user option.
-user <name>
103
Specifies the user name for authentication if security is enabled in the server.
Acts the same as the -username option. -?
Prints a usage statement.
You can use the restoreConfig command to recover an application server if it fails.
Perform the following steps:
restoreConfig app_server_root/temp/MigrationBackup.Thu-Aug-28-10.15045-
2006.zip
Usage scenario
restoreConfig WebSphereConfig_2006-04-22.zip
restoreConfig.sh WebSphereConfig_2006_04_22.zip
restoreConfig WebSphereConfig_2006-04-22.zip
The following example restores the given file to the /tmp directory and does not stop
any servers before beginning the restoration.
Be aware that if you restore the configuration to a directory that is different from the
directory that was backed up when you performed the backupConfig command,
you may need to manually update some of the paths in the configuration directory.
Ans) The recomended virtual memory for JVM is ¼ of the physical memory.
121) What are the regular commands is UNIX in use?
Ans) In our day to day activity we use the following commands in unix:
104
Whithin the crontab the syntax for the schedule the script as follows
Ex: 30 6 * * 1,3,5 /usr/bin/calender
30(minutes) 6 (hours) *(day of the month) * (month of the year) 1,3,5
(day no of the week)/usr/bin/calender
In the above example we scheduled the script called calender which is
located in the location “/usr/bin” to run every Monday,Wednesday and friday
n) To find fully qualified domain name (FQDN) if you know IP
$ Nslookup <IP_ADDRESS> --(vice versa)
122) Whats the default server in WAS for application server profile?
Ans) server1
123) In Clusters what is the riffle stop ?
Ans) Ripple stop/start will stop one server at a time while other servers will continue
to serve the client requests. Like this it will stop and start all the server in the cluster
124) How you will start the server & how you will stop from command
line?
Ans) stopserver and startserver are the commands to stop and start from the
command line
125) How to check the physical memory (RAM) in the system?
105
Ans) “bootinf –r “ will give you the physical memory details of the unix box
126) What is the first signal you find when memory leakage is there in the
application?
Ans) If you have memory leakage in your application code then you get frequently “
OUT OF MEMORY EXCEPTION” error.
127) How to apply fix packs to WAS?
a) Using update installer we can apply the fix packs. We need to make sure that
update installer which is installed should be compatible with WAS. And also we
need to take backup of all profiles and configuration.
Ans) Websphere provides integrated tools to monitor and tune system and
application performance:
Source Systems of the performance data :
1) Performance Monitoring Infrastructure (PMI):
Technology to trace each individual transaction and record its responce time at
different stages as it flows through the application server. Supports externalisation of
data to standard log files and /or an Application Responce Management (ARM) agent.
Integrated Tools :
a) Tivoli Performance viewer (TPV)
Enables administrators to monitor the overall health of websphere
application server. It is accessed from within the administrative
console
b) Request Metrics ( Tool)
Enables you to track individual transactions,recording the processing
time in each of the major websphere application server components.
Output viewed in standard logs or using an application responce
measurement( ARM) based tool
c) Performance advisor
Analze collected performance data and provide configuration
recommendations to improve the application server performance.
Output viewed in TPV or in administrative console runtime messages
d) Performace servlet
Provideds simple retrival of performance data in XML format. Acced
through a browser.
129) What information you get with the command “ps–ef|grep httpd” ?
106
Ans) we get the all webserver instance informations with process id.
130) How you will check the web server status
Ans) by using the following command we can check the all instances of the
webserver
$ ps – ef| grep httpd
131) If you enable global security every time we need to provide userid
and password while stopping the servers. It is bit security issues it will
disclose to any one while typing the password. So I need to avoid the
typing os my user id and password to stop the servers in security
enables environment. How can we achive this task ?
Ans) We can achive this task by storing the credentials in the following mentioned
files
For SOAP connector –soap.client.profs
For RMI connector –sas.client.profs
132) I have a standalone application server, in that server1 crashed
because of some reasons. Now I need to configure server2 on the same
node how can I achieve this task?
Ans) we need to follow the steps mentioned below to know the detailed information
about the process running on the particular port
$ netstat –Aan|grep <Port_no>
Socket will be listed, using that socket we can get SID
$rmsock <socket_no> <protocol>
Ex: $netstat –Aan|grep 944
f10002000fc4398
$rmsock f10020000fc4398 tcpcb
the socket oxfc4008 is being by process 626888(java)
$ps –ef| grep 626888
135) How you will find how much heap is used by each JVM?
Ans) Using PMI we can see the percentage of the memory used by JVM
136) Explain how request served by WAS explain complete step by step?
Ans) only way to change the port is by changing the virtual host port for which the
application is trying to use.
139) What is the default user registry and how you will configure the LTPA
configuration?
2) When the user’s session datais too valuable to lose through an unexpected
server failure.
These replication settings can be configured in the following location in the admin
console
Amin console -- > servers -- > application servers -- > [all servers] --
>webcontainer settings -- > session management -- > distributed environment
settings
Options are :
None,Database and memeory –to – memory replication
Memory-to-memory replication
There are three possible modes. You can set up a WebSphere Application Server
instance to run in:
Server mode: Only store backup copies of other WebSphere Application
Server sessions and not to send out copies of any session created in that
particular server
Client mode: Only broadcast or send out copies of the sessions it owns and
not to receive backup copies of sessions from other servers
Both mode: Simultaneously broadcast or send out copies of the sessions it
owns and act as a backup table for sessions owned by other WebSphere
Application Server instances
You can select the replication mode of server, client, or both when configuring the
session management facility for memory-to-memory replication. The default is both.
This storage option is controlled by the mode parameter.
replication service instances in remote application servers. You must configure this
data replication service instance as a part of a replication domain. Data replication
service instances on disparate application servers that replicate to one another must
be configured as a part of the same domain. You must configure all session
managers connected to a replication domain to have the same topology. If one
session manager instance in a domain is configured to use the client/server topology,
then the rest of the session manager instances in that domain must be a
combination of servers configured as Client only and Server only. If one session
manager instance is configured to use the peer-to-peer topology, then all session
manager instances must be configured as Both client and server. For example, a
server only data replication service instance and a both client and server data
replication service instance cannot exist in the same replication domain. Multiple
data replication service instances that exist on the same application server due to
session manager memory-to-memory configuration at various levels that are
configured to be part of the same domain must have the same mode.
With respect to mode, the following are the primary examples of memory-to-
memory replication configuration:
Peer-to-peer replication
Client/server replication
The basic peer-to-peer (both client and server function, or both mode) topology is
the default configuration and has a single replica. However, you can also add
additional replicas by configuring the replication domain.
110
In this basic peer-to-peer topology, each server Java Virtual Machine (JVM) can:
Host the Web application leveraging the HTTP session
Send out changes to the HTTP session that it owns
Receive backup copies of the HTTP session from all of the other servers in the
cluster
This configuration represents the most consolidated topology, where the various
system parts are collocated and requires the fewest server processes. When using
this configuration, the most stable implementation is achieved when each node has
equal capabilities (CPU, memory, and so on), and each handles the same amount of
work.
A new feature called session hot failover has been added to this release. This feature
is only applicable to the peer-to-peer mode. In a clustered environment, session
affinity in the WebSphere Application Server plug-in routes the requests for a given
session to the same server. If the current owner server instance of the session fails,
then the WebSphere Application Server plug-in routes the requests to another
appropriate server in the cluster. For a cluster configured to run in the peer-to-peer
mode this feature causes the plug-in to failover to a server that already contains the
111
backup copy of the session, therefore avoiding the overhead of session retrieval from
another server containing the backup.
You must upgrade all WebSphere Application Server plug-in instances that front the
Application Server cluster to version 6.0 to ensure session affinity when using the
peer-to-peer mode.
The following figure depicts the client/server mode. There is a tier of applications
servers that host Web applications using HTTP sessions, and these sessions are
replicated out as they are created and updated. There is a second tier of servers
without a Web application installed, where the session manager receives updates
from the replication clients.
In this case we are isolating the handling of backup data from local data;
aside from isolating the moving parts in case of a catastrophic failure in one
of them, you again free up memory and processing in the servers processing
the Web application
Consolidation
While you run your Web applications on cheaper hardware, you may have one
or two more powerful computers in the back end of your enterprise that have
the capacity to run a couple of session managers in replication server mode;
allowing you to free up your cheaper Web application hardware to process the
Web application.
Ans) from the database team we get the user id to configure the datasource.
143) How you configure LDAP with WAS?
To configure WebSphere Application Server to use LDAP, you need some information
from your security administrator. Following is an example of the type of information
and sample answers that you need to do the steps in this section:
This is just an example. Your security administrator knows what information you
need.
The following steps assume that you configured your LDAP server on the
ldapserver.abc.com host and that your users and groups for Tivoli Business Systems
Manager and the WebSphere Application Server that is hosting Tivoli Business
Systems Manager are defined under the name ou=tbsm,o=abc in the directory. The
Secure Sockets Layer (SSL) between the LDAP server and WebSphere Application
Server is not configured.
This is a sample configuration based on this example and uses the default values
where appropriate.
114
For example, the IBM(R) Directory Server default setting allows anonymous
queries. You can leave this field blank. The Active Directory default setting
requires authentication to run queries, so you need to supply the appropriate
values.
If IBM Directory Server is selected as the LDAP directory server, select this
check box. Otherwise, this field is optional and can left unchecked when a
case sensitive authorization check is required. Note however that this value
does not affect how Tivoli Business Systems Manager treats distinguished
names stored in the Tivoli Business Systems Manager database. Internally,
Tivoli Business Systems Manager treats distinguished names as case
insensitive. For example, if the user registry is configured to be case
sensitive, you can create users with distinguished names cn=John Doe,
ou=Raleigh, o=IBM, c=US and cn=john doe, ou=raleigh, o=ibm, c=us.
However, when searching for resources assigned to John Doe (for example
ownership notes), all notes assigned to John Doe and john doe will be
returned. To eliminate any problems, configure the user registry to be case
insensitive or ensure that all users are created with unique distinguished
names that are different in more than just case.
11. Accept the default SSL settings to run without the SSL.
115
If the page does not display automatically, navigate to the Security ->
Global Security page.
18. From the Global Security page, use all the default values except the following
values:
o Enabled: checked
o Active User Registry: LDAP
19. Click OK.
116
WebSphere Application Server validates your setup. The messages at the top
of the screen indicate your results. Yellow warning messages are typical. If an
round, red error message is displayed, it means that WebSphere Application
Server could not validate the Server ID you gave with the LDAP. Verify that
this and the other LDAP parameters are correct for your LDAP server and
repeat the Global Security configuration steps until the validation is
successful.
For more information about specific LDAP servers, see the LDAP server
documentation in the WebSphere InfoCenter. Navigate to All topics by feature ->
Security -> Securing applications and their environments -> Managing
security -> Configuring user registries.
Ans) Memory leak is the issue with native code. We need to get the heap dumps and
analyse the dumps for any memory issues with the code and if you find any issue
then we need to ask developers to fix the same. Temporarly we can increase the
heap size . In this way after analysing the exact root cause we need to fix the
memory leakage issue.
145) What is the recommended physical memory for WAS?
Ans) Mandatory is 512 MB and IBM recomends 1024 MB. Bur in real time projects it
will be more the recomended. In our project it was 4 GB.
146) How you will check the port status?
Ans) netstat
147) What is the command to find the process in the sun Solaris
environment ?
Ans)1. Check the WebSphere Class path and set it properly if not set correctly
Check the System out and systemErr logs for any specific errors/warning to
identify which class is not found when starting the server
117
150) If you get internal error then what is the solution for it?
Ans) Check the IHS is running or not, if its running... check the App server is
running or not.
This is basicaly due to the request is reaching to IHS and not able to reach the app.
Ans) Service Inegration BUS is introduced in V6 and the perpupose is to connect the
SOA apps like MQ.
154) What is the significance of the embedded http server explain ?
Ans)to get requests from external IHS and forward to WEB container.
155) What are the steps to do performance tuning for webserver?
Ans)
To reduce the disk i/o by using the _file() API directive on
unix .
Ans)
157) In ssl configuration how you will provide the path of the certificate?
Ans) While Adding certificate, we have to give the location of the certificate, and if
you want to give Certicate store path, we have to give .p12 path
118
Ans)
159) How you will change / migrate the project from one version to other?
Ans) Developement team will develope the code and test in the Developement env.
Then we will create Test Env. And then put the server into Production.
161) Silent mode how it will work and if you get any errors then how you
will rectify it?
Ans) Silent mode of installation will also have the log file, where we can check the
errors
162) Explaing about configuration of IBM Tivoli directory server?
Ans)
164) How many servers are there & in which environment?
Ans)
165) How many types of Garbage collections?
http://www.petefreitag.com/articles/gctuning/