- 浏览: 39009 次
- 性别:
- 来自: 北京
最新评论
-
墨子宇:
遇到一样的问题了,我们用的服务器测试环境端口就是6000,ad ...
FLASH-swfupload、2156、端口限制 -
sunman5277:
我在部署weblogic集群时也遇到和你相同的问题,1个服务器 ...
LOG4J对单服务器多SERVER的集群服务的日志输出支持 -
johnhzjx:
haikuang 写道这个问题要怎么解决修改负载的端口。。
FLASH-swfupload、2156、端口限制 -
haikuang:
这个问题要怎么解决
FLASH-swfupload、2156、端口限制 -
johnhzjx:
增加一个BUG的修改.
function meizzToday ...
关于梅花雨日历控件
增加LOG4J对单服务器多SERVER的集群服务的日志输出支持
问题:在单台物理服务器上部署的集群中含有多个Server Application时,发布的应用只有一个 WAR包,对应的LOG4J的配置也仅有一个,多个Server Application同时将输出的日志文件写入到一个文件中,会造成日志的丢失,因此设计该方法是为了多个Server Application分别输出各自的日志文件.
思路:
1.log4j的配置文件支持System Property的环境变量的获取,如user home
2.通过ServletContext可以获取到集群中每个server name
3.在不同的server启动时将不同server name的加载到System Property
4.在配置文件中增加一个${WebAppClusterServer}的参数,拼合server_name+logfile_name
5.配置文件的定义:
**************************************************
*logpath=e:/${WebSphereAppHost}_
*log4j.appender.logfile.File=${logpath}test.log
**************************************************
这是思路,需要源码的可以EMAIL我
源码是基于org.springframework.util.Log4jConfigurer进行改造
问题:在单台物理服务器上部署的集群中含有多个Server Application时,发布的应用只有一个 WAR包,对应的LOG4J的配置也仅有一个,多个Server Application同时将输出的日志文件写入到一个文件中,会造成日志的丢失,因此设计该方法是为了多个Server Application分别输出各自的日志文件.
思路:
1.log4j的配置文件支持System Property的环境变量的获取,如user home
2.通过ServletContext可以获取到集群中每个server name
3.在不同的server启动时将不同server name的加载到System Property
4.在配置文件中增加一个${WebAppClusterServer}的参数,拼合server_name+logfile_name
5.配置文件的定义:
**************************************************
*logpath=e:/${WebSphereAppHost}_
*log4j.appender.logfile.File=${logpath}test.log
**************************************************
这是思路,需要源码的可以EMAIL我
源码是基于org.springframework.util.Log4jConfigurer进行改造
public class Log4jWebClusterConfig { /** Parameter specifying whether to expose the web app cluster property */ public static final String EXPOSE_WEB_APP_ClUSTER_PARAM = "log4jExposeWebAppCluster"; public static final String EXPOSE_WEB_APP_ClUSTER_ATTRIBUTE_PARAM = "log4jExposeWebAppClusterAttribute"; public static void initWebClusterConfig(ServletContext servletContext) throws IllegalArgumentException { String webappcluster = servletContext.getInitParameter(EXPOSE_WEB_APP_ClUSTER_PARAM); String webappclusterattribute = servletContext.getInitParameter(EXPOSE_WEB_APP_ClUSTER_ATTRIBUTE_PARAM); if (webappcluster != null) { if (webappclusterattribute == null) { throw new IllegalArgumentException( "log4jExposeWebAppClusterAttribute is null ! " + " If set property 'log4jExposeWebAppCluster'," + "'log4jExposeWebAppClusterAttribute' must not be null "); } String webappclusterattr = (String) servletContext.getAttribute(webappclusterattribute); if (webappclusterattr == null || webappclusterattr.equals("")) { throw new IllegalArgumentException( "Cannot get log4jExposeWebAppClusterAttribute=[" + webappclusterattribute + "]" + " please reconfirm log4jExposeWebAppClusterAttribute's value!"); } //only getAttribute for WebSphere,other WebContain need to reconfigure!! if (webappcluster.equals("WebSphere")) { System.setProperty("WebAppClusterServer", webappclusterattr); } servletContext.log( "Initialize Log4J For Web_App_Cluster=[" + webappcluster + "] Server=[" + webappclusterattr + "]"); } } // getServletContext().log("----getAttributeNames----"); // Enumeration vecKey = getServletContext().getAttributeNames(); // while (vecKey.hasMoreElements()) { // String strKey = (String) vecKey.nextElement(); // getServletContext().log("Key=[" + strKey + "] Value=[" + getServletContext().getAttribute(strKey) + "]"); // } // // getServletContext().log("----System.getProperties----"); // vecKey = propertiesInst.propertyNames(); // while (vecKey.hasMoreElements()) { // String strKey = (String) vecKey.nextElement(); // getServletContext().log("Key=[" + strKey + "] Value=[" + propertiesInst.getProperty(strKey) + "]"); // } // // // getServletContext().log("----getInitParameterNames----"); // vecKey = getServletContext().getInitParameterNames(); // while (vecKey.hasMoreElements()) { // String strKey = (String) vecKey.nextElement(); // getServletContext().log("Key=[" + strKey + "] Value=[" + getServletContext().getInitParameter(strKey) + "]"); // } // // getServletContext().log("getServletContextName="+getServletContext().getServletContextName()); }
public abstract class Log4jWebConfigurer { /** Parameter specifying the location of the Log4J config file */ public static final String CONFIG_LOCATION_PARAM = "log4jConfigLocation"; /** Parameter specifying the refresh interval for checking the Log4J config file */ public static final String REFRESH_INTERVAL_PARAM = "log4jRefreshInterval"; /** Parameter specifying whether to expose the web app root system property */ public static final String EXPOSE_WEB_APP_ROOT_PARAM = "log4jExposeWebAppRoot"; /** * Initialize Log4J, including setting the web app root system property. * @param servletContext the current ServletContext * @see WebUtils#setWebAppRootSystemProperty */ public static void initLogging(ServletContext servletContext) { // Expose the web app root system property. if (exposeWebAppRoot(servletContext)) { WebUtils.setWebAppRootSystemProperty(servletContext); } //Expose the web app cluster property. Log4jWebClusterConfig.initWebClusterConfig(servletContext); // Only perform custom Log4J initialization in case of a config file. String location = servletContext.getInitParameter(CONFIG_LOCATION_PARAM); if (location != null) { // Perform actual Log4J initialization; else rely on Log4J's default initialization. try { // Return a URL (e.g. "classpath:" or "file:") as-is; // consider a plain file path as relative to the web application root directory. if (!ResourceUtils.isUrl(location)) { // Resolve system property placeholders before resolving real path. location = SystemPropertyUtils.resolvePlaceholders(location); location = WebUtils.getRealPath(servletContext, location); } // Write log message to server log. servletContext.log("Initializing Log4J from [" + location + "]"); // Check whether refresh interval was specified. String intervalString = servletContext.getInitParameter(REFRESH_INTERVAL_PARAM); if (intervalString != null) { // Initialize with refresh interval, i.e. with Log4J's watchdog thread, // checking the file in the background. try { long refreshInterval = Long.parseLong(intervalString); Log4jConfigurer.initLogging(location, refreshInterval); } catch (NumberFormatException ex) { throw new IllegalArgumentException("Invalid 'log4jRefreshInterval' parameter: " + ex.getMessage()); } } else { // Initialize without refresh check, i.e. without Log4J's watchdog thread. Log4jConfigurer.initLogging(location); } } catch (FileNotFoundException ex) { throw new IllegalArgumentException("Invalid 'log4jConfigLocation' parameter: " + ex.getMessage()); } } } /** * Shut down Log4J, properly releasing all file locks * and resetting the web app root system property. * @param servletContext the current ServletContext * @see WebUtils#removeWebAppRootSystemProperty */ public static void shutdownLogging(ServletContext servletContext) { servletContext.log("Shutting down Log4J"); try { Log4jConfigurer.shutdownLogging(); } finally { // Remove the web app root system property. if (exposeWebAppRoot(servletContext)) { WebUtils.removeWebAppRootSystemProperty(servletContext); } } } /** * Return whether to expose the web app root system property, * checking the corresponding ServletContext init parameter. * @see #EXPOSE_WEB_APP_ROOT_PARAM */ private static boolean exposeWebAppRoot(ServletContext servletContext) { String exposeWebAppRootParam = servletContext.getInitParameter(EXPOSE_WEB_APP_ROOT_PARAM); return (exposeWebAppRootParam == null || Boolean.valueOf(exposeWebAppRootParam).booleanValue()); } }
<context-param> <param-name>log4jExposeWebAppCluster</param-name> <param-value>WebSphere</param-value> </context-param> <context-param> <param-name>log4jExposeWebAppClusterAttribute</param-name> <param-value>com.ibm.websphere.servlet.application.host</param-value> </context-param> <servlet> <servlet-name>Log4jConfigServlet</servlet-name> <display-name>Log4jConfigServlet</display-name> <servlet-class>com.xxxxx.log4j.web.Log4jConfigServlet</servlet-class> <load-on-startup>4</load-on-startup> </servlet>
发表评论
-
TSM的解决
2013-12-02 19:29 657TSM解决-VM-外接设备.. -
T400+WIN7屏幕无法调节亮度的解决方法
2012-06-15 08:38 5332T400装了WIN7后,一直感觉不错~一次培训切换了成省电模式 ... -
基于OFFICE COM的程序池
2011-07-28 15:10 732采用该方式可以控制WORD的进程数,加快调用的速度。但是验证中 ... -
FLASH-swfupload、2156、端口限制
2010-11-09 20:41 3522近期在做一个swfupload的过程中,发现一个很异常的问题, ... -
解决WOW.ALI病毒的方法之一
2008-10-03 00:18 1066前几天无缘无故中了一个病毒WOW.ALI.具体的症状我就不细说 ... -
ibatis中提示MalformedInputException错误
2008-09-12 09:46 1157Spring集成IBATIS在启动时报以下错误: Caus ... -
使用jxls时报java.lang.NullPointerException
2008-08-14 16:41 2574模板对于处理以下方法是可能会报错.直接将list put到re ... -
js修改clone对象的参数
2007-09-11 13:54 2491<!DOCTYPE HTML PUBLIC &a ... -
sqlite与JAVA结合 FOR WINDOWS
2007-07-23 18:18 2614sqlite与JAVA结合 FOR WINDOWS.a.必需拥 ... -
spring的一个小问题(或则是一些)
2006-06-20 00:26 870今天在配置一个SPRING应用.发现页面一直不认${}表达式. ... -
CAS应用笔记
2006-07-02 14:40 936败了-_-..居然不能写代码...那改附件好了....换了存放 ... -
2007的LOGG4J学习笔记
2007-01-02 22:41 16912006年的时候也有记录了一些LOG4J的笔记,现在在去年的基 ... -
WebSphere 5.0.1 JDBC连接池配置(简)
2007-01-02 22:44 3071环境-管理 WebSphere 变量 选择应 ... -
关于梅花雨日历控件
2007-03-07 12:42 1332function meizzNextY(intYears)&a ...
相关推荐
首先,集群环境中的日志配置问题在于所有服务器都默认读取同一份 `log4j.properties` 配置文件,导致日志输出到相同的文件中。为了解决这个问题,我们需要为每个服务器创建独立的配置文件。这样,每个服务器将按照其...
AlwaysOn 集群数据库日志清理教程 在 AlwaysOn 集群环境中,数据库日志文件的疯狂扩张是一个常见的问题,该问题不仅占用大量的存储空间,还可能会影响数据库的性能和稳定性。因此,周期性的清理数据库日志文件是...
综上所述,这个压缩包提供的jar文件涵盖了数据库连接(SQL Server 2005、MySQL和Oracle的JDBC驱动)和日志记录(log4j)的核心需求,对Java开发者来说是非常实用的资源。在实际开发中,正确配置和使用这些库可以极大...
5. **启动并检查服务**:启动Graylog服务器,并确保其正常运行。 ``` sudo systemctl start graylog-server sudo systemctl status graylog-server ``` 6. **访问Web界面**:最后,我们可以在浏览器中输入`...
* 使用 dmesg 和 error.log:使用 dmesg 和 error.log,观察服务器的性能和错误日志。 六、优化思路 优化思路是服务器集群架设的重要步骤。以下是优化思路的几点: * 判断 Nginx 的瓶颈:判断 Nginx 的瓶颈,优化...
配置 Apache Http Server 作为 WebLogic 集群的代理服务器 随着网络技术的发展,WebLogic 集群的代理服务器变得越来越重要。Apache Http Server 作为一个流行的Web 服务器软件,可以作为 WebLogic 集群的代理服务器...
主服务器执行所有写操作,并将这些变更通过二进制日志(Binary Log)传递给从服务器。从服务器实时或者异步地重放这些日志,保持数据的一致性。在出现故障时,从服务器可以快速接管主服务器的角色,确保服务的连续性...
配置Apache HTTP Server作为WebLogic集群的代理服务器是一项常见的任务,其主要目的是实现负载均衡和提高应用服务的可用性。Apache HTTP Server是一个开源的、高度可定制的Web服务器,而WebLogic Server是Oracle提供...
本文将详细介绍如何利用Logstash和Elasticsearch构建一套高效的企业级ELK(Elasticsearch, Logstash, Kibana)日志收集与分析系统,以实现对Tomcat集群日志的有效管理和分析。 #### 技术选型与架构设计 - **技术...
- 在Network Domain和Server Name处设置非强制性的服务器标识信息。 - 安装完成后,将Tomcat Connectors的mod_jk模块(如mod_jk-1.2.28-httpd-2.2.3.so)复制到Apache的modules目录下。 接下来,我们需要配置Apache...
负载均衡是一种技术,通过分散网络流量到多个服务器,防止单点故障,提高服务的响应速度和可用性。Nginx作为反向代理,可以接收客户端请求,并根据预设策略将请求转发到后端服务器集群。 ### 1. 安装Nginx 在CentOS...
主从部署需要满足以下条件:主库开启binlog日志(设置log-bin参数)、主从server-id不同、从库服务器能连通主库。 三、主从配置步骤 1. 登录主服务器,执行命令:mysql -u root -p,设置validate_password_policy...
4. **日志监控**:通过Log4j或Logback配置,将Kafka的日志输出到集中式日志系统,如Logstash、Fluentd,配合Elasticsearch、Grafana等进行分析和展示。 **4. 实战应用** 在实际应用中,Kafka常与其他技术结合,如...
主服务器将所有的更新操作记录在二进制日志(binary log)中,从服务器则通过中继日志(relay log)来同步这些更新。这个过程分为三个主要步骤: 1. **主服务器记录二进制日志**:在事务提交前,主服务器将所有更改记录...
Apache集群性能优化是提高Web服务器处理能力的关键环节,特别是在高流量和大数据量的环境中。日志切分则是管理和分析服务器日志的一种有效方法,有助于监控系统状态、追踪问题以及进行性能调优。以下是对这两个主题...
### 零基础 Linux 服务器 WAS 集群环境搭建详解 #### 一、Linux 基本操作 1. **进入指定目录**: - `cd /data/IBM/WebSphere/AppServer/profiles/AppSrv01/bin`:将当前工作目录更改为 `/data/IBM/WebSphere/App...
这些组件包括客户端(Clnt)、网关服务器(Gateway Server)、账户服务器(Account Server)、中心服务器(Center Server)、数据服务器(Data ...Server)、日志服务器(Log Server)以及即时通讯服务器(IM Server)...
1. **日志采集**:在每个产生日志的节点上,我们需要一个轻量级的日志代理(如Log4j、Logback等),它负责收集本地的日志事件,并通过Socket发送到中央日志服务器。 2. **Socket通信**:日志代理和日志服务器之间的...