关于可以对WebLogic集群进行管理的工具的说法错误的是()。
第1题:
A.BPM的集群配置和WebLogic的集群配置方法是一样的
B.BPM集群环境下一般通过一个workspace进行控制
C.BPM的集群配置在使用Weblogic集群环境和F5集群环境是不一样的配置
D.BPM的集群的数据库连接只能使用JNDI配置
第2题:
第3题:
下列哪种情况不属于导致权限平台偶尔访问失败()
A、在F5中,对WebLogic集群没有进行源地址保持设置的
B、WebLogic集群节点宕机,F5上又没有配置健康状态检测
C、Memcahed缓存组件宕机
D、访问量过大,导致认证丢失或失败
第4题:
关于集群工作说法不正确的是()
第5题:
可以使用管理服务器管理和监控Weblogic域中的()内容。
第6题:
我已经用JMS实现了对weblogic的server Name,Listen Port,webApp的名称、domain名称。现在想实现对weblogic的执行线程(executeQueue)、集群(cluster)、堆(heap)等,不知道应该怎么实现?
能,用jmx ,google一下这方面知识,由于从weblogic8升级到weblogic9发生了比较大的变化,以前对于weblogic8比较熟悉的人,也许到了weblogic9就不一定熟悉了,还需要了解才行,特别是监控方面差别比较大,由于9采用的jdk版本是1.5,监控8实现的java方式就不能用于9了。
就目前我得测试结论是:java实现weblogic的自定义监控对于9和10都是适用的,但是对于11却没有测试,还不知道方式是否相同,实际上从文档里面也可以看出,8系列是采用的许多管理的MBean接口在9中已经不推荐使用,标明是过时的了。
我这次通过java编程来实现weblogic9的自定义监控就发现,很多地方完全地不同了。
从界面上来看,已经完全不同于8,命令行监控方式也有一些大的变化。
这是我取得监控接口封装的类:
package lht.monitor.weblogic.main9;
import java.io.IOException;
import java.net.MalformedURLException;
import java.util.Hashtable;
import javax.management.MBeanServerConnection;
import javax.management.MalformedObjectNameException;
import javax.management.ObjectName;
import javax.management.remote.JMXConnector;
import javax.management.remote.JMXConnectorFactory;
import javax.management.remote.JMXServiceURL;
import javax.naming.Context;
public class SetEnvironment {
protected static MBeanServerConnection connection;
private static JMXConnector connector;
private static final ObjectName service;
// Initializing the object name for DomainRuntimeServiceMBean
// so it can be used throughout the class.
static {
try {
service = new ObjectName( "com.bea:Name=DomainRuntimeService,Type=weblogic.management.mbeanservers.domainruntime.DomainRuntimeServiceMBean");
}catch (MalformedObjectNameException e) {
throw new AssertionError(e.getMessage());
}
}
/*
* Initialize connection to the Domain Runtime MBean Server
*/
public static void initConnection(String hostname, String portString,String username, String password) throws IOException, MalformedURLException {
String protocol = "t3";
Integer portInteger = Integer.valueOf(portString);
int port = portInteger.intValue();
String jndiroot = "/jndi/";
String mserver = "weblogic.management.mbeanservers.domainruntime";
JMXServiceURL serviceURL = new JMXServiceURL(protocol, hostname, port, jndiroot + mserver);
Hashtable hash = new Hashtable();
hash.put(Context.SECURITY_PRINCIPAL, username);
hash.put(Context.SECURITY_CREDENTIALS, password);
hash.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,"weblogic.management.remote");
connector = JMXConnectorFactory.connect(serviceURL,hash);
connection = connector.getMBeanServerConnection();
}
/*
* This MBean is the root of the runtime MBean hierarchy, and
* each server in the domain hosts its own instance.
*/
public static ObjectName[] getServerRuntimes(String servername,String hostname, String portString,String username, String password) throws Exception{
ObjectName[] bj = (ObjectName[])connection.getAttribute(service,servername);
return obj;
}
}
第7题:
在Weblogic集群中被管理服务器的作用()。
第8题:
关于Meta分析,下列说法错误的是()。
A、又被称为荟萃分析
B、可以对资料进行统计合成
C、可以对资料进行定性描述
D、最大的优点是增大样本含量
E、可以对结果的把握度
第9题:
Weblogic集群是()个Weblogic server组。
第10题:
在华为FusionSphere中,分权分域是指在管理员视图下,可以对资源集群进行分域,例如集群,通过给域中添加不同的用户,为用户配置不同的权限,使得不同的用户可以对不同的资源集群拥有不同的权限,例如查看,修改权限。