IBM / websphere-cct

WebSphere Application Server traditional Configuration Comparison Tool
Apache License 2.0
14 stars 11 forks source link

Problem getting app server to show up in report from WAS ND non-clustered environment #27

Open grsm001 opened 2 years ago

grsm001 commented 2 years ago

I am trying to compare two app servers from two different WAS instances. One is a clustered environment and the other is not. I seems in the non-cluster environment, I do not get any app server listed when I create a report from this non-clustered environment.

The properties files has this:

Server1:ReportType=Server Server1:Title= OneServer Server1:Clusters:1= Server1:Servers:1=DEVL::Hjn2Server3 Server1:ReportList=All Server1:FileName=OneServer

The .cfg file for this environment (cell) has reference to this app server (Hjn2Server3) so I can only assume it is there but does not show up in the reports. Can you help?

Thank you.

riddlemo commented 2 years ago

The cell regex in the line below does not have a cell suffix. As such, it will not select any servers. The cell suffix must be appended to the regex.

Server1:Servers:1=DEVL::Hjn2Server3

I suggest using “.*”.

Server1:Servers:1=.::Hjn2Server3 Server1:Servers:2=.::OtherServerName

Alternatively:

Server1:Servers:1=DEV.::Hjn2Server3 Server1:Servers:2=OtherCellName.::OtherServerName