Problem changing Access Log Configuration

Hi,
I want to change the default configuration for creating access log files in the "http-web-site.xml".
After I inserted any additional attributes to the <access-log>-Tag (for example 'split' or 'format') and restarted the server, the server doesn't generate log files any more.
Does anyone know about this bug ?
I'm running oc4j 9.0.2 (stand-alone without Apache).
Any help would be appreciated.
Oliver

Great! Thanks! It worked. I modified server.xml with the following:
<access-log>
   <file>../logs/access</file>
   <format>%Ses->client.ip% - %Req->vars.auth-user% [%SYSDATE%] "%Req->reqpb.clf-request%" %Req->srvhdrs.clf-status% %Req->srvhdrs.content-length% "%Req->headers.referer%" "%Req->headers.user-agent%"</format>
</access-log>Then I stopped and restarted the Web server (/bin/stopserv, /bin/startserv). The access log now shows the additional data.
Thanks for the reply!

Similar Messages

  • 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

  • Problems while accessing System Configuration

    Dear All,
    I am accessing System Configuration link thru System Administration--> System Configuration using J2EE_ADMIN as the user, even though i have given most of the authorisations it still gives me a access denied javascript error. can anyone please let me know for which authorisations i need to check
    regards
    Vinay

    Its not necessary that if you hav super admin role that you can access  the system information.You need to hav the the credentials of the "administrator".
    you can find out the system configuration details from the url
    http:<hostname:portno>/index.html
    click on system configuration.
    you can accesses those details if you are having  administrator role only.If u dont have it contact your portal admin or basis people they can help you out.

  • Logging configuration problem

    Hi all
    I am working with JRun4. My problem is logging.
    logging mechanism can send messages to these destinations:
    1) The console screen
    2) The Log file.
    In both cases , logging information is obtained. but The console screen shows information which i print by System.out.println() , and The log file shows information which is Event generated. I want to store information in a file , which is given by System.out.printlln().
    I have done entries in jrun.xml as
    <service class="jrunx.logger.LoggerService" name="LoggerService">
    <attribute name="format">{server.date} {log.level}{log.exception}</attribute>
    <attribute name="errorEnabled">true</attribute>
    <attribute name="warningEnabled">true</attribute>
    <attribute name="infoEnabled">true</attribute>
    <attribute name="debugEnabled">false</attribute>
    <attribute name="metricsEnabled">true</attribute>
    <attribute name="metricsLogFrequency">60</attribute>
    <attribute name="metricsFormat">Web threads(busy/total): {jrpp.busyTh}/{jrpp.totalTh} Sessions: {sessions} Total Memory={totalMemory} Free={freeMemory}</attribute>
    <service class="jrunx.logger.ThreadedLogEventHandler" name="ThreadedLogEventHandler" >
    <service class="jrunx.logger.ConsoleLogEventHandler" name=":service=ConsoleLogEventHandler"/>
    <service class="jrunx.logger.FileLogEventHandler" name="FileLogEventHandler">
    <attribute name="filename">{jrun.rootdir}/logs/{jrun.server.name}-event.log</attribute>
    <attribute name="rotationSize">200k</attribute>
    <attribute name="rotationFiles">3</attribute>
    <attribute name="closeDelay">5000</attribute>
    <attribute name="deleteOnExit">false</attribute>
    </service>
    </service>
    </service>
    what should i do for this?
    Please guide me.

    You should put it in the root of your classes (Ex: with JBuilder is
    $projecthome/classes)
    Alexp wrote:
    Hi !
    I have a problem with the logging configuration.
    What is the right place for the log4j.properties file?
    Thanks a lot for cooperation,
    Alex.

  • How to log to a file using the log-configuration.xml?

    Hello *,
    I created following log-configuration.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE log-configuration SYSTEM "log-configuration.dtd">
    <log-configuration>
         <log-formatters>
              <log-formatter name="DefaultFormatter" pattern="%25d %-60l %s: %m" type="TraceFormatter"/>
         </log-formatters>
         <log-destinations>
              <log-destination count="10" effective-severity="ALL" limit="1000000" name="DefaultDestination" pattern="FDLB_GUI.%g.trc" type="FileLog">
                   <formatter-ref name="DefaultFormatter"/>
              </log-destination>
         </log-destinations>
         <log-controllers>
              <log-controller effective-severity="ALL" maximum-severity="FATAL" minimum-severity="DEBUG" name="DefaultController">
                   <associated-destinations>
                        <destination-ref association-type="LOG" name="DefaultDestination"/>
                   </associated-destinations>
              </log-controller>
         </log-controllers>
    </log-configuration>
    From a Web Dynpro view I want to use the log-controller. I'm using the default logger:
    Logging location.
      private static final com.sap.tc.logging.Location logger =
        com.sap.tc.logging.Location.getLocation(EinstiegView.class);
    In the wdInit method I want to log a simple message:
      public void wdDoInit()
        //@@begin wdDoInit()
        logger.setEffectiveSeverity(com.sap.tc.logging.Severity.ALL);
        logger.fatalT("test logging to new file logger");
        //@@end wdDoInit()
    I see the message in the defaultTrace.0.log, but my own log file doesn't appear.
    How to address the log-controller of my log-configuration.xml?
    Thanks in advance,
    Jürgen Dufner

    Hi,
    I guess the follwing part of your log-configuration is wrong:
    <log-controller
    effective-severity="ALL"
    maximum-severity="FATAL" m
    nimum-severity="DEBUG"
    name="DefaultController">
    Try to change in log-configuration the value for name in <log-controller> to the start sequence of the packages to be logged. E.g., all our packages should start with com.yourcompanyname.projectname
    To log all messages from classes in these packages make the name = com.yourcompanyname.projectname.
    Hope that helps,
    Regards, Astrid
    Therefore I list

  • 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)

  • Change Date Format in iplanet Access logs

    Hi,
    We are currently using iplanet web server. The default date format in the access logs is dd/mmm/yyyy:HH:MM:SS GMT. How can we change this format to yyyy/mm/dd:HH:MM:SS GMT.
    Thanks in advance

    Sorry, I don't know enough about web server to answer you.

  • Change Date Time format in Iplanet Access logs

    Hi,
    We are currently using iplanet web server. The default date format in the access logs is dd/mmm/yyyy:HH:MM:SS GMT. How can we change this format to yyyy/mm/dd:HH:MM:SS GMT.

    You should not change this format. The default date format complies with the "common log format" which is readable by many log analysis tools.
    That said, if you still want to change the date format, you can replace %SYSDATE% with %LOCALEDATE% in your flex-init line. LOCALEDATE will cause the WS to use the date format set by your OS.

  • How to configure WLS to send HTTP access log to syslog under Solaris?

    I understand there is a way configuring WLS to use syslog via log4j. Is it possible only to direct HTTP access logs to syslog and keep the rest of logs in normal log files? Thanks!

    I've been following the "How to do UD Document" https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/58f4db47-0501-0010-a2bf-ff01b150fdff and more specifically the document for Sybase  https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c0d70315-958f-2a10-bc88-eb91e36f4037
    I am using the latest .jar file from Sybase http://www.sybase.com/detail?id=1002257
    When I navigate to http://<hostname>:50000//TestJDBC_Web/TestJDBCPage.jsp and Select connection name SDK_JDBC I get the following error message:
    Could not connect to database. Connection is inactive or does not support JDBC
    com.sap.ip.bi.sdk.exception.BIConnectionFailedException: Cannot open the connection
    Caused by: com.sap.ip.bi.sdk.exception.BIResourceException: Class DriverName is not found
    Caused by: java.lang.ClassNotFoundException: com.sybase.jdbc2.jdbc.SybDataSource
    Found in negative cache
    Loader Info -
    ClassLoader name: [connector:default]
    Parent loader name: [Frame ClassLoader]
    library:SYBASE
    Resources:
       /usr/sap/BWD/JC02/j2ee/cluster/server0/apps/sap.com/com.sap.ip.bi.sdk.dac.connector.sapq/connector/connectors/bi_sdk_sapq.rar/bi_sdk_sapq.jar
       /usr/sap/BWD/JC02/j2ee/cluster/server0/apps/sap.com/com.sap.ip.bi.sdk.dac.connector.jdbc/connector/connectors/bi_sdk_jdbc.rar/bi_sdk_jdbc.jar
       /usr/sap/BWD/JC02/j2ee/cluster/server0/apps/sap.com/cafbwadapterassembly/connector/connectors/cafbwadapterassembly.rar/sap.comcafbwadaptercaf.bw.adapter.jar
       /usr/sap/BWD/JC02/j2ee/cluster/server0/apps/sap.com/com.sap.ip.bi.sdk.dac.connector.xmla/connector/connectors/bi_sdk_xmla.rar/bi_sdk_xmla.jar
    Loading model: {parent,references,local}
    Any thoughts/insites?
    Thanks, Steve

  • How has access.log file configured in WebLogic server 10.0?

    1.) I am using BEA Weblogic 10.0 and my access.log is not getting updated.
    2.) I also need any information as to how this Webblogic server forms chunks (ex....access00011.log,access00012.log) because i have a software called AWStats which merges all these chunks into 1 single access.log file under its subdirectory.
    3.) I also need information as to how and where the user can specify/ form his own fields which gets displayed in the access.log
    FYI i have 2 servers and i checked under Logging->HTTP->advanced, in both the servers options and configurations are same but in 1 it works fine and access.log is updating but not in the other one.
    Kindly let me know i you have any leads into this issue!
    Thanks,
    Varun

    Hi Ravish,
    Firstly thanks for the reply.
    1.) -----
    What you can do is to set the buffer-size-kb parameter value to "0" in config.xml so that it can start logging once the server starts coming up rather then waiting for the default size which is 8kb to pass.
    Something like below:
    <web-server-log>
    <buffer-size-kb>0</buffer-size-kb>
    <web-server-log>
    For more details check the below link:
    Search for: CR302493
    http://download.oracle.com/docs/cd/E11035_01/wls100/issues/known_resolved.html
    --- for this issue i had browsed throught the forum before posting but in my conf file i have something like this instead of <buffer-size-kb>0</buffer-size-kb>
    <web-server>
    <web-server-log>
    <number-of-files-limited>false</number-of-files-limited>
    <log-file-format>extended</log-file-format>
    </web-server-log>
    </web-server>
    So how do i go about the path of debugging now??
    2.) -------
    If you do not want rotation of access.log then you can just disable it from the below console path just by putting Rotation type as None
    Server -> <YOUR_SERVER_NAME> -> Logging (tab) -> HTTP (sub-tab) -> Rotation type: None
    ---- for this in both my servers i have the settings like this,
    Rotation type--> By Size
    Rotation File size 5000
    Begin rotation time 00:00
    rotation interval 24
    files to retain 7
    and Log file rotation directory is left blank (to get created in same directory)
    and also Rotate log file on startup is unchecked.
    so??? what do you suggest!?
    3.) ------
    I also need information as to how and where the user can specify/ form his own fields which gets displayed in the access.log
    ---- regarding this, in my main server the access.log is getting updated and after 4.8Mb its creating 5Mb chunks. So, for example if the entire log is of 15 Mb then access.log stops updating at 4.98Mb and accesslog.out0001 and accesslog.out0002 is created with 5Mb each but the latest entry will be stored in accesslog.out0002 file. I hope i didn't complicate this :)
    Regards,
    Varun

  • Log configuration changes to syslog on Nexus 7000?

    I need to be able to log any configuration changes to syslog on our Nexus switches. On IOS this is easy with the archive commands, but I'm a little stuck trying to do this on our Nexus gear. On the IOS gear I run the commands:
    archive
    log config
    logging enable
    logging size 100
    hidekeys
    notify syslog
    How do I do the equivalent on NX-OS?

    ​Cisco NX-OS can log configuration change events along with the individual changes when AAA command accounting is enabled.
    With command accounting enabled, all CLI commands entered, including configuration commands, are logged to the configured AAA server. Using this information, a forensic trail for configuration change events along with the individual commands entered for those changes can be recorded and reviewed.
    Because of this capability, it is strongly advised that AAA command accounting be enabled and configured.
    Refer to the “TACACS+ Command Accounting” section of this document for more information.
    The Nexus 7000, by default keeps a local accounting log of all the configuration commands entered on the device; you can view this with the 'show accounting log' command.
    In NX-OS, we changed the way logging works.  We keep a local accounting log of all the
    configuration changes ("show accounting log"), but if you want to send those logs to a
    server, it must be done with through a TACACS server.  Please see the below documentation:
    Configuring AAA on Nexus
    TACACS command accounting
    -Thanks
    Vinod
    **Encourage Contributors. RATE Them.**

  • SJS WS 6.0 access log problem

    Hi. I'm using SJS WS 6.0.
    my web server's access log is some strange.
    sometimes access log like below
    xxx.xxx.xxx.xxx - - [17/Jun/2009:10:19:26 +0900] "POST /DocInfraPt/IebMSServerWebMgr HTTP/1.0" - -
    xxx.xxx.xxx.xxx - - [17/Jun/2009:11:18:29 +0900] "POST /DocInfraPt/IebMSServerWebMgr HTTP/1.0" - -
    the status code and data size is not logging.
    and sometimes sending packet is lossing.
    is web server's problem??
    somebody help me!!

    Web Server 6.0 is old. Please move to the latest Web Server 7.0. Here is migration guide [http://wikis.sun.com/display/WebServerdocs/Installation+and+Migration+Guide]

  • Change directory for access.log

    I would like to know if it's possible to change the path of the accesslog.
    The work directory of weblogic server is D:\weblogic\myserver and the path
    of access.log is automatically in this directory.
    I want to put the access.log file in the directory : D:\log_serveur.
    I know it's possible for the weblogic.log
    adding -Dweblogic.system.logFile=D:\Log_serveur\weblogiclog\weblogic.log
    parameter in the startweblogic.bat file.
    Do -Dweblogic.httpd.logFile parameter exist and can I add it in
    startweblogic or in weblogic.properties??
    Thanks.
    Bruno LACHOT
    ST-INGENIERIE
    [email protected]

    It's not possible to change the location of this log file. It is safe to ignore it, however.
    Regards,
    Danny

  • There is no access key when I change the SRM configuration

    Dear ,Expert :
    I want to change the SRM Configuration .I do that as follows :
    1,se80 --edit object --web object --component configration
      2,I enter :/SAPSRM/WDCC_DODC_RFQ_H_BD_PUR and click the "start configurator "button
    3,change the object in IE
      then get the error message :There is no developer license and/or modification license registered for object R3TR WDCC/SAPSRM/WDCC_DODC_RFQ_H_BD_PUR 00 in this system for user*****
    you can get the screenshot in my attachment
    I get the access key from  SAP market But there is no place for entering the key .
    Bestregards
    Alex

    Hi Alex,
    Can you please share the solution?
    I am facing the same issue...
    Thanks,
    Anubhav

  • Log-Configuration.xml Problems

    Hi, I have been trying to use log-configuration.xml but it seems like i cannot get it to work at all.
    From what i understand, once i deploy my application, i should be able to edit the config via the Visual Administrator. However, after i deploy my app, i am still unable to see it with visual administrator. furthermore, i cannot find the file anywhere on the sever. Also, my settings are not reflected in the behaviour of the defaultTrace.
    Am i suppose to be able to find the "log-configuration.xml" file in the server if i have done the correct steps? If so, what are the likely mistakes i have made? I am at my wits end, anyone can help me?
    Just to add, this post seems to describe exactly my situation except i have no idea how to "manually" correct it... log-configuration.xml outside META-INF due to NWDS
    TIA!
    Ah Beng
    Message was edited by: ah beng

    Hi Rajeshkr,
    Sorry, i am kinda new to web dynpro and sap in general so i may need you to be more explicit
    I am not quite sure what this part means or how to check "...has been deployed successfully in the deploy node of the visual Node and check for the Log Configuratior Node and check for your deployed application...."
    What i did do is go to the server to and search the entire directory structure for the log-configuration.xml but could not find it. Also, the config cannot be seen via the log-configurator in visual administration engine which its supposed too i think. and lastly the behavoiur i set in the log-configuration.xml is not reflected in the defaultTrace
    Then i saw this post so i went to check the EAR file in my workspace and found that it was just like Manik described.
    Maybe u could check this link where i posted more about my problem Log-Configuration.xml Problems
    I would love to award points if it helps

Maybe you are looking for

  • Showing Items with no transactions

    I am trying to build a report that will show us items with potentially incorrect item status.  Item status (on table itmmas) is either A(ctive) or I(nactive).  The report should show all Inactive items which have had at least one transaction in the p

  • Can someone tell me how to make my safari works.

    My safari refuse to start up.

  • Verizon 2.0 UA for Android stops working with Win 7

    Ever since the last software upgrade, my computer gives me an error whenever I attach my phone to it. The problem details: Problem signature:   Problem Event Name:    APPCRASH   Application Name:    SUA.exe   Application Version:    1.0.0.1   Applica

  • APEX Forms Migration - How to redefine default's page number

    Hi there, I'm following some Oracle OBE to migrate a simple Form application: http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/11g/r2/prod/appdev/apex/apexformmigr/apexformmigr.htm I've imported all the xml files and I'd like now to creat

  • Using XML as header for Image

    Has anyone used an XML document to describe an image? I have the image already in iFS and then I want to pass in an XML document that describes the image. What path should I take to link the two together, or make them both seen as one object? Jason A