Missing protocol in access logs

Hello.
I'm running iPlanet 4.1 on an HP UX box.
My site in configured to use a WebLogic proxy plugin for JSPs..
The problem I'm having right now is that iPlanet seems to have trouble writting my access logs.
My current log format is:
"%Ses->client.ip% - %Req->vars.auth-user% [%SYSDATE%] \"%Req->reqpb.clf-request%\" %Req->srvhdrs.clf-status% %Req->srvhdrs.content-length% \"%Req->headers.referer%\"
Sometimes, it logs the HTTP protocol (with %Req->reqpb.clf-request%), sometimes it just ommits it!
(the server is used ONLY with the WL proxy right now, and I haven't found anything on WebLogic's side!)
This causes me problems when I try to compile statisttics for the site. Each line with NO PROTOCOL, seems to be like a corrupted line for the analyser, therfor makes my stats invalid! This is true with Analog and Awstats!
Here's an example of request WITHOUT the protocol:
64.230.121.24 - - [29/Jun/2003:00:00:12 -0400] "GET /psr/applicant/applicant.LoginMenu;PsrSessionID=22jy9aECcAhKZN61qH10RjccuUKg!-604367722!natux33!8010!-1?action=AcademicQualifications" 302 - "http://psjobs-emploisfp.psc-cfp.gc.ca/psr/applicant/applicant.LoginMenu;PsrSessionID=22jy9aECcAhKZN61qH10RjccuUKg!-604367722!natux33!8010!-1"
Has anyone else had this problem or a similar one?
Any help is greatly appreciated!
Patrick.

The only other way I found would be to use :
%Req->reqpb.method% %Req->reqpb.uri% instead of %Req->reqpb.clf-request%, that way the protocol just wouldn't be logged! My log analyser (Awstats 5.6) would then be able to crunch them by NOT checking for a protocol with the %methodurlnoproto parameter in awstats.
This is causing me yet another problem. With only the URI, I don't have the querystring. Of course, it is possible to use %Req->reqpb.query%, but this isn't linked to the URI in the log. I need to hardcode a '?' between the two. Therefor, I would also get requests such as '/foo.htm?' logged.
Another problem I seem to be having when using just the URI is that iPlanet seems to get only the first 128 caracteres from the request. After that numbers, it cuts off the URI.
I'm a bit confused here on what's the best solution...
Pat.

