Log4j:WARN No appenders could be found

We are using weblogic 10.0.1 and JDK 1.6.
We are using Log4j for logging, if I pass -Dlog4j.configuration=log4jconfig.xml in the startup script as a command line parameter weblogic console is displaying following warning messages. However, system properly initializes Log4j properly.
Looks like beehive loggers are not initialized properly. In our log4jconfig.xml we have added appender for org.apache.
log4j:WARN No appenders could be found for logger (org.apache.beehive.netui.pageflow.internal.AdapterManager).
log4j:WARN Please initialize the log4j system properly.
Please advise

I've the same problem on weblogic 10.0.
When the application code calls commons LogFactory for the first time, I see the following error messages.
log4j:WARN No appenders could be found for logger (com.xxx.TestClass).
log4j:WARN Please initialize the log4j system properly.
Can someone explain why the same config file/setup works with Weblogic 8.1 but not with Weblogic 10.
Thanks
Kambiz
Here is my folder structure
-webroot
+
+-WEB-INF
+classes
| |--log4j.properties
+lib
+commons-logging.jar
+log4j-1.2.15.jar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • Getting error as :  log4j : WARN No appenders could be found for logger

    Hi all,
    I am using IBM - Rational Application Developer (RAD) for the development of my project service task.
    I am trying to use log4j to log various events like errors and warnings and so on ....
    But I am getting following errors in console window of RAD :
    {color:#ff0000}
    [8/5/08 10:12:18:001 IST] 00000038 SystemErr R log4j:WARN No appenders could be found for logger (VINValidationService).
    [8/5/08 10:12:18:001 IST] 00000038 SystemErr R log4j:WARN Please initialize the log4j system properly.{color}
    If you have any clue regarding how to get out of this then it would be of great help to me .... please reply soon ....!
    (Please note that I have tried all the ways of setting CLASSPATHS and BUILDPATHS in the RAD) .
    --- Thanking you in advance ...
    Akshay_L.

    You could read these to get some hints [http://www.google.co.uk/search?q=%22Please+initialize+the+log4j+system+properly.%22]
    The first reply to the first hit on google says "log4j.properties needs to be on the classpath where log4j can find it.".
    You can set the system property if you wish but the classpath approach is the easiest in my opinion.

  • Log4j:WARN No appenders could be found for logger (Log4jExample).

    Hi,
    I am getting this error when I try to use log4j to generate logs.The program works fine if I keep log4j.properties file and my logging program in the same directory.
    If it is different directory,how to make it work ? like below.
    Any help in this regard is appreciated.
    Thanks
    Chat
    C:\mjava\test > dir
    Log4jExample.java
    C:\mjava\test >java Log4jExample.java
    log4j:WARN No appenders could be found for logger (Log4jExample).
    log4j:WARN Please initialize the log4j system properly.
    import org.apache.log4j.*;
    public class Log4jExample
        private static final Logger log =
            Logger.getLogger(Log4jExample.class);
        public static void main(String[] args)
            try
                log.debug("This is a debug message.");
                int i = Integer.parseInt("Hello world");
            catch (java.lang.Exception ex)
                log.error("Caught an exception", ex);
    C:\mjava>dir
    log4j.properties

    I'd recommend you use the classpath. But don't put log4j.properties in the parent directory of where your java class is, or the classpath will end up being incorrect. Try putting it in a separate directory tree, or as a child directory of where your class lives.
    Then add the classpath option to the runtime.
    java -classpath .;otherDirectory Log4jExample
    (where "otherDirectory" is the directory that contains log4j.properties)

  • Log4j: WARN No appenders could be found for logger

    Hi,
    I defined a log4j.properties file in my class directory:
    log4j.defaultInitOverride=false
    log4j.rootLogger=DEBUG, R, S
    log4j.appender.R=org.apache.log4j.RollingFileAppender
    log4j.appender.R.File=R.log
    log4j.appender.R.MaxFileSize=100KB
    log4j.appender.R.MaxBackupIndex=0
    log4j.appender.R.layout=org.apache.log4j.PatternLayout
    log4j.appender.R.layout.ConversionPattern=%p %t %c - %m%n
    log4j.appender.S=org.apache.log4j.RollingFileAppender
    log4j.appender.S.File=S.log
    log4j.appender.S.MaxFileSize=100KB
    log4j.appender.S.MaxBackupIndex=0
    log4j.appender.S.layout=org.apache.log4j.PatternLayout
    log4j.appender.S.layout.ConversionPattern=%p %t %c - %m%n
    Then I used the Logger in loginAction.java:
    private Logger logger = Logger.getLogger("R");
    logger.setAdditivity(false);
    logger.info("LoginAction");
    and in OracleDAOFactory.java:
    private Logger logger = Logger.getLogger("S");
    logger.setAdditivity(false);
    logger.info("Connected to DB from customer DAO");
    what I want to achieve is to record the information for loginAction in R.log and record the information for OracleDAOFactory in S.log. But do NOT add loginAction's information into OracleDAOFactory, and vice versa.
    The above codes work properly if I remove the line "logger.setAdditivity(false);". However the result is both log files have the contents. But if I add the line "logger.setAdditivity(false);", I get the following error message:
    log4j:WARN No appenders could be found for logger (S).
    log4j:WARN Please initialize the log4j system properly.
    What is wrong with my above coding?
    Thanks for your help!

    I don't know if this applies to your situation, but I just resolved this problem in my own environment. It turns out, I was attempting to log something in an area of my code before the logger had been configured by calling the configure method of the PropertyConfigurator class and passing in the file name of the properties file as the argument. It's important to set up log4j before attempting to log to the output file, and I called a debug method before it was set up.

  • Log4j Problem: No appenders could be found for logger

    I am migrating an existing app to log4j. I am using log4j 1.2.9. I have added the jar file to the classpath ahead of the weblogic classpath. I am using the log4j.xml file in the WEB-INF\classes directory. I get the following:
    log4j:WARN No appenders could be found for logger (com.kstorm.logging.compdir).
    log4j:WARN Please initialize the log4j system properly.\\
    From reading I get the impression it is a path/classpath problem. I then added the log4j.xml to the path and still got the error.
    Can anyone give me a hand with this?

    Hello,
    It looks like log4j has not found your log4j config file.
    Make sure your config file is present and visible to your application. Is your config file wrapped up in a war file?
    You may also see this error (rarely) if log4j is reading/picking up a differernt config file from the one you are expecting it to find (the one with your appender in it) in this unlikely case try searching for other possible log4j config files.
    Cheers
    Hussein Badakhchani
    www.orbism.com

  • Log4j:ERROR No appenders could be found for category

    Log not og

    In your top level class did you include a configurator?
    This is the minimum requirement:
    import org.apache.log4j.BasicConfigurator;
    BasicConfigurator.configure();Calling a configurator only needs to be done in the initialization of the application (not of each class), prior to the first call to log a message.
    I am responding to this because this thread about log4j got me thinging about a logging API and then to compare log4j to the Logger classes in 1.4. I started to use log4j and recalled that an error I saw was similar to your initial post.

  • Log4j: Logging Errors(No appenders could be found for logger)

    hi,
    i used logging in my java application. i placed log4j.jar and log4j.xml file paths
    given in classpath.
    i am getting 2 warning Messages. Those are as follows
    Log4j:WARN. No appenders could be found for logger (Myclass.class)
    Log4j:WARN. Use Log4j System Properly.
    Here is what i done
    log4j.xml is external configuration file. I specified Appender and layout
    information in this.
    Here is log4j.xml content...
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
    <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
    <appender name="appender" class="org.apache.log4j.FileAppender">
    <param name="File" value="C:\LOG\log.txt"/>
    <param name="Append" value="false"/>
    <layout class="org.apache.log4j.SimpleLayout"/>
    </appender>
    <root>
    <priority value ="INFO"/>
    <appender-ref ref="appender"/>
    </root>
    </log4j:configuration>
    I specified appender and layout in log4j.xml file and placed log4j.xml file in
    classpath.
    How can i solve this problem?. Please help me.

    Ok. I'm no log4j expert, but if you try to get a logger called Myclass.class and have not defined one in your xml file, there's a problem? Look at my xml file below, especially the category tag. Instead of putting "All" for the name, you would put "Myclass.class".
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
    <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
    <appender name="file" class="org.apache.log4j.FileAppender">
    <param name="File" value="log/log.txt"/>
    <param name="Append" value="true"/>
    <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="%d %-5p [%t] %C{2} (%l) - %m\n"/>
    </layout>
    </appender>
    <appender name="console" class="org.apache.log4j.ConsoleAppender">
    <param name="Target" value="System.Out"/>
    <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="%d %-5p %C{1}.%M - %m\n"/>
    </layout>
    </appender>
    <!-- The All category -->
    <category name="All" additivity="false">
    <priority value="debug"/>
    <appender-ref ref="file"/>
    <appender-ref ref="console"/>
    </category>
    <!-- The one and only root category -->
    <root>
    <priority value="warn"/>
    <appender-ref ref="console"/>
    </root>
    </log4j:configuration>

  • Og4j:ERROR No appenders could be found for category

    Whats this mean and how do I recitfy the problem?

    You could read these to get some hints [http://www.google.co.uk/search?q=%22Please+initialize+the+log4j+system+properly.%22]
    The first reply to the first hit on google says "log4j.properties needs to be on the classpath where log4j can find it.".
    You can set the system property if you wish but the classpath approach is the easiest in my opinion.

  • Log4j warning . i am getting this warning

    log4j: WARN No appenders could be found for category (org.apache.struts.util.PropertyMessageResources).
    log4j:WARN Please initialize the log4j system properly.
    i am getting this warning while starting the tomcat.please help me on this.

    This is not a Log4J forum check here: http://logging.apache.org/site/mailing-lists.html

  • Server Startup - log4j:WARN Failure in post-close rollover action

    Hi,
    Could anyone kindly help me to fix this issue??
    We are Migrating Weblogic from 11g 10.3.2 to 10.3.6
    After starting the server and checking the log, it keeps on prints "log4j:WARN Failure in post-close rollover action" in the log for several time.
    It would be very helpful if you give me a solution to solve this issue.
    Thanks
    Janes

    Hi,
    Still i didn't get any solution to resolve this issue.
    It would be very kind if someone help me.
    Thanks in advance.
    Regards,
    Janes

  • What happen no volume could be found

    install osb on t4-2(solaris) and sl150
    2013/09/04.12:23:51 ______________________________________________________________________
    2013/09/04.12:23:51
    2013/09/04.12:23:51         Transcript for job admin/1.1 running on t4-2
    2013/09/04.12:23:51
    2013/09/04.12:23:51 (amh)  qdv__automount_in_mh entered
    2013/09/04.12:23:51 (amh)  qdv__automount_in_mh slt150-lto5 at 2013/09/04.12:23:51, flags 0x100
    2013/09/04.12:23:51 (amh)  mount volume options list contains:
    2013/09/04.12:23:51 (amh)     vtype 3 (app), vid (null), vs_create 0, family (null), retain (null), size 0, mediainfo 2, scratch 0
    2013/09/04.12:23:51 (amh)  don't preserve previous mh automount state
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x1 (dte)
    2013/09/04.12:23:52 (una)  unload_anywhere entered
    2013/09/04.12:23:52 (amh)  beginning pass 1, mediainfo pass 1
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x1 (se)
    2013/09/04.12:23:52 (amh)    1 no vid
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x2 (se)
    2013/09/04.12:23:52 (amh)    2 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x3 (se)
    2013/09/04.12:23:52 (amh)    3 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x4 (se)
    2013/09/04.12:23:52 (amh)    4 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x5 (se)
    2013/09/04.12:23:52 (amh)    5 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x6 (se)
    2013/09/04.12:23:52 (amh)    6 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x7 (se)
    2013/09/04.12:23:52 (amh)    7 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x8 (se)
    2013/09/04.12:23:52 (amh)    8 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x9 (se)
    2013/09/04.12:23:52 (amh)    9 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0xa (se)
    2013/09/04.12:23:52 (amh)   10 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0xb (se)
    2013/09/04.12:23:52 (amh)   11 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0xc (se)
    2013/09/04.12:23:52 (amh)   12 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0xd (se)
    2013/09/04.12:23:52 (amh)   13 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0xe (se)
    2013/09/04.12:23:52 (amh)   14 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0xf (se)
    2013/09/04.12:23:52 (amh)   15 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x10 (se)
    2013/09/04.12:23:52 (amh)   16 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x11 (se)
    2013/09/04.12:23:52 (amh)   17 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x12 (se)
    2013/09/04.12:23:52 (amh)   18 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x13 (se)
    2013/09/04.12:23:52 (amh)   19 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x14 (se)
    2013/09/04.12:23:52 (amh)   20 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x15 (se)
    2013/09/04.12:23:52 (amh)   21 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x16 (se)
    2013/09/04.12:23:52 (amh)   22 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x17 (se)
    2013/09/04.12:23:52 (amh)   23 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x18 (se)
    2013/09/04.12:23:52 (amh)   24 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x19 (se)
    2013/09/04.12:23:52 (amh)   25 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x1a (se)
    2013/09/04.12:23:52 (amh)   26 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x1b (se)
    2013/09/04.12:23:52 (amh)   27 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x1c (se)
    2013/09/04.12:23:52 (amh)   28 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x1d (se)
    2013/09/04.12:23:52 (amh)   29 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x1e (se)
    2013/09/04.12:23:52 (amh)   30 vacant
    2013/09/04.12:23:52 (amh)  end of pass 1 at 2013/09/04.12:23:52
    2013/09/04.12:23:52 (amh)  beginning pass 2, mediainfo pass 1
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x1 (se)
    2013/09/04.12:23:52 (amh)    1 oid 100 doesn't meet mount requirements - unlabeled
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x2 (se)
    2013/09/04.12:23:52 (amh)    2 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x3 (se)
    2013/09/04.12:23:52 (amh)    3 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x4 (se)
    2013/09/04.12:23:52 (amh)    4 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x5 (se)
    2013/09/04.12:23:52 (amh)    5 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x6 (se)
    2013/09/04.12:23:52 (amh)    6 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x7 (se)
    2013/09/04.12:23:52 (amh)    7 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x8 (se)
    2013/09/04.12:23:52 (amh)    8 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x9 (se)
    2013/09/04.12:23:52 (amh)    9 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0xa (se)
    2013/09/04.12:23:52 (amh)   10 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0xb (se)
    2013/09/04.12:23:52 (amh)   11 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0xc (se)
    2013/09/04.12:23:52 (amh)   12 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0xd (se)
    2013/09/04.12:23:52 (amh)   13 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0xe (se)
    2013/09/04.12:23:52 (amh)   14 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0xf (se)
    2013/09/04.12:23:52 (amh)   15 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x10 (se)
    2013/09/04.12:23:52 (amh)   16 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x11 (se)
    2013/09/04.12:23:52 (amh)   17 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x12 (se)
    2013/09/04.12:23:52 (amh)   18 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x13 (se)
    2013/09/04.12:23:52 (amh)   19 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x14 (se)
    2013/09/04.12:23:52 (amh)   20 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x15 (se)
    2013/09/04.12:23:52 (amh)   21 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x16 (se)
    2013/09/04.12:23:52 (amh)   22 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x17 (se)
    2013/09/04.12:23:52 (amh)   23 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x18 (se)
    2013/09/04.12:23:52 (amh)   24 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x19 (se)
    2013/09/04.12:23:52 (amh)   25 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x1a (se)
    2013/09/04.12:23:52 (amh)   26 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x1b (se)
    2013/09/04.12:23:52 (amh)   27 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x1c (se)
    2013/09/04.12:23:52 (amh)   28 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x1d (se)
    2013/09/04.12:23:52 (amh)   29 vacant
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x1e (se)
    2013/09/04.12:23:52 (amh)   30 vacant
    2013/09/04.12:23:52 (amh)  end of pass 2 at 2013/09/04.12:23:52
    2013/09/04.12:23:52 (amh)  beginning pass 3, mediainfo pass 1
    2013/09/04.12:23:52 (gep)  getting reservation for element 0x1 (se)
    2013/09/04.12:23:52 (amh)    1 loading
    2013/09/04.12:25:07 (atv)  qdv__automount_this_vol entered
    2013/09/04.12:25:08 (atv)  state check failed - volume is write protected (OB device mgr)
    2013/09/04.12:25:08 (atv)  qdv__automount_this_vol exited
    2013/09/04.12:25:08 (amh)    1 automount failed - volume is write protected (OB device mgr)
    2013/09/04.12:25:08 (amh)    1 dropping this volume from uselist after unload
    2013/09/04.12:25:08 (una)  unload_anywhere entered
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x2 (se)
    2013/09/04.12:26:08 (amh)    2 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x3 (se)
    2013/09/04.12:26:08 (amh)    3 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x4 (se)
    2013/09/04.12:26:08 (amh)    4 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x5 (se)
    2013/09/04.12:26:08 (amh)    5 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x6 (se)
    2013/09/04.12:26:08 (amh)    6 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x7 (se)
    2013/09/04.12:26:08 (amh)    7 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x8 (se)
    2013/09/04.12:26:08 (amh)    8 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x9 (se)
    2013/09/04.12:26:08 (amh)    9 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0xa (se)
    2013/09/04.12:26:08 (amh)   10 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0xb (se)
    2013/09/04.12:26:08 (amh)   11 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0xc (se)
    2013/09/04.12:26:08 (amh)   12 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0xd (se)
    2013/09/04.12:26:08 (amh)   13 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0xe (se)
    2013/09/04.12:26:08 (amh)   14 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0xf (se)
    2013/09/04.12:26:08 (amh)   15 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x10 (se)
    2013/09/04.12:26:08 (amh)   16 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x11 (se)
    2013/09/04.12:26:08 (amh)   17 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x12 (se)
    2013/09/04.12:26:08 (amh)   18 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x13 (se)
    2013/09/04.12:26:08 (amh)   19 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x14 (se)
    2013/09/04.12:26:08 (amh)   20 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x15 (se)
    2013/09/04.12:26:08 (amh)   21 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x16 (se)
    2013/09/04.12:26:08 (amh)   22 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x17 (se)
    2013/09/04.12:26:08 (amh)   23 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x18 (se)
    2013/09/04.12:26:08 (amh)   24 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x19 (se)
    2013/09/04.12:26:08 (amh)   25 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x1a (se)
    2013/09/04.12:26:08 (amh)   26 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x1b (se)
    2013/09/04.12:26:08 (amh)   27 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x1c (se)
    2013/09/04.12:26:08 (amh)   28 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x1d (se)
    2013/09/04.12:26:08 (amh)   29 vacant
    2013/09/04.12:26:08 (gep)  getting reservation for element 0x1e (se)
    2013/09/04.12:26:08 (amh)   30 vacant
    2013/09/04.12:26:08 (amh)  end of pass 3 at 2013/09/04.12:26:08
    2013/09/04.12:26:08 (amh)  reporting no match in library
    2013/09/04.12:26:08 (amh)  end of automount at 2013/09/04.12:26:08 (0x20009624)
    2013/09/04.12:26:08 (amh)  returning from qdv__automount_in_mh
    2013/09/04.12:26:08 ---
    2013/09/04.12:26:08 No volume could be found in sl150-lib (for drive slt150-lto5) to use for job admin/1.1.
    2013/09/04.12:26:08 A volume is needed to perform a backup.
    obtool lsvol -L sl150-lib -l
    Inventory of library sl150-lib:
        in    1:             barcode L30016, oid 100, mediainfo not hw encryptable
        in    2:             barcode DG 002, oid 101, mediainfo not hw encryptable
        in    3:             vacant
        in    4:             vacant
        in    5:             vacant
        in    6:             vacant
        in    7:             vacant
        in    8:             vacant
        in    9:             vacant
        in    10:            vacant
        in    11:            vacant
        in    12:            vacant
        in    13:            vacant
        in    14:            vacant
        in    15:            vacant
        in    16:            vacant
        in    17:            vacant
        in    18:            vacant
        in    19:            vacant
        in    20:            vacant
        in    21:            vacant
        in    22:            vacant
        in    23:            vacant
        in    24:            vacant
        in    25:            vacant
        in    26:            vacant
        in    27:            vacant
        in    28:            vacant
        in    29:            vacant
        in    30:            vacant
        in    iee1:          vacant
        in    iee2:          vacant
        in    iee3:          vacant
        in    iee4:          vacant
        in    dte:           vacant
    root@t4-2 # obtool lsdev -lvg
    sl150-lib:
        Device type:            library
        Model:                  [none]
        Serial number:          464970G+1229SY0031
        In service:             yes
        Debug mode:             no
        Barcode reader:         default (hardware-selected)
        Barcodes required:      no
        Auto clean:             no
        Clean interval:         (not set)
        Clean using emptiest:   no
        Ejection type:          auto
        Min writable volumes:   0
        UUID:                   98284cc4-f6fc-1030-a847-9d3f4983392d
        Attachment 1:
            Host:               t4-2
            Raw device:         /dev/obl0
        Connection type:        SCSI
        Inquiry data:
            Vendor:             STK
            Product:            SL150
            Firmware:           0182
            Serial number:      464970G+1229SY0031
    *** th0__warning: number of storage elements default (42) differs from current (30)
    *** th0__warning: number of import export elements default (5) differs from current (4)
    *** th0__warning: number of data transfer elements default (2) differs from current (1)
        Element counts / addresses:
            1 mte: 0
           30 se : 1000 - 1029
            4 iee: 10 - 13
            1 dte: 500
        Moves:
           From mte, to: mte 0   se 0   iee 0   dte 0
           From  se, to: mte 0   se 1   iee 1   dte 1
           From iee, to: mte 0   se 1   iee 1   dte 1
           From dte, to: mte 0   se 1   iee 1   dte 1
        Ok_ops: move=1, reserve=1 sense_dev=1, sense_ele=1, unload_any=1, sense_dev_range=1
        Device characteristics: two_d=0, is_120=0, fake_mte=1, fake_iee=0, one_target=0
        State of barcode reader: present
        Display:  none
        Dte  1:   target *   lun * name slt150-lto5 (raw device name /dev/obt0)
          Warning: bus info unknown or drive not installed
    slt150-lto5:
        Device type:            tape
        Model:                  [none]
        Serial number:          HU1215N1TE
        In service:             yes
        Library:                sl150-lib
        DTE:                    1
        Automount:              yes
        Error rate:             8
        Query frequency:        131072KB (134217728 bytes) (from driver)
        Debug mode:             no
        Blocking factor:        (default)
        Max blocking factor:    (default)
        Current tape:           [unknown]
        Use list:               3-30
        Drive usage:            none
        Cleaning required:      no
        UUID:                   9ec1db04-f6fc-1030-a847-9d3f4983392d
        Attachment 1:
            Host:               t4-2
            Raw device:         /dev/obt0
        Connection type:        SCSI
        Inquiry data:
            Vendor:             HP
            Product:            Ultrium 5-SCSI
            Firmware:           Y5BS
            Serial number:      HU1215N1TE
        Tape state:             offline
        Hardware compression:   on
        Last read was:          uncompressed
        Hardware encryption:    available
        Maximum block size:     2097152

    Is your inventory up to date on the library? Do an "obtool inventory -L sl150-lib" and then check your lsvol then try running the job again.
    You should not have tapes write protected in the library. OSB manages if tapes are writeable/expired and so on, so that is not necessary if your setup is proper.
    Thanks
    Rich

  • CK11N: Wrong Error Msg CK 229 (No routing could be found)

    Hi
    When I am running cost estimate for a material which is sub-contracted outside, system is giving error msg CK 229 that "NO Routing Could be found"... Since, this material is sub-contracted, it won't have any
    routing
    In OPR4_CK, CK 229 is defined as a error msg...
    But earlier, we have released std cost estimates for many such sub- contracted materials and system never used to give us this msg
    If I change CK 229 to warning, it will be problem because for Internally manufactured materials routing is MUST and system will just give a warning msg if no routing is found....
    What we are expecting is the behaviour as before.. i.e. for sub- contracted materials, message CK 229 should not be issued as error msg.. But for non-sub contracted materials, it should be error msg
    Regards
    Ajay

    Dear Ajay,
    1.First ensure that sub-contracted material has got a valid sub-contracting info record maintained
    through ME11 against a vendor.The sub-contracting charges will be maintyaine here.
    2.Ensure the source list is maintained for material and vendor combination through ME01.
    3.Ensure the costing variant used in CK11N has the proper priorities maintained for it,say for Eg PPC1
    is used,check in OKKN for this costing variant it has proper priority say first may be for planned
    price,second may be based on value in purchase info record.
    4.Generally for a sub-contracted material the system sometimes shows error message as no souce list
    exists,but routing will be created only for an In-house manufactured products with the procurement type
    E.For a sub-conracted material check the procurement type is E and special procurement value is 30 in
    MRP2 view of the material master.
    Check and revert back.
    Regards
    Mangalraj.S

  • No volume could be found

    Hello to everybody!!!
    I have a IBM TS3100 tape library with the OSB 10.2.0.2.
    This library has 23 slots for tape midia. So I putty five midias lto 3 ( slot 1 to 5).
    So when I trie to start a backup schedule the OSB web interface show the following messange : " No volume could be found in tc-lib (for drive tc-tape) to use for job 23."
    I don´t know more what to do...
    Please help me!!!

    Hello!!!
    First, thanks the fast answer!
    So, let´s go: - The SO is LInux Redhat ES 5.
    FIRST -----------------------------------------------------------
    - obtool catxcr -fl0 31.1
    2008/07/03.08:39:53 ____________________________________________________________ __________
    2008/07/03.08:39:53
    2008/07/03.08:39:53 Transcript for job 31.1 running on netuno
    2008/07/03.08:39:53
    2008/07/03.08:39:53 (amh) qdv__automount_in_mh tc-tape at 2008/07/03.08:39:53, flags 0x100
    2008/07/03.08:39:53 (amh) mount volume options list contains:
    2008/07/03.08:39:53 (amh) vtype 3, vid (null), vs_create 0, family semanal, retain (null), size 0, scratch 0
    2008/07/03.08:39:53 (amh) don't preserve previous mh automount state
    2008/07/03.08:39:54 (amh) beginning pass 1
    2008/07/03.08:39:54 (amh) 1 vacant
    2008/07/03.08:39:54 (amh) 2 vacant
    2008/07/03.08:39:54 (amh) 3 vacant
    2008/07/03.08:39:54 (amh) 4 vacant
    2008/07/03.08:39:54 (amh) 5 vacant
    2008/07/03.08:39:54 (amh) 6 vacant
    2008/07/03.08:39:54 (amh) 7 vacant
    2008/07/03.08:39:54 (amh) 8 vacant
    2008/07/03.08:39:54 (amh) 9 vacant
    2008/07/03.08:39:54 (amh) 10 vacant
    2008/07/03.08:39:54 (amh) 11 vacant
    2008/07/03.08:39:54 (amh) 12 vacant
    2008/07/03.08:39:54 (amh) 13 vacant
    2008/07/03.08:39:54 (amh) 14 vacant
    2008/07/03.08:39:54 (amh) 15 vacant
    2008/07/03.08:39:54 (amh) 16 vacant
    2008/07/03.08:39:54 (amh) 17 vacant
    2008/07/03.08:39:54 (amh) 18 vacant
    2008/07/03.08:39:54 (amh) 19 vacant
    2008/07/03.08:39:54 (amh) 20 vacant
    2008/07/03.08:39:54 (amh) 21 vacant
    2008/07/03.08:39:54 (amh) 22 vacant
    2008/07/03.08:39:54 (amh) 23 vacant
    2008/07/03.08:39:54 (amh) end of pass 1 at 2008/07/03.08:39:54
    2008/07/03.08:39:54 (amh) beginning pass 2
    2008/07/03.08:39:54 (amh) 1 vacant
    2008/07/03.08:39:54 (amh) 2 vacant
    2008/07/03.08:39:54 (amh) 3 vacant
    2008/07/03.08:39:54 (amh) 4 vacant
    2008/07/03.08:39:54 (amh) 5 vacant
    2008/07/03.08:39:54 (amh) 6 vacant
    2008/07/03.08:39:54 (amh) 7 vacant
    2008/07/03.08:39:54 (amh) 8 vacant
    2008/07/03.08:39:54 (amh) 9 vacant
    2008/07/03.08:39:54 (amh) 10 vacant
    2008/07/03.08:39:54 (amh) 11 vacant
    2008/07/03.08:39:54 (amh) 12 vacant
    2008/07/03.08:39:54 (amh) 13 vacant
    2008/07/03.08:39:54 (amh) 14 vacant
    2008/07/03.08:39:54 (amh) 15 vacant
    2008/07/03.08:39:54 (amh) 16 vacant
    2008/07/03.08:39:54 (amh) 17 vacant
    2008/07/03.08:39:54 (amh) 18 vacant
    2008/07/03.08:39:54 (amh) 19 vacant
    2008/07/03.08:39:54 (amh) 20 vacant
    2008/07/03.08:39:54 (amh) 21 vacant
    2008/07/03.08:39:54 (amh) 22 vacant
    2008/07/03.08:39:54 (amh) 23 vacant
    2008/07/03.08:39:54 (amh) end of pass 2 at 2008/07/03.08:39:54
    2008/07/03.08:39:54 (amh) beginning pass 3
    2008/07/03.08:39:54 (amh) 1 vacant
    2008/07/03.08:39:54 (amh) 2 vacant
    2008/07/03.08:39:54 (amh) 3 vacant
    2008/07/03.08:39:54 (amh) 4 vacant
    2008/07/03.08:39:54 (amh) 5 vacant
    2008/07/03.08:39:54 (amh) 6 vacant
    2008/07/03.08:39:54 (amh) 7 vacant
    2008/07/03.08:39:54 (amh) 8 vacant
    2008/07/03.08:39:54 (amh) 9 vacant
    2008/07/03.08:39:54 (amh) 10 vacant
    2008/07/03.08:39:54 (amh) 11 vacant
    2008/07/03.08:39:54 (amh) 12 vacant
    2008/07/03.08:39:54 (amh) 13 vacant
    2008/07/03.08:39:54 (amh) 14 vacant
    2008/07/03.08:39:54 (amh) 15 vacant
    2008/07/03.08:39:54 (amh) 16 vacant
    2008/07/03.08:39:54 (amh) 17 vacant
    2008/07/03.08:39:54 (amh) 18 vacant
    2008/07/03.08:39:54 (amh) 19 vacant
    2008/07/03.08:39:54 (amh) 20 vacant
    2008/07/03.08:39:54 (amh) 21 vacant
    2008/07/03.08:39:54 (amh) 22 vacant
    2008/07/03.08:39:54 (amh) 23 vacant
    2008/07/03.08:39:54 (amh) end of pass 3 at 2008/07/03.08:39:54
    2008/07/03.08:39:54 (amh) beginning pass 4
    2008/07/03.08:39:54 (amh) 1 vacant
    2008/07/03.08:39:54 (amh) 2 vacant
    2008/07/03.08:39:54 (amh) 3 vacant
    2008/07/03.08:39:54 (amh) 4 vacant
    2008/07/03.08:39:54 (amh) 5 vacant
    2008/07/03.08:39:54 (amh) 6 vacant
    2008/07/03.08:39:54 (amh) 7 vacant
    2008/07/03.08:39:54 (amh) 8 vacant
    2008/07/03.08:39:54 (amh) 9 vacant
    2008/07/03.08:39:54 (amh) 10 vacant
    2008/07/03.08:39:54 (amh) 11 vacant
    2008/07/03.08:39:54 (amh) 12 vacant
    2008/07/03.08:39:54 (amh) 13 vacant
    2008/07/03.08:39:54 (amh) 14 vacant
    2008/07/03.08:39:54 (amh) 15 vacant
    2008/07/03.08:39:54 (amh) 16 vacant
    2008/07/03.08:39:54 (amh) 17 vacant
    2008/07/03.08:39:54 (amh) 18 vacant
    2008/07/03.08:39:54 (amh) 19 vacant
    2008/07/03.08:39:54 (amh) 20 vacant
    2008/07/03.08:39:54 (amh) 21 vacant
    2008/07/03.08:39:54 (amh) 22 vacant
    2008/07/03.08:39:54 (amh) 23 vacant
    2008/07/03.08:39:54 (amh) end of pass 4 at 2008/07/03.08:39:54
    2008/07/03.08:39:54 (amh) reporting no match in library
    2008/07/03.08:39:54 (amh) end of automount at 2008/07/03.08:39:54 (0x20009624)
    2008/07/03.08:39:54 ---
    2008/07/03.08:39:54 No volume could be found in tc-lib (for drive tc-tape) to us e for job 31.1.
    2008/07/03.08:39:54 A volume usable for media family semanal is needed to perfor m a backup.
    obtool lsdev -lbvg
    tc-lib:
    Device type: library
    Model: [none]
    Serial number: [none]
    In service: yes
    Debug mode: no
    Barcode reader: default (hardware-selected)
    Barcodes required: no
    Auto clean: yes
    Clean interval: (not set)
    Clean using emptiest: no
    Unload required: yes
    Ejection type: auto
    Min writable volumes: 0
    UUID: ef7546e4-25ce-102b-af39-00145ef8bb5a
    Attachment 1:
    Host: netuno
    Raw device: /dev/obl1
    Connection type: SCSI
    Inquiry data:
    Vendor: IBM
    Product: 3573-TL
    Firmware: 4.40
    Serial number: 00L2U78D8948_LL0
    Element counts / addresses:
    1 mte: 1
    23 se : 4096 - 4118
    1 iee: 16
    1 dte: 256
    Moves:
    From mte, to: mte 0 se 1 iee 1 dte 1
    From se, to: mte 0 se 1 iee 1 dte 1
    From iee, to: mte 0 se 1 iee 0 dte 1
    From dte, to: mte 0 se 1 iee 1 dte 0
    Ok_ops: move=1, reserve=1 sense_dev=1, sense_ele=1, unload_any=1, sense_dev_ range=1
    Device characteristics: two_d=0, is_120=0, fake_mte=1, fake_iee=0, one_targe t=0
    State of barcode reader: present
    Display: none
    Dte 1: target 4 lun * name tc-tape (raw device name /dev/obt0)
    Warning: bus info unknown or drive not installed
    tc-tape:
    Device type: tape
    Model: [none]
    Serial number: [none]
    In service: yes
    Library: tc-lib
    DTE: 1
    Automount: yes
    Error rate: 8
    Query frequency: 131072KB (134217728 bytes) (from driver)
    Debug mode: no
    Blocking factor: (default)
    Max blocking factor: (default)
    Current tape: [unknown]
    Use list: all
    Drive usage: 1 hour, 32 minutes
    Cleaning required: no
    UUID: 20af8fb2-25cf-102b-af39-00145ef8bb5a
    Attachment 1:
    Host: netuno
    Raw device: /dev/obt0
    Connection type: SCSI
    Inquiry data:
    Vendor: IBM
    Product: ULT3580-TD3
    Firmware: 73P5
    Serial number: 1210333914
    Tape state: offline
    Hardware compression: on
    Last read was: uncompressed
    Maximum block size: 524288
    obtool lsvol -L tc-lib
    Inventory of library tc-lib:
    in 1: getting state: mechanical positioning error
    in 2: getting state: mechanical positioning error
    in 3: getting state: mechanical positioning error
    in 4: getting state: mechanical positioning error
    in 5: getting state: mechanical positioning error
    in 6: getting state: mechanical positioning error
    in 23: getting state: cleaning cartridge installed
    Thanks the reply!!!!!

  • "No certificate templates could be found..." error using web enrollment on Win2k8 R2 Enterprise SubCA

    Hi Folks,
    I have installed an online issuing CA running on Win2k8 R2 Enterprise, and installed the web enrollment role service on it.
    I have duplicated two computer certificate templates (computer & web server) on our DC's, modified them as Win2k3 templates, made some changes and saved them, then published them on the CA by selecting New -> Certificate Tempate
    to issue. The templates have read and enroll permissions set for domain admins and domain computers (my account is a domain admin). I can successfully enroll for them using the certificates MMC.
    When connecting to https://myca.mydomain.com/certsrv however, the page loads. I click on 'Request a certificate', then 'Create and submit a request to this CA'. I see a warning indicating that this website
    is attempting to perform a digital certificate operation on my behalf, so I click yes. Immediately after doing so, I get the error:
    "No certificate templates could be found. You do not have permission to request a certificate from this CA, or an error occurred while accessing the Active Directory."
    I have spent about 2 hours searching on this error and found at least 50 people complaining of this, but no real solutions. Here is what I have tried with no success:
    1) http://support.microsoft.com/kb/811418. Everyone references this solution, but it hasn't worked for anyone. The string values and cases are the same for me.
    2) Enabled SSL on the certsrv website.
    3) Set the authentication on the certsrv site to enable integrated authentication and disabled anonymous authentication.
    4) Created a separate application pool running under the Network Service then set the Certsrv application to run under it.
    I should note that this exact same condition occurred in my lab install, but rather than waste time trying to fix it in the lab, I just went ahead with the production install, only to experience the same problem, so apparently web enrollment is just
    broken out of the box on 2k8 R2 Enterprise.
    Does anyone have any idea how to get this working as advertised? Thanks for any help,
    Ian

    It appears to be an issue in Server 2012R2 as well.
    In our case, is a new two tier PKI setting is implemented on two Windows Servers 2012R2. After the installations and configurations are completed, I was unable to load certificate templates when requesting a certificate on the Web interface.
    The issue was that the pass-through authentication did not work in IIS with the standard Application Pool Identity.
    The solution was as followed:
    1. Changed the NTFS permissions on the certsrv virtual directory in IIS (C:\Windows\System32\CertSrv\en-US), by adding a (domain) user account with read and list permissions.
    2. In IIS CertSrv > Basic Settings > Connect as - select "Specific user:" and set the newly created user with the username and password.
    3. Tested in Basic Settings with - "Test Settings" button and both Authentication and Authorization were successful.
    4. Request certificate from Web interface and the templates are available.
    Note: You must have a certificate in the Templates store which you have duplicated from the Templates available.

  • Project Server 2010 - Unable to open project, no valid Project Detail Page could be found for the project error

    I have a workflow being deployed for the first time on a farm. When I create a project with an EPT connected to the workflow it runs and can enter the required field in a PDP.  Then I Submit the workflow to go to the next stage and I get the "Unable
    to open project, no valid Project Detail Page could be found for the project" error.  After that the project is stuck on the same error.  All of the 18 stages have PDP and Schedules assigned to them.
    Any ideas on why the workflow cannot see the PDPs?  Is there a farm permissions that I am missing?  Thanks!

    Hi David,
    It starts to be a bit technical for me, but here is what I found on the web (seems to be an authentication issue with Sharepoint 2010):
    http://social.technet.microsoft.com/Forums/en-US/120ab535-63d2-4205-a51f-1987e9c0cf79/sharepoint-fba-the-content-type-texthtml-charsetutf8-of-the-response-message-does-not-match-the
    http://social.msdn.microsoft.com/Forums/silverlight/en-US/5cc70ff6-50d9-4cd3-b092-12007f4e495b/response-message-contenttypebindingtype-mismatch
    http://stackoverflow.com/questions/5263150/the-content-type-text-html-charset-utf-8-of-the-response-message-does-not-match
    Hope it will help you going forward in resolving your issue.
    Guillaume Rouyre - MBA, MCP, MCTS

Maybe you are looking for

  • Bb chat and email do not connect to hotspots- wifi

    at the hotel I am in the US there is free wifi--my provider is from another country - Using the hotspot of the hotel my bb connects only to internet and I am not receiving emails and I am not able to use the bb chat.. what can I do?  this has never h

  • BUG: External Subversion Repository, Can only connect to one URL unless....

    Jdeveloper 11.1.1.6 and Jdevevloper 11.2.2 versions. To See video about this "bug" please see http://youtu.be/Dp0laSTnSo4 (I made the video after writing this). Use-case: I work on four or five different applications and need distinct repositories fo

  • Autenticazione pdp

    Non mi naviga più

  • Signal issue on Revolution

    How come when I go into settings on Revolution to about phone and check signal it says no service? but I am getting full signal and showing it's running on 4G when using??

  • Lock Management

    Hi Experts, I am getting error " Unable to lock table......" when I execute any transaction in r/3. This is in IDES 4.6b.  Need valuable advice how this can be resolved. Thanks/Hari