Symantec Access Management

 View Only
  • 1.  How do I configure my UBP_Logging XML??

    Posted Sep 21, 2018 11:53 AM

    Hello all, it is a simple question that just escapes me. I am just attempting to configure the two lines for my ARCOT_HOME directory ion the uBP_Logging XML and the Risk documentation doesn't show an equivalent. Here's the entire file 

     

    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
      <appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
        <file>$CA/AdvAuth/logs/ubp_logfile.log</file>
          <rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
              <fileNamePattern>$CA/AdvAuth/logs/backup/ubp_logfile.%i.log.zip</fileNamePattern>
              <minIndex>1</minIndex>
              <maxIndex>3</maxIndex>
          </rollingPolicy>
          <triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
              <maxFileSize>5MB</maxFileSize>
          </triggeringPolicy>
        <encoder>
          <pattern>%date{YYYY-MM-dd HH:mm:ss} %level [%thread] %logger{10} [%file:%line] %msg%n</pattern>
        </encoder>
      </appender>
      <logger name="com.ca.userprofiling" level="ERROR">
       <appender-ref ref="FILE" />
      </logger>
     
    </configuration>
    The two underlined lines are where I am having trouble to getting my logging to work in Risk. Is there a solution? Thanks.


  • 2.  Re: How do I configure my UBP_Logging XML??

    Broadcom Employee
    Posted Sep 27, 2018 05:37 PM

    Have you tried giving ARCOT_HOME/CA/AdvAuth/logs/ubp_logfile.log and ARCOT_HOME/CA/AdvAuth/logs/backup/ubp_logfile.%i.log.zip

     

    Remove $ sign and give the environment variable and then the path.

     

     



  • 3.  Re: How do I configure my UBP_Logging XML??
    Best Answer

    Broadcom Employee
    Posted Oct 01, 2018 06:26 PM

    Were you able to generate logs ?



  • 4.  Re: How do I configure my UBP_Logging XML??

    Posted Oct 02, 2018 09:02 AM

    Yes, I was. Thank you!