Similar Messages

  • WSRP: Relative URL results in error code 404 in the consumer access.log

    Hello everyone,
    I deployed a JSF portlet(implemented in facelets) in Weblogic Server 10.3.2 (11g) [extended to support WSRP]. When the JSF portlet is consumed from a 'consumer' portal [Weblogic 10.3.2 portal], WSRP URL Rewrite results in error code 404 in the consumer portal access.log if the relative path (contextPath+resourcePath) of the javaScript resource is provided.
    However, when the absolute path (protocol + serverName + port+ contextPath) of the JavaScript resource is provided, it works correctly:
    works:
    <script type="text/javascript" src="#{request.protocol}://#{request.serverName}:#{request.serverPort}#{request.contextPath}/resources/scripts/search/patientSearch.js"><!-- --></script>
    Failed:
    <script type="text/javascript" src="#{request.contextPath}/resources/scripts/search/patientSearch.js"><!-- --></script>
    Any idea on what is causing the incorrect URL Rewrite?
    The .xhtml and the portlet wsdl are listed below:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:a4j="http://richfaces.org/a4j"
    xmlns:rich="http://richfaces.org/rich"
    xmlns:nchic="http://www.saic.com/nchicago/jsf">
    <ui:composition template="/WEB-INF/facelets/templates/page-protected.xhtml">
    <head>
    <title>not used</title>
    <ui:define name="title">#{msgs.searchPageTitle}</ui:define>
    <ui:define name="head">
    <f:verbatim>
    <style type="text/css">
    #patientSearchContainer .pageCentered {
    width: 800px;
    #patientSearchFormInstructions {
    padding: 10px 0px 10px 0px;
    font-weight: bold;
    font-size: 11px;
    text-align: left;
    .s-form-label {
    width: 250px;
    .s-form-input {
    width: 450px;
    </style>
    </f:verbatim>
    <script type="text/javascript" src="#{request.protocol}://#{request.serverName}:#{request.serverPort}#{request.contextPath}/resources/scripts/search/patientSearch.js"><!-- --></script>
    </ui:define>
    </head>
    <body >
    <ui:define name="body" >
    <h:panelGroup id="patientSearchContainer"
    layout="block"
    style="text-align: center;">
    <rich:panel id="patientSearchPanel"
    styleClass="pageCentered"
    header="#{msgs.searchPanelSearchTitle}">
    <h:panelGroup id="patientSearchFormInstructions" layout="block">
    <h:outputText value="#{msgs.searchInstructions}" />
    <ul>
    <li><h:outputText value="#{msgs.searchInstructions1}" /></li>
    <li><h:outputText value="#{msgs.searchInstructions2}" /></li>
    <li><h:outputText value="#{msgs.searchInstructions3}" /></li>
    </ul>
    </h:panelGroup>
    <h:panelGroup id="errorPanel"
    layout="block"
    rendered="#{searchForm.hasMessages}">
    <h:panelGroup layout="block"
    style="padding: 5px;">
    <h:outputFormat value="#{msgs.errorMultipleMessage}"
    rendered="#{searchForm.errorCount &gt; 1}">
    <f:param value="#{searchForm.errorCount}" />
    </h:outputFormat>
    <h:outputFormat value="#{msgs.errorSingleMessage}"
    rendered="#{searchForm.errorCount == 1}">
    <f:param value="#{searchForm.errorCount}" />
    </h:outputFormat>
    <h:messages layout="list"
    showSummary="false"
    showDetail="true"
    errorClass="errors"
    styleClass="errorsList" />
    </h:panelGroup>
    </h:panelGroup>
    <h:form id="patientSearchForm" prependId="false">
    <h:panelGrid columns="2"
    columnClasses="s-form-label,s-form-input"
    summary="#{msgs.tableSummary}">
    <nchic:label for="queryIdType"
    value="#{msgs.labelIdType}"
    required="false" />
    <h:selectOneMenu id="queryIdType"
    value="#{searchForm.criteria.identificationType}"
    converter="patient.IdentificationType"
    tabindex="2"
    styleClass="masked-hidden not-required">
    <f:selectItems value="#{searchForm.lists.allIdTypes}" />
    <a4j:support event="onchange"
    reRender="sponsorSearch,queryIdNumber"
    oncomplete="JointReg.searchForm.patientIdTypeUpdateComplete();"
    onsubmit="JointReg.searchForm.patientIdTypeUpdateSubmit();"
    actionListener="#{searchForm.identificationTypeChangeListener}" />
    </h:selectOneMenu>
    <nchic:label for="sponsorSearch"
    value="#{msgs.labelIdNumberRadios}"
    required="false" />
    <h:selectOneMenu id="sponsorSearch"
    value="#{searchForm.criteria.sponsorSearch}"
    tabindex="3"
    disabled="#{searchForm.identificationDisabled}"
    styleClass="masked-hidden not-required">
    <f:selectItem itemValue="true" itemLabel="#{msgs.labelSponsor}" />
    <f:selectItem itemValue="false" itemLabel="#{msgs.labelPatient}" />
    </h:selectOneMenu>
    <nchic:label for="queryIdNumber"
    value="#{msgs.labelIdNumber}"
    required="false" />
    <h:inputText id="queryIdNumber"
    converter="patient.IdentificationNumber"
    value="#{searchForm.criteria.identificationNumber}"
    tabindex="4"
    styleClass="not-required resettable"
    disabled="#{searchForm.identificationDisabled}"
    maxlength="11" />
    <nchic:label for="queryBirthDate"
    value="#{msgs.labelBirthDateShort}"
    required="false" />
    <nchic:date id="queryBirthDate"
    value="#{searchForm.criteria.birthDate}"
    monthValues="#{searchForm.lists.allMonths}"
    dayValues="#{searchForm.lists.allDays}"
    yearValues="#{searchForm.lists.allYears}"
    tabindex="5"
    styleClass="masked-hidden not-required resettable" />
    <nchic:label for="queryLastName"
    value="#{msgs.labelLastName}"
    required="false" />
    <h:inputText id="queryLastName"
    value="#{searchForm.criteria.lastName}"
    tabindex="8"
    maxlength="30"
    styleClass="not-required resettable" />
    <nchic:label for="queryFirstName"
    value="#{msgs.labelFirstName}"
    required="false" />
    <h:inputText id="queryFirstName"
    value="#{searchForm.criteria.firstName}"
    tabindex="9"
    maxlength="30"
    styleClass="not-required resettable" />
    <nchic:label for="queryGender"
    value="#{msgs.labelGender}"
    required="false" />
    <h:selectOneMenu id="queryGender"
    value="#{searchForm.criteria.gender}"
    converter="patient.Gender"
    tabindex="10"
    styleClass="masked-hidden not-required resettable">
    <f:selectItems value="#{searchForm.lists.allGenderTypes}" />
    </h:selectOneMenu>
    </h:panelGrid>
    <h:panelGroup layout="block" style="text-align: center">
    <h:panelGroup layout="block"
    style="padding-top: 15px; margin-left: auto; margin-right: auto;">
    <h:commandButton action="#{searchForm.searchAction}"
    value="#{msgs.buttonSearch}"
    styleClass="s-button"
    tabindex="11"
    onclick="jQuery(document.body).mask('Searching...');" />
    <rich:spacer width="10" />
    <h:commandButton type="button"
    styleClass="s-button"
    onclick="return JointReg.searchForm.resetSearchForm();"
    tabindex="12"
    value="#{msgs.buttonClearSearch}" />
    <rich:spacer width="100" />
    <h:commandButton action="#{searchForm.createJohnDoeAction}"
    styleClass="s-button"
    onclick="jQuery(document.body).mask('Registering...');"
    tabindex="13"
    value="#{msgs.buttonJohnDoe}" />
    </h:panelGroup>
    </h:panelGroup>
    </h:form>
    </rich:panel>
    </h:panelGroup>
    </ui:define>
    </body>
    </ui:composition>
    </html>
    WSDL:
    <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
    - <s0:definitions xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:s2="urn:oasis:names:tc:wsrp:v1:bind" xmlns:s3="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s4="urn:bea:wsrp:ext:v1:bind" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" targetNamespace="urn:oasis:names:tc:wsrp:v1:wsdl">
    <import location="http://10.75.2.235:7711/RegistrationPortlet/producer/wsrp-2.0/markup?WSDL" namespace="urn:oasis:names:tc:wsrp:v2:wsdl" xmlns="http://schemas.xmlsoap.org/wsdl/" />
    <s0:import location="http://10.75.2.235:7711/RegistrationPortlet/producer/wsrp-1.0/markup?WSDL/wlp_wsrp_v1_bindings.wsdl" namespace="urn:bea:wsrp:ext:v1:bind" />
    <s0:import location="http://10.75.2.235:7711/RegistrationPortlet/producer/wsrp-1.0/markup?WSDL/wsrp_v1_bindings.wsdl" namespace="urn:oasis:names:tc:wsrp:v1:bind" />
    <wsp:UsingPolicy s0:Required="true" />
    - <wsp:Policy s1:Id="ProducerDefaultPolicy">
    - <wsp:All>
    - <wssp:Identity xmlns:wssp="http://www.bea.com/wls90/security/policy">
    - <wssp:SupportedTokens>
    - <wssp:SecurityToken TokenType="http://docs.oasis-open.org/wss/2004/01/oasis-2004-01-saml-token-profile-1.0#SAMLAssertionID">
    - <wssp:Claims>
    <wssp:ConfirmationMethod>sender-vouches</wssp:ConfirmationMethod>
    </wssp:Claims>
    </wssp:SecurityToken>
    </wssp:SupportedTokens>
    </wssp:Identity>
    </wsp:All>
    </wsp:Policy>
    - <s0:service name="WSRPService">
    - <s0:port binding="s2:WSRP_v1_Markup_Binding_SOAP" name="WSRPBaseService">
    <s3:address location="http://10.75.2.235:7711/RegistrationPortlet/producer/wsrp-1.0/markup" />
    </s0:port>
    - <s0:port binding="s2:WSRP_v1_ServiceDescription_Binding_SOAP" name="WSRPServiceDescriptionService">
    <s3:address location="http://10.75.2.235:7711/RegistrationPortlet/producer/wsrp-1.0/serviceDescription" />
    </s0:port>
    - <s0:port binding="s4:WLP_WSRP_v1_Markup_Ext_Binding_SOAP" name="WLP_WSRP_Ext_Service">
    <s3:address location="http://10.75.2.235:7711/RegistrationPortlet/producer/wsrp-wlp-ext-1.0/markup" />
    </s0:port>
    </s0:service>
    </s0:definitions>

    did you publish the internetserive "<b>bbpstart</b>" to site internal?
    Regards
    Raja

  • Routing and remote access logging to SQL server

    Hi!
    I am in the process of trying to set up SQL logging from routing and remote access on a windows server 2003 to another windows server 2003 which is running microsoft SQL server 2005.
    What i did was i created a database named RRAS in the sql server and in routing and remote access i went under remote access logging and configured it, when i press "test connection" it says its successful. and when i check the local logfile i successfully
    configured i can see my connection attempts towards the RRAS. but in the sql database there's nothing, no tables or anything.
    I am sure i have the right permissions going on since i have only been using one account for everything so far(created the rras and the sql database), the SQL server is operational(it has a myriad of other databases that are used on a dailybasis).
    So i am wondering what component is missing? do i need to create the tables manually, is there a guide that tells me how to do that?

     
    Hi Plindgren,
    Thanks for posting here.
    May in know which fields we’ve created for this table ?
    Please take look the link below and recheck the database settings:
    Key concepts for IAS SQL Server logging
    http://technet.microsoft.com/en-us/library/cc778830(WS.10).aspx
    For more information please also refer to the link below:
    Deploying SQL Server Logging with Windows Server 2003 Internet Authentication Service (IAS)
    http://technet.microsoft.com/en-us/library/cc776712(WS.10).aspx
    Thanks.
    Tiger Li
    Tiger Li
    TechNet Community Support

  • WLS http access logs not written to when starting WLS instance using nodemanager

    When starting managed WLS instances using node manager the HTTP access logs are
    not written to (the WLS log in the same directory is written to). All other functionality
    of the WLS instances seem to operate just fine when started using node manager.
    When we start the same managed WLS instances using a start-up script the HTTP
    access logs are written to.
    ===
    How can we get HTTP access logs to be written to when starting a WLS instance
    using node manager?

    I think I know the answer to this one!
    I got bitten by the same bug (at least I think it is a bug). Check the location
    specified for the HTTP-access log for your server instance. It is probably a relative
    location, right?
    According to the docs, relative paths should start from the Root Directory (see
    your Remote Start config), but it seems like the BEA-programmers forgot to retrieve
    the Root Directory and instead blindly writes to the process' current working
    directory (CWD).
    And when started by the Node Managet, the CWD = WL_HOME/common/nodemanager.
    If you are as paronoid as I am (and you should be too), that directory should
    not be writeable by anyone. Because my BEA installation was owned by 'bin', and
    the processes run by 'beawls', I got an error message in my NM-logs pointing to
    the problem. In your case, you are probably running NM as a user that has write-access
    to your NM-home, and all your missing HTTP-access logs are deep, down there.
    Jan Bruun Andersen

  • Filter ip addresses from access logs of Directory Proxy servers

    Hi,
    I have a network loadbalancer before 2 DPS instances (v6.3.1) and the network loadbalancer probes the 2 instances every 3 seconds.
    In orther to avoid spamming of the access logs I would like to filter every connection from those ip addresses from writing in the access logs.
    Is this possible without having to modify the log level, since I need the connection INFO for statistics and/or impact analysis operations.
    regards,
    Vincent

    Hello,
    Many customers use F5.
    However, there is no mechanims at the LDAP protocol level to carry initial client IP address down to the ultimate server
    -Sylvain
    When closing a thread as answered remember to mark the correct and helpful posts to make it easier for others to find them

  • Change access log format

    Hi everybody
    I want to change the access log format of Sun Java Application Server 8.1 2005 Q2...
    I want to include session id information in it ...so i changed the log format using the admin console gui Configuration->httpservice->Access logs...
    The domain.xml file reflected the change as....
    <access-log format="%client.name% %auth-user-name% %datetime% %request% %status% %response.length%" rotation-enabled="true" rotation-interval-in-minutes="1440" rotation-policy="time" rotation-suffix="%YYYY;%MM;%DD;-%hh;h%mm;m%ss;s" />
    to
    <access-log format="%client.name% %auth-user-name% %datetime% %request% %status% %response.length% %cookie.value%" rotation-enabled="true" rotation-interval-in-minutes="1440" rotation-policy="time" rotation-suffix="%YYYY;%MM;%DD;-%hh;h%mm;m%ss;s" />
    But even after i restarted my server,the logs are getting stored in the default format itself....
    Am i missing some step....can somebody tell me the detailed procedure....

    It is a bug(see 6352797) fixed in Patch 07. You should get your appserver patched with one of the following, depending on platform/installation:
    Packaged based:119166-14, 119167-14, 119168-14
    File based:
    EE: 119169-06, 119170-06, 119171-06
    PE: 119173-06, 119174-06, 119175-06, 119176-06

  • DPS 6.3.1 access log info message for ssl incorrect

    In dps "data sources" I have all my connections to backend servers over 389 and their config says "never use ssl". Why do I get this error in the access log? I know its just info and not bad but its reporting something it shouldn't.
    [04/May/2009:14:57:16 -0700] - CONNECT - INFO - conn=14982 client=x.x.x.x:2882 server=sales.company.com:636 protocol=LDAPS
    [04/May/2009:14:57:16 -0700] - DISCONNECT - INFO - conn=14982 reason="other" msg="Exception caught while polling client connection LDAPS.x.x.x.x.2882 -- java.io.IOException: Received CLOSED during initial handshaking"
    Moreover my backend ldap servers dont use the standard ports like 636.

    Thanks. Issue resolved. The error went away. I was in early testing and the set up may have been inaccurate.

  • Rotation of access logs unsuccessful !!

    Hi everybody,
    I tried setting up the rotation for access log (WLS 6.0), as per the user documentation.This
    doesn't seem to work, neither "by Size" nor "by Date". My config.xml does show
    proper tags for logging.
    <WebServer DefaultWebApp="DefaultWebApp_myserver" LogFileBufferKBytes="15" LogFileName="./config/mydomain/logs/sushil.log"
    LogRotationPeriodMins="1" LogRotationTimeBegin="06-07-2001-14:19:30" LogRotationType="size"
    LoggingEnabled="true" Name="myserver" />
    Am I missing something here. I was wondering if someone could give me an insight
    on this.
    Thanks in advance,
    Sushil

    I see there is no space between 1000" and max.
    <access-log path="../log/http-web-access.log" max-file-size="1000"max-directory-size="10000"/>
    However, you need to use the ODL logging line in config
         <odl-access-log path="../log/http-web-access" max-file-size="1000" max-directory-size="10000"/>

  • How to track browser type in the access log

    I have looked through the documentation on logging features on how to log the browser
    type for visitors. Is there a straightforward way to do add this information
    to the access.log?
    We are using Weblogic Portal 7.0 sp4
    Thank you.

    Hi,
    What do you mean by current and old version? Any changes in history log under general settings-->service tab?
    Thanks & Regards,
    Nagarajan

  • Transaction log and access log

    The transaction log (TransactionLogFilePrefix) and the access log are stored
    relative to the directory where the server is started rather than where it
    resides as with the rest of the log files. Why is this?
    Eg.
    I start the server with a batch file contained in
    projects\bat
    My server is in
    projects\server\config\myDomain
    When I start the server the access and transaction logs end up in
    projects\bat
    while all the rest of the log files (such as the domain and server log) end
    up in
    projects\server
    My batch file that starts the server looks like this
    "%JAVA_HOME%\bin\java" -hotspot -ms64m -mx64m -classpath %CLASSPATH%
    "-Dbea.home=e:\bea"
    "-Djava.security.policy==i:\projects\server\config\myDomain\weblogic.policy"
    "-Dweblogic.Domain=myDomain" "-Dweblogic.Name=adminServer"
    "-Dweblogic.RootDirectory=i:/projects/server"
    "-Dweblogic.management.password=weblogic" weblogic.Server
    Thanks for help on this,
    Myles

    The same case with me, I sent email to apple support, but got not reply.
    The apple status page indicated that every thing is fine now, what a joke.
    Many devs are in this situation too, I guess we could do nothing but waiting for their system to come up.

  • Can no longer access log files from EM(ECM11.1.1.6.0).

    Full UI popup error is " Stream closed ADF_FACES-60097:For more information, please see the server's error log for an entry beginning with: ADF_FACES-60096:Server Exception during PPR, #4"
    Of course, I can't see any further errors in the logs,so I'm really at a disadvantage. am currently asking client if he sees anything in the Console for errors.
    This was working just fine, no issues accessing logs from EM. No configiration changes were made, there's almost 8gb RAM available on this box(SOA on different BOX). ECM set up is Admin, IPM, UCM on this box.
    Is there special memory settings for logs?

    log from Admin Console is this:
    <Dec 11, 2012 12:03:32 PM PST> <Error> <oracle.adfinternal.view.faces.config.rich.RegistrationConfigurator> <BEA-000000> <ADF_FACES-60096:Server Exception during PPR, #6
    java.io.IOException: Stream closed
    at java.io.BufferedInputStream.getInIfOpen(BufferedInputStream.java:134)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:237)
    at oracle.xml.parser.v2.XMLReader.pushXMLReader(XMLReader.java:416)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:315)
    at oracle.jsp.parse.XMLUtil.getDocument(XMLUtil.java:447)
    at oracle.jsp.parse.OracleJsp2Java.transformImpl(OracleJsp2Java.java:402)
    at oracle.jsp.parse.OracleJsp2Java.transform(OracleJsp2Java.java:593)
    at oracle.jsp.runtimev2.JspPageCompiler.attemptCompilePage(JspPageCompiler.java:691)
    at oracle.jsp.runtimev2.JspPageCompiler.compileBothModes(JspPageCompiler.java:490)
    at oracle.jsp.runtimev2.JspPageCompiler.parseAndGetTreeNode(JspPageCompiler.java:457)
    at oracle.jsp.runtimev2.JspPageInfo.compileAndLoad(JspPageInfo.java:624)
    at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:645)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:387)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:810)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:734)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:821)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.sysman.eml.app.JSPFilter.doFilter(JSPFilter.java:93)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.sysman.core.model.targetauth.EMLangPrefFilter.doFilter(EMLangPrefFilter.java:158)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:527)
    at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253)
    at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:410)
    at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:45)
    at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:45)
    at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:45)
    at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:45)
    at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$OverrideDispatch.dispatch(FacesContextFactoryImpl.java:268)
    at com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:471)
    at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:140)
    at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:191)
    at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
    at oracle.sysman.emSDK.adfext.ctlr.EMViewHandlerImpl.renderView(EMViewHandlerImpl.java:158)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:911)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:367)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:222)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.sysman.emSDK.license.LicenseFilter.doFilter(LicenseFilter.java:102)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:447)
    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:447)
    Again, this is from me simply acessing any standard WLS log on the ECM Domain.
    Lgin as weblogic, then Farm->logs>View Log Messages

  • Weird error message I got after changing my Access Log Settings

    "Try to refresh the view (localhost/Web). Report the problem to the administrator if it persists. (NILRESPONSEERR (* -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)))"
    I can't seem to get into server admin to change back what I did. I copied access log settings from a known good working server and after hitting save I get this. Tried restarting with no luck.
    Anyone know where to start looking at? Ever encountered this before?

    Jul 14 15:40:13 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:40:13 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:40:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:41:03 www deliver[72454]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 15:41:03 www deliver[72452]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 15:41:13 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:41:13 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:41:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:41:27 www drupal[57811]: http://www.livecostarica.net not found|142.59.23.125|http://www.livecostarica.net/favicon.ico|http://www.livecos tarica.net/blog/?p=26|0||favicon.ico
    Jul 14 15:41:35 www drupal[66954]: http://www.livecostarica.net not found|84.104.43.5|http://www.livecostarica.net/images/banners/Forum||0||images/ banners/Forum
    Jul 14 15:42:03 www com.apple.launchd[1] (org.postfix.master[72444]): Stray process with PGID equal to this dead job: PID 72457 PPID 1 bounce
    Jul 14 15:42:13 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:42:13 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:42:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:43:14 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:43:14 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:43:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:44:03 www deliver[72665]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 15:44:14 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:44:14 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:44:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:45:14 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:45:14 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:45:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:46:03 www deliver[72814]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 15:46:03 www deliver[72812]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 15:46:15 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:46:15 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:46:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:46:36 www org.clamav.freshclam[30]: Received signal: wake up
    Jul 14 15:46:36 www org.clamav.freshclam[30]: ClamAV update process started at Mon Jul 14 15:46:36 2008
    Jul 14 15:46:36 www org.clamav.freshclam[30]: SECURITY WARNING: NO SUPPORT FOR DIGITAL SIGNATURES
    Jul 14 15:46:36 www org.clamav.freshclam[30]: See the FAQ at http://www.clamav.net/support/faq for an explanation.
    Jul 14 15:46:36 www org.clamav.freshclam[30]: WARNING: Your ClamAV installation is OUTDATED!
    Jul 14 15:46:36 www org.clamav.freshclam[30]: WARNING: Local version: 0.92.1 Recommended version: 0.93.3
    Jul 14 15:46:36 www org.clamav.freshclam[30]: DON'T PANIC! Read http://www.clamav.net/support/faq
    Jul 14 15:46:36 www org.clamav.freshclam[30]: main.inc is up to date (version: 47, sigs: 312304, f-level: 31, builder: sven)
    Jul 14 15:46:36 www org.clamav.freshclam[30]: daily.inc is up to date (version: 7709, sigs: 39397, f-level: 33, builder: neo)
    Jul 14 15:47:15 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:47:15 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:47:16 www drupal[34658]: http://www.livecostarica.net not found|75.109.107.138|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 15:47:19 www drupal[42900]: http://www.livecostarica.net not found|75.109.107.138|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 15:47:26 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:48:15 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:48:15 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:48:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:49:16 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:49:16 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:49:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:50:16 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:50:16 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:50:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:51:16 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:51:16 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:51:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:52:17 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:52:17 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:52:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:53:17 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:53:17 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:53:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:54:17 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:54:17 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:54:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:55:18 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:55:18 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:55:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:56:18 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:56:18 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:56:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:57:18 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:57:18 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:57:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:58:03 www drupal[70440]: http://www.livecostarica.net not found|128.8.89.68|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 15:58:19 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:58:19 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:58:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:59:03 www deliver[73684]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 15:59:19 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 15:59:19 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 15:59:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:00:19 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:00:19 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:00:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:01:19 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:01:20 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:01:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:02:20 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:02:20 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:02:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:03:20 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:03:20 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:03:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:04:13 www drupal[42900]: http://www.livecostarica.net not found|70.187.191.193|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:04:20 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:04:21 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:04:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:04:30 www drupal[70440]: http://www.livecostarica.net not found|70.187.191.193|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:05:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:05:21 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:05:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:06:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:06:21 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:06:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:07:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:07:21: --- last message repeated 1 time ---
    Jul 14 16:07:21 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:08:15 www drupal[57811]: http://www.livecostarica.net not found|74.62.112.107|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:08:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:08:22: --- last message repeated 1 time ---
    Jul 14 16:08:22 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:09:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:09:22: --- last message repeated 1 time ---
    Jul 14 16:09:22 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:10:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:10:22: --- last message repeated 1 time ---
    Jul 14 16:10:22 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:11:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:11:23: --- last message repeated 1 time ---
    Jul 14 16:11:23 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:12:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:12:23: --- last message repeated 1 time ---
    Jul 14 16:12:23 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:13:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:13:24: --- last message repeated 1 time ---
    Jul 14 16:13:24 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:14:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:14:24: --- last message repeated 1 time ---
    Jul 14 16:14:24 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:15:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:15:24: --- last message repeated 1 time ---
    Jul 14 16:15:24 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:15:48 www drupal[57811]: http://www.livecostarica.net not found|196.40.38.106|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:15:48 www drupal[42900]: http://www.livecostarica.net not found|196.40.38.106|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:16:03 www com.apple.launchd[1] (org.postfix.master[74749]): Stray process with PGID equal to this dead job: PID 74751 PPID 1 qmgr
    Jul 14 16:16:03 www deliver[74826]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 16:16:08 www drupal[66956]: http://www.livecostarica.net not found|196.40.38.106|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:16:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:16:24 www drupal[42900]: http://www.livecostarica.net not found|196.40.38.106|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:16:25 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:16:25 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:17:03 www com.apple.launchd[1] (org.postfix.master[74820]): Stray process with PGID equal to this dead job: PID 74831 PPID 1 flush
    Jul 14 16:17:03 www com.apple.launchd[1] (org.postfix.master[74820]): Stray process with PGID equal to this dead job: PID 74821 PPID 1 pickup
    Jul 14 16:17:25 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:17:25 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:17:26 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:18:04 www drupal[55319]: http://www.livecostarica.net not found|150.70.84.177|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:18:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:18:25: --- last message repeated 1 time ---
    Jul 14 16:18:25 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:19:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:19:26: --- last message repeated 1 time ---
    Jul 14 16:19:26 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:20:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:20:26: --- last message repeated 1 time ---
    Jul 14 16:20:26 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:21:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:21:26: --- last message repeated 1 time ---
    Jul 14 16:21:26 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:21:32 www drupal[70437]: http://www.livecostarica.net not found|128.61.202.64|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:22:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:22:27: --- last message repeated 1 time ---
    Jul 14 16:22:27 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:23:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:23:27: --- last message repeated 1 time ---
    Jul 14 16:23:27 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:24:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:24:27: --- last message repeated 1 time ---
    Jul 14 16:24:27 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:25:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:25:28: --- last message repeated 1 time ---
    Jul 14 16:25:28 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:26:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:26:28: --- last message repeated 1 time ---
    Jul 14 16:26:28 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:27:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:27:28: --- last message repeated 1 time ---
    Jul 14 16:27:28 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:28:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:28:29: --- last message repeated 1 time ---
    Jul 14 16:28:29 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:29:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:29:29: --- last message repeated 1 time ---
    Jul 14 16:29:29 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:30:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:30:29: --- last message repeated 1 time ---
    Jul 14 16:30:29 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:31:03 www deliver[75830]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 16:31:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:31:29: --- last message repeated 1 time ---
    Jul 14 16:31:29 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:32:03 www deliver[75906]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 16:32:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:32:30: --- last message repeated 1 time ---
    Jul 14 16:32:30 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:33:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:33:30: --- last message repeated 1 time ---
    Jul 14 16:33:30 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:34:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:34:30: --- last message repeated 1 time ---
    Jul 14 16:34:30 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:35:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:35:31: --- last message repeated 1 time ---
    Jul 14 16:35:31 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:36:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:36:31: --- last message repeated 1 time ---
    Jul 14 16:36:31 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:37:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:37:31: --- last message repeated 1 time ---
    Jul 14 16:37:31 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:38:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:38:32: --- last message repeated 1 time ---
    Jul 14 16:38:32 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:39:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:39:32: --- last message repeated 1 time ---
    Jul 14 16:39:32 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:40:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:40:32: --- last message repeated 1 time ---
    Jul 14 16:40:32 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:41:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:41:33: --- last message repeated 1 time ---
    Jul 14 16:41:33 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:42:11 www drupal[42900]: http://www.livecostarica.net not found|99.244.112.245|http://www.livecostarica.net/favicon.ico||0||favicon.ico
    Jul 14 16:42:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:42:33: --- last message repeated 1 time ---
    Jul 14 16:42:33 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:43:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:43:33: --- last message repeated 1 time ---
    Jul 14 16:43:33 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:44:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:44:34: --- last message repeated 1 time ---
    Jul 14 16:44:34 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:45:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:45:34: --- last message repeated 1 time ---
    Jul 14 16:45:34 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:46:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:46:34: --- last message repeated 1 time ---
    Jul 14 16:46:34 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:46:36 www org.clamav.freshclam[30]: Received signal: wake up
    Jul 14 16:46:36 www org.clamav.freshclam[30]: ClamAV update process started at Mon Jul 14 16:46:36 2008
    Jul 14 16:46:36 www org.clamav.freshclam[30]: SECURITY WARNING: NO SUPPORT FOR DIGITAL SIGNATURES
    Jul 14 16:46:36 www org.clamav.freshclam[30]: See the FAQ at http://www.clamav.net/support/faq for an explanation.
    Jul 14 16:46:36 www org.clamav.freshclam[30]: WARNING: Your ClamAV installation is OUTDATED!
    Jul 14 16:46:36 www org.clamav.freshclam[30]: WARNING: Local version: 0.92.1 Recommended version: 0.93.3
    Jul 14 16:46:36 www org.clamav.freshclam[30]: DON'T PANIC! Read http://www.clamav.net/support/faq
    Jul 14 16:46:36 www org.clamav.freshclam[30]: main.inc is up to date (version: 47, sigs: 312304, f-level: 31, builder: sven)
    Jul 14 16:46:36 www org.clamav.freshclam[30]: daily.inc is up to date (version: 7709, sigs: 39397, f-level: 33, builder: neo)
    Jul 14 16:47:26 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:47:35: --- last message repeated 1 time ---
    Jul 14 16:47:35 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:48:03 www deliver[76982]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 16:48:03 www deliver[76984]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 16:48:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:48:35: --- last message repeated 1 time ---
    Jul 14 16:48:35 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:49:03 www com.apple.launchd[1] (org.postfix.master[76974]): Stray process with PGID equal to this dead job: PID 76986 PPID 1 bounce
    Jul 14 16:49:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:49:35: --- last message repeated 1 time ---
    Jul 14 16:49:35 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:50:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:50:36: --- last message repeated 1 time ---
    Jul 14 16:50:36 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:51:03 www deliver[77194]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 16:51:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:51:36: --- last message repeated 1 time ---
    Jul 14 16:51:36 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:52:03 www com.apple.launchd[1] (org.postfix.master[77188]): Stray process with PGID equal to this dead job: PID 77199 PPID 1 flush
    Jul 14 16:52:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:52:36: --- last message repeated 1 time ---
    Jul 14 16:52:36 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:53:03 www deliver[77340]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 16:53:03 www deliver[77337]: connect(/var/imap/socket/lmtp) failed: Connection refused
    Jul 14 16:53:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:53:37: --- last message repeated 1 time ---
    Jul 14 16:53:37 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)
    Jul 14 16:54:21 www servermgrd[41]: servermgr_web: Invalid CustomLog directive '"/var/log/apache2/access_log"'
    Jul 14 16:54:37: --- last message repeated 1 time ---
    Jul 14 16:54:37 www servermgrd[41]: Exception in doCommand: * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)

  • IMac 20-inch on OSX 10.7.4 running iphoto 11, my photos from my iphoto library have been deleted. I have time machine but the iphoto library file is missing when I access time machine, help please.

    I have an imac 20-inch Late 2006 model on OSX 10.7.4 running iphoto 11, somehow the application ccleaner has deleted my photos from my iphoto library. I have time machine but the iphoto library file is missing when I access time machine.
    To restore photos I have followed the steps below
    Quit iPhoto.
    Connect your Time Machine drive.
    In the Finder, open the folder containing your iPhoto Library. Unless you've moved your iPhoto Library, it can be found in Home/Pictures/iPhoto Library.
    Enter Time Machine.  (Time Machine can be found in the Dock or in the /Applications folder.)
    Choose your desired backup. The timeline on the right side of the screen displays a purple tick mark for each of the backups stored on your Time Machine drive.
    Select the iPhoto library you would like to restore, and click the Restore button.
    I dont get the option in step 6 as I dont have an iphoto library file to choose? Does anyone know why?

    Hi Barry
    Thanks but as mentioned all is intact, even at step 3 I can see the current library in Home/Pictures/iPhoto Library which has no photos, but when I access time machine any point before the NOW option the iphoto library in Home/Pictures/iPhoto Library is missing from the finder window. 
    As you can see here it is
    and now its gone. I have no explanantion.
    How do I go about moving this question as you suggested.

  • File name format of rotated access log

    Hi,
    I'm using wls5.1sp9 on Solaris.
    Is it possible to specify a different file name format of the rotated http access
    logs?
    Instead of getting files named access.log0001 and so on, I would prefer access.log.<date>
    or some other custom format.
    Best regards,
    Torleif Galteland

    Hi,
    Thanks for your response. But I have another query. The name of the file as per your reply is like UsageReport.xls correct? Now my query is, should it contain some date,account id/orgid etc associated for that usage. The reason for my query is that if MSP
    downloads the usage for different orgs having same bill date then it would conflict with the different usage files.
    Thanks And Regards,
    Sumanta Saha

  • Date time in the transaction access log of ST03N

    Hi,
    How do I get date time in the log of transaction access by user.
    in transaction ST03N
    Pls let me know if any other transaction is available there
    I can get transaction access logs userwise.
    Points will be rewarded.
    Thanks

    Hi,
    SM19 - Configuration / SM20 - evaluation (if audit log maintained) will fetch the date and time of tcode accessed by user.
    Rakesh

Maybe you are looking for