Regards,
Rickard
In the dmgr's SystemOut.log and in the Dmgr's ffdc/ folder, do you see
any changes or logs when it is spinning the load up and churning CPU ?
Also take a threaddump on the dmgr process and see if anything
significant is happening in the process.
-Dexthor.
When IBM solves the problem, please don't leave this as a mystery. Let
us know what the solution to the problem was.
Cheers!
-Cameron McKenzie
Author of What is WebSphere?
www.pulpjava.com
Free Multimedia J2EE and Java Tutorials: www.mcnz.com
Free Sun Certification Exams and Tutorials: www.scja.com
So you might want to look at your etc/hosts and etc/resolv.conf for any
irregularities.
The following is a java program that tests the getLocalHost function:
import java.net.*;
import java.io.*;
public class checkdns
{
public static void main(String args[])
{
try
{
long start = System.currentTimeMillis();
InetAddress local= InetAddress.getLocalHost();
System.out.println("InetAddress = " + local + ", using
getLocalHost()");
InetAddress local2 = InetAddress.getByName(local.getHostAddress());
System.out.println("InetAddress = " + local2 + ", using
getByName(local.getHostAddress()");
if (local2.getHostName().equals(local2.getHostAddress()))
System.out.println("=====> Reverse DNS problem! " + " WebSphere
performance will suffer.");
else
System.out.println("DNS configuration appears correct.");
long elapsed = System.currentTimeMillis() - start;
System.out.println("elapsed time=" + elapsed);
}
catch (Exception e )
{
System.out.println("Exception: " + e + " caught!");
e.printStackTrace();
/Rickard
rswartwood skrev: