简体   繁体   English

JBoss集群应用程序冻结,Apache mod_cluster配置出现一些警告

[英]JBoss Clustered Application Freezes and Apache mod_cluster config has some warnings

I have my JBoss Application in cluster. 我的集群中有JBoss应用程序。 When I start my domain.sh in all the nodes and run the application. 当我在所有节点中启动domain.sh并运行应用程序时。 My Application freezes even for normal db transactions from App. 我的应用程序甚至冻结了App的正常数据库事务。

When I observed my Apache I'm getting some warnings. 当我观察到我的Apache时,我收到一些警告。 Is this warnings are causing the problem, if so what is the salvation...... 这是警告引起的问题吗,如果是的话,救恩是什么……

Here is my Apache Configuration...... I had followed minimal configuration which was given jboss mod_cluster documentation.... 这是我的Apache配置……我遵循了最低配置,并获得了jboss mod_cluster文档。

LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule slotmem_module modules/mod_slotmem.so
LoadModule manager_module modules/mod_manager.so
LoadModule proxy_cluster_module modules/mod_proxy_cluster.so
LoadModule advertise_module modules/mod_advertise.so


<VirtualHost 10.252.103.77:80>
<Location />
Order deny,allow
Allow from all
</Location>
<Location /mod_cluster-manager>
SetHandler mod_cluster-manager
Order deny,allow
Allow from all
</Location>
KeepAliveTimeout 60
MaxKeepAliveRequests 0
ManagerBalancerName mycluster
ServerAdvertise On
EnableMCPMReceive
</VirtualHost>

When I start or restart my Apache Web Server I'm getting following WARN's....... 当我启动或重新启动Apache Web Server时,我正在关注WARN。

~]$ sudo /etc/init.d/httpd restart
Stopping httpd:                                            [  OK  ]
Starting httpd: [Mon Dec 07 12:19:17 2015] [warn] module proxy_module is already loaded, skipping
[Mon Dec 07 12:19:17 2015] [warn] module proxy_ajp_module is already loaded, skipping
httpd: Could not reliably determine the server's fully qualified domain name, using 10.252.103.77 for ServerName
                                                           [  OK  ]

I had copied all the modules which were used to the appropriate modules directory....... My domain runs on Redhat Enterprise Linux 64 bit...... So I had copied x86_64 bit version of .so files.... 我已经将所有使用过的模块复制到了适当的模块目录中。...我的域在Redhat Enterprise Linux 64位上运行...因此,我已经复制了.so文件的x86_64位版本... 。

I had commented following .so modules as those were already loaded..... Although it is just WARN for proxy module, it is unappropriated as couple of modules were loaded and works in dual mode.... 我已经评论了以下.so模块,因为它们已经被加载.....尽管它只是代理模块的警告,但由于几个模块已加载并且可以在dual模式下工作,因此它是不适当的。

#LoadModule proxy_module modules/mod_proxy.so
#LoadModule proxy_ajp_module modules/mod_proxy_ajp.so

As I copied appropriate modules (x86_64) required.... fresh proxy_ajp proxy modules is in function instead of default ones.... SO JBoss cluster config succeeds....... 当我复制所需的适当模块(x86_64)时。...新的proxy_ajp proxy模块已在起作用,而不是默认模块。...SO JBoss集群配置成功....

Messages: [Mon Dec 07 12:19:17 2015] [warn] module proxy_module is already loaded, skipping [Mon Dec 07 12:19:17 2015] [warn] module proxy_ajp_module is already loaded, skipping are completely harmless. 消息: [Mon Dec 07 12:19:17 2015] [warn] module proxy_module is already loaded, skipping [Mon Dec 07 12:19:17 2015] [warn] module proxy_ajp_module is already loaded, skipping是完全无害的。

Message: httpd: Could not reliably determine the server's fully qualified domain name, using 10.252.103.77 for ServerName could affect your domain name based redirections and SSL certificates issued for a particular domain, but it has little to nothing to do with mod_cluster's operation. 消息: httpd: Could not reliably determine the server's fully qualified domain name, using 10.252.103.77 for ServerName可能会影响基于域名的重定向和为特定域颁发的SSL证书,但与mod_cluster的操作几乎没有关系。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM