NPE in stopWeblogic.cmd with Server Logging Bridge

I'm migrating an EAR that depends on JDK logging to WLS 10.3.3. To activate the JDK logging in my domain logs I followed [url http://download.oracle.com/docs/cd/E14571_01/web.1111/e13739/logging_services.htm#WLLOG199]the instructions given in the WLS manual. The logging part works as expected now. However, my stopWeblogic.cmd fails with the following NPE:
Stopping Weblogic Server...
Initializing WebLogic Scripting Tool (WLST) ...
Welcome to WebLogic Server Administration Scripting Shell
Type help() for help on available commands
Connecting to t3://DT04748:7001 with userid weblogic ...
WLST detected that the RuntimeMBeanServer is not enabled. This
might happen if the RuntimeMBeanServer is disabled via the JMXMBean.
Please ensure that this MBeanServer is enabled. Online WLST cannot
function without this MBeanServer.
This Exception occurred at Thu Jan 06 13:20:24 CET 2011.
java.lang.NullPointerException
        at weblogic.logging.ServerLoggingHandler.publish(ServerLoggingHandler.java:24)
        at java.util.logging.Logger.log(Logger.java:481)
        at java.util.logging.Logger.doLog(Logger.java:503)
        at java.util.logging.Logger.logp(Logger.java:619)
        at com.sun.jmx.remote.util.ClassLogger.finer(ClassLogger.java:130)
        at com.sun.jmx.remote.util.ClassLogger.trace(ClassLogger.java:88)
        at javax.management.remote.rmi.RMIConnector.connect(RMIConnector.java:333)
        at weblogic.management.remote.common.WLSRMIConnector.doConnect(WLSRMIConnector.java:150)
        at weblogic.management.remote.common.WLSRMIConnector.access$100(WLSRMIConnector.java:27)
        at weblogic.management.remote.common.WLSRMIConnector$2.run(WLSRMIConnector.java:138)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
        at weblogic.security.Security.runAs(Security.java:61)
        at weblogic.management.remote.common.WLSRMIConnector.connect(WLSRMIConnector.java:136)
        at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:248)
        at weblogic.management.scripting.WLSTHelper.lookupMBeanServerConnection(WLSTHelper.java:678)
        at weblogic.management.scripting.WLSTHelper.initRuntimeServerConnection(WLSTHelper.java:398)
        at weblogic.management.scripting.WLSTHelper.initConnections(WLSTHelper.java:315)
        at weblogic.management.scripting.WLSTHelper.connect(WLSTHelper.java:203)
        at weblogic.management.scripting.WLScriptContext.connect(WLScriptContext.java:61)
        at weblogic.management.scripting.utils.WLSTUtil.initializeOnlineWLST(WLSTUtil.java:147)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.python.core.PyReflectedFunction.__call__(Unknown Source)
        at org.python.core.PyMethod.__call__(Unknown Source)
        at org.python.core.PyObject.__call__(Unknown Source)
        at org.python.core.PyObject.invoke(Unknown Source)
        at org.python.pycode._pyx4.connect$1(<iostream>:16)
        at org.python.pycode._pyx4.call_function(<iostream>)
        at org.python.core.PyTableCode.call(Unknown Source)
        at org.python.core.PyTableCode.call(Unknown Source)
        at org.python.core.PyFunction.__call__(Unknown Source)
        at org.python.pycode._pyx15.f$0(D:\Oracle\Middleware\user_projects\domains\FLUX\shutdown.py:6)
        at org.python.pycode._pyx15.call_function(D:\Oracle\Middleware\user_projects\domains\FLUX\shutdown.py)
        at org.python.core.PyTableCode.call(Unknown Source)
        at org.python.core.PyCode.call(Unknown Source)
        at org.python.core.Py.runCode(Unknown Source)
        at org.python.util.PythonInterpreter.execfile(Unknown Source)
        at weblogic.management.scripting.WLST.main(WLST.java:131)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at weblogic.WLST.main(WLST.java:29)
Problem invoking WLST - Traceback (innermost last):
  File "D:\Oracle\Middleware\user_projects\domains\FLUX\shutdown.py", line 6, in ?
  File "<iostream>", line 22, in connect
  File "<iostream>", line 646, in raiseWLSTException
WLSTException: Error occured while performing connect : "Cannot connect to WLST."
Use dumpStack() to view the full stacktrace
Done
Stopping Derby Server...
Steps to reproduce
1. Create a logging.properties file with the following contents:
# Specify the handlers to create in the root logger
handlers = weblogic.logging.ServerLoggingHandler
# Register handlers for my.app and their child loggers
my.app.handlers = java.util.logging.ConsoleHandler, weblogic.logging.ServerLoggingHandler
# Do not send the my.app log messages to the root handler
my.app.useParentHandlers = false
# Set the default logging level for the root logger
.level = ALL
# Set the default logging level for new ConsoleHandler instances
java.util.logging.ConsoleHandler.level = INFO
# Set the default logging level for new FileHandler instances
weblogic.logging.ServerLoggingHandler.level = ALL2. Add the following directive in the setDomainEnv.cmd:
set JAVA_OPTIONS=%JAVA_OPTIONS% -Djava.util.logging.config.file=path/to/logging.properties3. Start-stop the domain and the above NPE occurs while WLS keeps running. Remove the directive from step 2 and the start-stop sequence goes back to normal.
Environment
Oracle JDK:
java version "1.6.0_23"
Java(TM) SE Runtime Environment (build 1.6.0_23-b05)
Java HotSpot(TM) Client VM (build 19.0-b09, mixed mode, sharing)OS: Windows XP Pro SP3
Your help would be very much appreciated! Please let me know if you need any additional info.
Thanks,
Bas

Hi Sandeep,
Thanks a lot for your quick reply! You were right, the logging directive was used both client and server side. I moved
-Djava.util.logging.config.file=path/to/logging.propertiesfrom setDomainEnv.cmd to startWeblogic.cmd and WLS can be stopped correctly now.
Regards,
Bas

Similar Messages

  • Very weird issue with server logging when using log4j.properties file

    I'm using log4j logging. In log4j.properties the root logger is set up to use the ServerLoggingAppender class so that all our application logs go to the main server logfile. In addition, there are several appenders defined for specific components, with output going to specific per-component log files. Everything is going fine until I launch the server console. At this point all of those per-component log files get wiped out (zero length) and some non-ASCII lines are written to at least one of these files, after which the logs appear to be fine. The main server log file does not appear to be affected (because the root logger is set to "warn" level, while component-specific loggers are set to trace, the contents in these files is different; however I tried disabling all the other appenders and turning the root logger up to trace, and that still did not re-create the problem in the main server log file.
    And here's the really weird part -- if I use the same configuration, but in a log4j.xml file, the problem does not happen.

    Figured it out.
    We were passing in the configuration for log4j as -Dlog4j.configuration=file:/<properties file> and this was added to the command line for both the managed and admin servers. Problem is that the console app starts its own instance of log4j, and when it reads the configuration for the appenders it initializes or rolls over the files. At some point we have two JVMs accessing the same files, so some corruption is bound to happen.
    I'm not clear why the .xml file made a difference, but earlier we had been passing the log4j configuration as a jar file placed in the domain/lib folder, so perhaps the designer reverted to that (placed the log4j.xml file in a jar in lib, and not simply changed the -Dlog4j.configuration=file:/ option.

  • I am trying to set up my new iphone 4s, but when i try to log into itunes it keeps coming up with server error. What do i do?

    I am trying to set up my new iphone 4s, but when i try to log into itunes it keeps coming up with server error. What do i do?
    <Edited by host>

    Some free advice.  If your son is 8 years old, put him on your account, and set parental controls so that he cannot accidentally run up giant charges within the games.
    If your son is 25 years old, get him his own AppleID and make him responsible for his own bills.
    In between ... use your judgement. 

  • Coldfusion 8 service will not start.  Server log is ending with "Starting license..." (Emergency)

    Our server has gone down and the Coldfusion 8 service will not start.  There is no information in any of the logs for anything today since its gone down.  Ive checked the root logs directory as well as the runtime logs directory.
    The server.log is the only file being updated and it shows "Starting logging..." and then "Starting license..." and hangs.  The service does not start and the log gets nothing more after this point.  Memory continues to go up slowly, we've increased the start timeout tremendously with no effect.  There is little to no CPU usage.
    Our server is licensed and has never had this problem before.  It is the standard version.
    Our server is completely down and we are losing clients.  From what we can tell a windows update occurred, which we have since removed in case it was the issue, and when the server restarted CF did not come back.  We have been working on this for hours with no results.
    Please help and let me know anything you may need which will help diagnose our issue.
    Thanks

    So that others who see this know the solution.
    I started Coldfusion from the command line: c:\Coldfusion8\runtime\bin\jrun -start coldfusion.  This brought up all the commands as it worked through them.  From that we found that CF was looking for license.properties in the C:\Coldfusion8\runtime\lib folder.  We found a copy in the C:\Coldfusion8\lib folder.  For now we've left it running under my account and then after hours are going to try and see if the service will run now that we've copied that properties file to the other direcory.
    Probably simple to everyone on here but was new and odd to us.  Wanted to put what we found out here in case it happens to anyone else.

  • Server log showing problems with Mail Server

    Ok, so I followed the instructions in that PDF about how to make virtual mail users in 10.5.1 since they are broken. So I did it in the WGM and the Postfix stuff as the document said. Now I get all these errors in the server log and I have no idea how to fix the problem or if what I did was even done right. Here is the error log below:
    Jan 30 23:33:26 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:34:03 xpmedia1 postfix/smtpd[53603]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:34:03 xpmedia1 postfix/smtpd[53603]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:34:04 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53603 exit status 1
    Jan 30 23:34:04 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:34:26 xpmedia1 postfix/cleanup[53611]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:34:26 xpmedia1 postfix/cleanup[53611]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:34:27 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53611 exit status 1
    Jan 30 23:34:27 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:35:04 xpmedia1 postfix/smtpd[53615]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:35:04 xpmedia1 postfix/smtpd[53615]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:35:05 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53615 exit status 1
    Jan 30 23:35:05 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:35:16 xpmedia1 sudo[53616]: root : TTY=unknown ; PWD=/ ; USER=_cyrus ; COMMAND=/usr/bin/cyrus/bin/cyrus-quota -r
    Jan 30 23:35:27 xpmedia1 postfix/cleanup[53625]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:35:27 xpmedia1 postfix/cleanup[53625]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:35:28 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53625 exit status 1
    Jan 30 23:35:28 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:36:05 xpmedia1 postfix/smtpd[53633]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:36:05 xpmedia1 postfix/smtpd[53633]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:36:06 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53633 exit status 1
    Jan 30 23:36:06 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:36:28 xpmedia1 postfix/cleanup[53646]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:36:28 xpmedia1 postfix/cleanup[53646]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:36:29 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53646 exit status 1
    Jan 30 23:36:29 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:37:06 xpmedia1 postfix/smtpd[53650]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:37:06 xpmedia1 postfix/smtpd[53650]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:37:07 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53650 exit status 1
    Jan 30 23:37:07 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:37:29 xpmedia1 postfix/cleanup[53662]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:37:29 xpmedia1 postfix/cleanup[53662]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:37:30 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53662 exit status 1
    Jan 30 23:37:30 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:38:07 xpmedia1 postfix/smtpd[53666]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:38:07 xpmedia1 postfix/smtpd[53666]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:38:08 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53666 exit status 1
    Jan 30 23:38:08 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:38:30 xpmedia1 postfix/cleanup[53678]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:38:30 xpmedia1 postfix/cleanup[53678]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:38:31 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53678 exit status 1
    Jan 30 23:38:31 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:39:08 xpmedia1 postfix/smtpd[53682]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:39:08 xpmedia1 postfix/smtpd[53682]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:39:09 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53682 exit status 1
    Jan 30 23:39:09 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:39:31 xpmedia1 imap[53683]: TLS server engine: cannot load CA data
    Jan 30 23:39:31 xpmedia1 imap[53683]: TLS server engine: No CA file specified. Client side certs may not work
    Jan 30 23:39:31 xpmedia1 imap[53683]: STARTTLS negotiation failed: host-12-152-82-88.orbitelcom.com [12.152.82.88]
    Jan 30 23:39:31 xpmedia1 postfix/cleanup[53695]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:39:31 xpmedia1 postfix/cleanup[53695]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:39:32 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53695 exit status 1
    Jan 30 23:39:32 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:39:46 xpmedia1 imap[53683]: starttls: TLSv1 with cipher AES128-SHA (128/128 bits new) no authentication
    Jan 30 23:39:46 xpmedia1 imap[53683]: login: host-12-152-82-88.orbitelcom.com [12.152.82.88] postmaster CRAM-MD5+TLS User logged in
    Jan 30 23:40:09 xpmedia1 postfix/smtpd[53699]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:40:09 xpmedia1 postfix/smtpd[53699]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:40:10 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53699 exit status 1
    Jan 30 23:40:10 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:40:32 xpmedia1 postfix/cleanup[53700]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:40:32 xpmedia1 postfix/cleanup[53700]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:40:33 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53700 exit status 1
    Jan 30 23:40:33 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:41:10 xpmedia1 postfix/smtpd[53719]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:41:10 xpmedia1 postfix/smtpd[53719]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:41:11 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53719 exit status 1
    Jan 30 23:41:11 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:41:33 xpmedia1 postfix/cleanup[53720]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:41:33 xpmedia1 postfix/cleanup[53720]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:41:34 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53720 exit status 1
    Jan 30 23:41:34 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:42:11 xpmedia1 postfix/smtpd[53735]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:42:11 xpmedia1 postfix/smtpd[53735]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:42:12 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53735 exit status 1
    Jan 30 23:42:12 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:42:34 xpmedia1 postfix/cleanup[53736]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:42:34 xpmedia1 postfix/cleanup[53736]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:42:35 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53736 exit status 1
    Jan 30 23:42:35 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling
    Jan 30 23:43:12 xpmedia1 postfix/smtpd[53752]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:43:12 xpmedia1 postfix/smtpd[53752]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:43:13 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/smtpd pid 53752 exit status 1
    Jan 30 23:43:13 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
    Jan 30 23:43:35 xpmedia1 postfix/cleanup[53753]: warning: database /etc/postfix/virtual.db is older than source file /etc/postfix/virtual
    Jan 30 23:43:35 xpmedia1 postfix/cleanup[53753]: fatal: open database /var/mailman/data/virtual-mailman.db: No such file or directory
    Jan 30 23:43:36 xpmedia1 postfix/master[49308]: warning: process /usr/libexec/postfix/cleanup pid 53753 exit status 1
    Jan 30 23:43:36 xpmedia1 postfix/master[49308]: warning: /usr/libexec/postfix/cleanup: bad command startup -- throttling

    I did what you said and I don't see all those weird messages anymore, but we switched over our MX records today to our mail server in hopes that it would all work and now no one can get their mail. I can log into the mail server no problem via IMAP, but to send messages is not working. And those using POP don't seem to work at all. Even to send messages the Server is rejecting saying that my messages isn't addresed right. Which it is. I can't even send something to myself. I'm trying not to be frustrated with this thing. I'm just not sure what to do since we have a whole bunch of people needing mail and it doesn't seem to be working and I'm not a mail server expert. Any help would be appreciated.
    Here is what I with postconf -n:
    command_directory = /usr/sbin
    config_directory = /etc/postfix
    content_filter = smtp-amavis:[127.0.0.1]:10024
    daemon_directory = /usr/libexec/postfix
    debugpeerlevel = 2
    enableserveroptions = yes
    html_directory = no
    inet_interfaces = all
    localrecipientmaps =
    luser_relay = postmaster
    mail_owner = _postfix
    mailboxsizelimit = 0
    mailbox_transport = cyrus
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    mapsrbldomains =
    messagesizelimit = 10485760
    mydestination = $myhostname,localhost.$mydomain,localhost
    mydomain = xpmedia.com
    mydomain_fallback = localhost
    myhostname = mail.xpmedia.com
    mynetworks = 98.173.129.235,98.173.129.238
    newaliases_path = /usr/bin/newaliases
    queue_directory = /private/var/spool/postfix
    readme_directory = /usr/share/doc/postfix
    relayhost =
    sample_directory = /usr/share/doc/postfix/examples
    sendmail_path = /usr/sbin/sendmail
    setgid_group = _postdrop
    smtpdclientrestrictions = permit_mynetworks zen.spamhaus.org permit
    smtpdpw_server_securityoptions = login,cram-md5
    smtpdrecipientrestrictions = permitsasl_authenticated,permit_mynetworks,reject_unauthdestination,permit
    smtpdsasl_authenable = yes
    smtpduse_pwserver = yes
    unknownlocal_recipient_rejectcode = 550
    virtualaliasdomains = hash:/etc/postfix/virtual_domains
    virtualaliasmaps = hash:/etc/postfix/virtual
    virtualmailboxdomains = hash:/etc/postfix/virtualdomainsxp
    virtual_transport = lmtp:unix:/var/imap/socket/lmtp
    Here is what I got in the system log:
    11:29:53 xpmedia1 loginwindow[57389]: received ATSServer died message. (old server pid = 58904, new pid = 58934, session ID = 256)
    Jan 31 11:29:53 xpmedia1 /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer[5 7421]: received ATSServer died message. (old server pid = 58904, new pid = 58934, session ID = 256)
    Jan 31 11:29:53 xpmedia1 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder[57422]: received ATSServer died message. (old server pid = 58904, new pid = 58934, session ID = 256)
    Jan 31 11:29:54 xpmedia1 com.apple.launchd[1] (0x10f510.login[58959]): Could not setup Mach task special port 9: (os/kern) no access
    Jan 31 11:29:54 xpmedia1 login[58959]: USER_PROCESS: 58959 ttys000
    Jan 31 11:30:03 xpmedia1 login[58959]: DEAD_PROCESS: 58959 ttys000
    Jan 31 11:30:22 xpmedia1 master[58971]: process started
    Jan 31 11:30:22 xpmedia1 org.clamav.clamd[58975]: clamd daemon 0.91.2 (OS: darwin9.0, ARCH: i386, CPU: i386)
    Jan 31 11:30:22 xpmedia1 org.clamav.clamd[58975]: Log file size limited to 1048576 bytes.
    Jan 31 11:30:22 xpmedia1 org.clamav.clamd[58975]: Reading databases from /var/clamav
    Jan 31 11:30:22 xpmedia1 org.clamav.clamd[58975]: Not loading PUA signatures.
    Jan 31 11:30:23 xpmedia1 postfix/postfix-script[58983]: fatal: the Postfix mail system is not running
    Jan 31 11:30:23 xpmedia1 ctl_cyrusdb[58973]: verifying cyrus databases
    Jan 31 11:30:23 xpmedia1 ctl_cyrusdb[58973]: skiplist: recovered /Volumes/Kingdom/Mail_Database/imap/mailboxes.db (29 records, 5640 bytes) in 0 seconds
    Jan 31 11:30:23 xpmedia1 ctl_cyrusdb[58973]: skiplist: recovered /Volumes/Kingdom/Mail_Database/imap/annotations.db (0 records, 144 bytes) in 0 seconds
    Jan 31 11:30:24 xpmedia1 org.clamav.clamd[58975]: Loaded 198723 signatures.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Unix socket file /var/amavis/clamd
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Setting connection queue length to 15
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Archive: Archived file size limit set to 10485760 bytes.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Archive: Recursion level limit set to 8.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Archive: Files limit set to 1000.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Archive: Compression ratio limit set to 250.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Archive support enabled.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Algorithmic detection enabled.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Portable Executable support enabled.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: ELF support enabled.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Mail files support enabled.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Mail: Recursion level limit set to 64.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: OLE2 support enabled.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: PDF support disabled.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: HTML support enabled.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Self checking every 1800 seconds.
    Jan 31 11:30:25 xpmedia1 org.clamav.clamd[58975]: Set stacksize to 1048576
    Jan 31 11:30:25 xpmedia1 com.apple.launchd[1] (edu.cmu.andrew.cyrus.master[58971]): Stray process with PGID equal to this dead job: PID 58973 PPID 1 ctl_cyrusdb
    Jan 31 11:30:25 xpmedia1 com.apple.launchd[1] (edu.cmu.andrew.cyrus.master[58971]): Exited abnormally: User defined signal 1
    Jan 31 11:30:25 xpmedia1 com.apple.launchd[1] (edu.cmu.andrew.cyrus.master): Throttling respawn: Will start in 8 seconds
    Jan 31 11:30:33 xpmedia1 master[59034]: process started
    Jan 31 11:30:34 xpmedia1 ctl_cyrusdb[59035]: verifying cyrus databases
    Jan 31 11:30:34 xpmedia1 ctl_cyrusdb[59035]: skiplist: recovered /Volumes/Kingdom/Mail_Database/imap/mailboxes.db (29 records, 5640 bytes) in 0 seconds
    Jan 31 11:30:34 xpmedia1 ctl_cyrusdb[59035]: skiplist: recovered /Volumes/Kingdom/Mail_Database/imap/annotations.db (0 records, 144 bytes) in 0 seconds
    Jan 31 11:30:35 xpmedia1 com.apple.launchd[1] (edu.cmu.andrew.cyrus.master[59034]): Stray process with PGID equal to this dead job: PID 59035 PPID 1 ctl_cyrusdb
    Jan 31 11:30:35 xpmedia1 com.apple.launchd[1] (edu.cmu.andrew.cyrus.master[59034]): Exited abnormally: User defined signal 1
    Jan 31 11:30:35 xpmedia1 com.apple.launchd[1] (edu.cmu.andrew.cyrus.master): Throttling respawn: Will start in 9 seconds
    Jan 31 11:30:43 xpmedia1 postfix/smtpd[59036]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:30:44 xpmedia1 master[59041]: process started
    Jan 31 11:30:45 xpmedia1 ctl_cyrusdb[59042]: verifying cyrus databases
    Jan 31 11:30:45 xpmedia1 ctl_cyrusdb[59042]: skiplist: recovered /Volumes/Kingdom/Mail_Database/imap/mailboxes.db (29 records, 5640 bytes) in 0 seconds
    Jan 31 11:30:45 xpmedia1 ctl_cyrusdb[59042]: skiplist: recovered /Volumes/Kingdom/Mail_Database/imap/annotations.db (0 records, 144 bytes) in 0 seconds
    Jan 31 11:30:46 xpmedia1 postfix/smtpd[59036]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:30:47 xpmedia1 ctl_cyrusdb[59042]: done verifying cyrus databases
    Jan 31 11:30:47 xpmedia1 master[59041]: Cyrus POP/IMAP Server v2.3.8 ready for work
    Jan 31 11:30:47 xpmedia1 ctl_cyrusdb[59045]: checkpointing cyrus databases
    Jan 31 11:30:47 xpmedia1 ctl_cyrusdb[59045]: done checkpointing cyrus databases
    Jan 31 11:31:09 xpmedia1 postfix/smtpd[59036]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:31:13 xpmedia1 pop3[59050]: login: host-12-152-82-113.orbitelcom.com [12.152.82.113] jsowerby APOP User logged in
    Jan 31 11:31:13 xpmedia1 pop3[59051]: login: host-12-152-82-113.orbitelcom.com [12.152.82.113] rsowerby APOP User logged in
    Jan 31 11:31:14 xpmedia1 imap[59053]: login: [66.182.118.39] bcorbin CRAM-MD5 User logged in
    Jan 31 11:31:14 xpmedia1 imap[59052]: login: [66.182.118.39] postmaster CRAM-MD5 User logged in
    Jan 31 11:31:14 xpmedia1 imap[59054]: login: [66.182.118.39] bcorbin CRAM-MD5 User logged in
    Jan 31 11:31:14 xpmedia1 imap[59055]: login: [66.182.118.39] postmaster CRAM-MD5 User logged in
    Jan 31 11:31:15 xpmedia1 imap[59055]: skiplist: recovered /Volumes/Kingdom/Mail_Database/imap/user/p/postmaster.seen (0 records, 144 bytes) in 0 seconds
    Jan 31 11:31:15 xpmedia1 imap[59054]: skiplist: recovered /Volumes/Kingdom/Mail_Database/imap/user/b/bcorbin.seen (2 records, 572 bytes) in 0 seconds
    Jan 31 11:31:15 xpmedia1 imap[59053]: login: [66.182.118.39] postmaster CRAM-MD5 User logged in
    Jan 31 11:31:15 xpmedia1 imap[59056]: login: [66.182.118.39] bcorbin CRAM-MD5 User logged in
    Jan 31 11:31:16 xpmedia1 imap[59052]: login: [66.182.118.39] postmaster CRAM-MD5 User logged in
    Jan 31 11:31:17 xpmedia1 imap[59057]: login: [66.182.118.39] postmaster CRAM-MD5 User logged in
    Jan 31 11:31:17 xpmedia1 imap[59058]: login: [66.182.118.39] bcorbin CRAM-MD5 User logged in
    Jan 31 11:31:18 xpmedia1 imap[59059]: login: [66.182.118.39] bcorbin CRAM-MD5 User logged in
    Jan 31 11:31:25 xpmedia1 pop3[59050]: no secret in database
    Jan 31 11:31:25 xpmedia1 pop3[59050]: badlogin: 71-223-32-176.phnx.qwest.net [71.223.32.176] CRAM-MD5 user not found
    Jan 31 11:31:25 xpmedia1 postfix/smtpd[59036]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:31:25 xpmedia1 pop3[59051]: login: [66.182.125.209] cbrundidge APOP User logged in
    Jan 31 11:31:30 xpmedia1 pop3[59051]: login: 71-223-32-176.phnx.qwest.net [71.223.32.176] kbarr APOP User logged in
    Jan 31 11:31:44 xpmedia1 postfix/smtpd[59036]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:31:44 xpmedia1 postfix/smtpd[59063]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:32:07 xpmedia1 imap[59069]: login: [66.182.118.39] postmaster CRAM-MD5 User logged in
    Jan 31 11:32:07 xpmedia1 imap[59068]: login: [66.182.118.39] bcorbin CRAM-MD5 User logged in
    Jan 31 11:32:25 xpmedia1 pop3[59050]: login: [66.182.125.209] cbrundidge APOP User logged in
    Jan 31 11:32:29 xpmedia1 postfix/smtpd[59063]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:33:01 xpmedia1 postfix/smtpd[59036]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:33:25: --- last message repeated 1 time ---
    Jan 31 11:33:25 xpmedia1 pop3[59050]: no secret in database
    Jan 31 11:33:25 xpmedia1 pop3[59050]: badlogin: 71-223-32-176.phnx.qwest.net [71.223.32.176] CRAM-MD5 user not found
    Jan 31 11:33:25 xpmedia1 postfix/smtpd[59086]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:33:26 xpmedia1 pop3[59091]: login: [66.182.125.209] cbrundidge APOP User logged in
    Jan 31 11:33:30 xpmedia1 pop3[59091]: login: 71-223-32-176.phnx.qwest.net [71.223.32.176] kbarr APOP User logged in
    Jan 31 11:34:12 xpmedia1 postfix/smtpd[59063]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:34:23: --- last message repeated 7 times ---
    Jan 31 11:34:23 xpmedia1 pop3[59050]: login: [66.182.118.39] jrossilli APOP User logged in
    Jan 31 11:34:25 xpmedia1 pop3[59091]: login: [66.182.125.209] cbrundidge APOP User logged in
    Jan 31 11:34:31 xpmedia1 postfix/smtpd[59086]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:34:50 xpmedia1 sudo[59121]: root : TTY=unknown ; PWD=/ ; USER=_cyrus ; COMMAND=/usr/bin/cyrus/bin/cyrus-quota -r
    Jan 31 11:34:52 xpmedia1 sudo[59127]: root : TTY=unknown ; PWD=/ ; USER=_cyrus ; COMMAND=/usr/bin/cyrus/bin/cyrus-quota -r
    Jan 31 11:35:18 xpmedia1 pop3[59050]: login: host-12-152-82-113.orbitelcom.com [12.152.82.113] rsowerby APOP User logged in
    Jan 31 11:35:18 xpmedia1 pop3[59091]: login: host-12-152-82-113.orbitelcom.com [12.152.82.113] jsowerby APOP User logged in
    Jan 31 11:35:25 xpmedia1 pop3[59091]: no secret in database
    Jan 31 11:35:25 xpmedia1 pop3[59091]: badlogin: 71-223-32-176.phnx.qwest.net [71.223.32.176] CRAM-MD5 user not found
    Jan 31 11:35:25 xpmedia1 pop3[59050]: login: [66.182.125.209] cbrundidge APOP User logged in
    Jan 31 11:35:26 xpmedia1 postfix/smtpd[59063]: warning: unknown smtpd restriction: "zen.spamhaus.org"
    Jan 31 11:35:30 xpmedia1 pop3[59050]: login: 71-223-32-176.phnx.qwest.net [71.223.32.176] kbarr APOP User logged in
    Jan 31 11:35:35 xpmedia1 pop3[59091]: badlogin: 32-109-248-206-catv.choicecable.net [206.248.109.32] APOP (<[email protected]>) Error: -6

  • Server.log full with oracle.ons.notification junk

    Hello Forum...
    I'm pretty new to orion application server - I see my OC4J server.log is over 50 MB! - full with this kind of entry that updates ever 30 seconds:
    " 08/05/02 09:27:56.899 Send notification:
    oracle.ons.Notification@187a9d6 "
    Despite searching around on this forum, I've still no idea what it means, and how to prevent it logging like crazy.
    Any help greatly appreciated.
    thanks
    /j-p.

    Sorry, don't know the answer off the bat for this one. I've seen it myself so I know what you refer to. It looks a little like a server trace log that is being emitted. If it wasn't for the size/frequency of it, you could safely ignore it -- it simply means that OC4J is responding to OPMN events to inform it that it is still alive.
    If you can, I'd think about opening a support tar for this and see if there is an existing fix, or if not, get a bug logged to get it fixed.
    I just had a look and can see in the code where its occurring and it should be trivial to fix it. I'll log a bug for it so if you do raise a TAR the details will be known to the support analyst. The bug # is 7132128.
    -steve-

  • Failure of server APACHE bridge::No backend server available for connection

    All,
    I have an env: Browser -> OHS -> WLS(Apex Listener) -> Oracle DB.
    If any SQL run for more than 5 mins, i get the below error.
    Failure of server APACHE bridge:
    No backend server available for connection: timed out after 10 seconds or idempotent set to OFF or method not idempotent.The only error i get is from the OHS's log
    [2013-04-03T06:45:57.2946-05:00] [OHS] [ERROR:32] [] [core.c] [host_id: aa050] [host_addr: 121.146.60.102] [tid: 1260554560] [user: oracle] [ecid: 004qNDJn1du7m3KaETn3ES0004Ll00001T] [rid: 0] [VirtualHost: my.team.com:443]  ap_proxy: trying POST /pls/apex/wwv_flow.show at backend host 127.0.0.1/7003; got exception 'Backend Server not responding'; state: reading status line or response headers from WLS (wrote? Y read? N); not failing over because method not idempotent, referer: https://my.team.com/pls/apex/f?p=4500:1003:16571271664493::NO:::Is there a timeout variable other than the below in WLS?
    Session Timeout (in seconds): 3600 .
    TIA,
    JJ

    Regardless of the version, this is not exactly a "Forms" failure. This is an issue between OHS and WLS. Basically it means that OHS (via mod_wl_ohs) was unable to communicate with WLS_FORMS (or whichever managed server you are trying to access). Most often this means the managed server is not running or not responding. If you believe it is running and is responsive (test by hitting it directly) then the problem is probably related to your installation. Generally, if you have not properly configured your networking before you installed WLS and FMw, then this can occur. For example, on Windows machine which do not have static IP addresses, the Installation Guide instructs you to install the Windows loopback adapter and configure it. If you did not do this, OHS likely will not be able to contact WLS_FORMS.
    You can test what I have described above by attempting to access WLS_FORMS directly. For example:
    http://yourHost:9001/forms/frmservlet
    If that works, the issue is probably related to a net config issue.
    If you have access to MyOracle Support, refer to these notes:
    <blockquote><li>Failure Of Server APACHE Bridge After Running Report From Forms 11gR2 on Windows 64-bit platform (Doc ID 1457845.1)
    <li>Oracle Fusion Middleware 11g - Troubleshooting the Error "Failure of server APACHE bridge" (Doc ID 1304095.1)</blockquote>
    The product Documentation Library can be found here:
    http://docs.oracle.com/cd/E24269_01/index.htm

  • Managed server logs

    When you fire up the NodeManager, and start up managed servers from the web
              console, where do the logs of the respective servers go? I couldn't seem to
              find anything telling in my domain directory when I looked.
              Thanx!
              Regards,
              Will Hartung
              ([email protected])
              

    Will,
              You're going to actually see three different types of logs when you use the
              NM:
              1. The Node Manager log files which contain NM specific entries.
              2. The Managed Server log files which contain the managed server specific
              info such as you're used to seeing from stdout, stderr when you start the
              server from the command line. Also you'll find additional info such as the
              server's PID, and copy of the server's configuration called
              nodemanager.config
              3. Node Manger client logs which reside on the admin server and contain
              subdirectories for each managed server issued a NM command.
              You won't see these last two log file types or their subdirectories until
              you actually use the NM to start the managed servers. All of these logs
              however, are stored in a parent subdirectory called NodeManagerLogs. By
              default this directory is created in the directory where you called
              startNodeManager[.cmd .sh] from. So if I ran . startNodeManager.sh from
              mydomain then I would see
              $BEA_HOME/user_projects/domains/mydomain/NodeManagerLogs
              The easiest way I have found to deal with this is to ensure that
              $WL_HOME/server/bin is in your PATH and simply call . startNodeManager.sh
              from the directory you want the logs to be created in --of course with the
              appropriate arguments or values in nodemanger.properties--
              but remember the NM defaults to $WL_HOME/common/nodemanager so you may see
              the logs under their initially.
              //provide a follow up if any of that didn't make sense :)
              ~RU
              "Will Hartung" <[email protected]> wrote in message
              news:[email protected]...
              > When you fire up the NodeManager, and start up managed servers from the
              web
              > console, where do the logs of the respective servers go? I couldn't seem
              to
              > find anything telling in my domain directory when I looked.
              >
              > Thanx!
              >
              > Regards,
              >
              > Will Hartung
              > ([email protected])
              >
              >
              

  • Error Message in MDM Server Log

    Hi Experts,
    Can anybody tell me what could be the problems if we have the following scenario ?
    For an example: Our MDM Server is based on 5.5 SP06, MDM Server name is DFM and our repository name is MDMQ110.
    1) Checking the Reports from this Repository MDMQ110 from MDM Console, no errors and no warning. This repository can be loaded successfully and completed.
    2) Server Log has an error in message:
    Error: Service 'DFM', Schema 'MDMQ110_m000', ERROR CODE = 0,
    SELECT LENGTH(Data) FROM A2i_Misc_Blobs WHERE Id=1000
    Thanks very much for your help in advance
    Regards,
    WD

    Hi Kanstantsin,
    Thanks for your reply. I have done the stop and repair but It did not help any. By repair, there are no errors and warnings that have been fixed which I can see in the repository reports.
    The Assertion Log has come up first with the messages like:
    6426            2010/01/12 09:07:08.500               Error: Data_2 accelerator does not exist in A2i_CM_Accelerator_Status
    6426            2010/01/12 09:07:08.683               Error: Data_53 accelerator does not exist in A2i_CM_Accelerator_Status
    4884 2010/01/12 09:43:30.335   Error: KeyWord_2_F4_Leng_USA accelerator does not exist in A2i_CM_Accelerator_Status
    As soon as I run into MDM, the Server Log has come up the same messages:
    It looks like not only happened to this repository. As I can see if I load any other repository, there are the same messages in Server Log but only the repository name in the message is different.

  • How to have a live feed from application server log file (realtime viewr )

    how to have a live feed from application server log file (realtime viewr for apps log files)
    hi , thank you for reading my post.
    is there any way to have a live feed of Application server log ?
    for example is there any application that can watch the log file and show the changes as new log items come in ?
    can some one with more experience help ?

    Your question would be more suited to the Developer Forums
    http://devforums.apple.com
    but anyway...
    My goal is to develop a web application that is able to run on iPhone too, to capture the audio and video content from its camera and mic.
    Web Apps running in Safari don't have access to the camera or mic hardware.
    Or I should built a native application distributed through Apple store?
    That is your only option, although such a system already exists:
    http://itunes.apple.com/us/app/ustream-live-broadcaster/id319362690?mt=8

  • WebLogic 10.3.2.0 hanging at startup after "The server log file is opened."

    Hi,
    A WebLogic 10.3.2.0 server is hanging at startup. There are no error messages. The last command in the startup window is:
    "The server log file <log file dest> is opened. All server side log events will be written to this file."
    I think the next line should be:
    "Security initializing using security realm realm."
    Any ideas on what could be the issue? For instance what resources should be accessed at that point of time? There is sufficient space left on the (virtual machine) disk. The VM configured with 8GB memory. Could it be performance related still?
    Following is written to the log file:
    ####<12.aug.2010 kl 09.47 CEST> <Info> <WebLogicServer> <oim> <> <Main Thread> <> <> <> <1281599254656> <BEA-000214> <WebLogic Server "AdminServer" version:
    WebLogic Server 10.3.2.0 Tue Oct 20 12:16:15 PDT 2009 1267925 Copyright (c) 1995, 2009, Oracle and/or its affiliates. All rights reserved.> ####<12.aug.2010 kl 09.47 CEST> <Notice> <Log Management> <oim> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1281599255312> <BEA-170019> <The server log file ....logs\AdminServer.log is opened. All server side log events will be written to this file.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Log Management> <oim> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1281599255390> <BEA-170023> <The Server Logging is initialized with Java Logging API implementation.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Diagnostics> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599255671> <BEA-320001> <The ServerDebug service initialized successfully.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Store> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599256515> <BEA-280050> <Persistent store "WLS_DIAGNOSTICS" opened: directory="....s\domains\oim\servers\AdminServer\data\store\diagnostics" writePolicy="Disabled" blockSize=512 directIO=false driver="wlfileio2"> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257140> <BEA-002622> <The protocol "t3" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257140> <BEA-002622> <The protocol "t3s" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257140> <BEA-002622> <The protocol "http" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257140> <BEA-002622> <The protocol "https" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257140> <BEA-002622> <The protocol "iiop" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257156> <BEA-002622> <The protocol "iiops" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257156> <BEA-002622> <The protocol "ldap" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257156> <BEA-002622> <The protocol "ldaps" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257187> <BEA-002622> <The protocol "cluster" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257187> <BEA-002622> <The protocol "clusters" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257218> <BEA-002622> <The protocol "snmp" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257218> <BEA-002622> <The protocol "admin" is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257218> <BEA-002624> <The administration protocol is "t3s" and is now configured.> ####<12.aug.2010 kl 09.47 CEST> <Info> <RJVM> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257468> <BEA-000570> <Network Configuration for Channel "AdminServer"
    Listen Address          :7001
    Public Address          N/A
    Http Enabled          true
    Tunneling Enabled     false
    Outbound Enabled     false
    Admin Traffic Enabled     true>
    ####<12.aug.2010 kl 09.47 CEST> <Info> <Server> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599257687> <BEA-002609> <Channel Service initialized.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Socket> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599258000> <BEA-000406> <NTSocketMuxer was built on Jan 13 2005 17:47:03
    ####<12.aug.2010 kl 09.47 CEST> <Info> <Socket> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599258078> <BEA-000436> <Allocating 3 reader threads.> ####<12.aug.2010 kl 09.47 CEST> <Info> <Socket> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599258078> <BEA-000446> <Native IO Enabled.> ####<12.aug.2010 kl 09.47 CEST> <Info> <IIOP> <oim> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1281599259500> <BEA-002014> <IIOP subsystem enabled.>
    Thanks!!

    tried both of these, still having same error as below:
    <Sep 8, 2010 1:32:37 PM IST> <Critical> <Security> <BEA-090402> <Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.>
    <Sep 8, 2010 1:32:37 PM IST> <Critical> <WebLogicServer> <BEA-000386> <Server subsystem failed. Reason: weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
    weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:959)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1050)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:875)
    at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    Truncated. see log file for complete stacktrace
    Caused By: javax.security.auth.login.FailedLoginException: [Security:090304]Authentication Failed: User weblogic2 javax.security.auth.login.FailedLoginException: [Security:090302]Authentication Failed: User weblogic2 denied
    at weblogic.security.providers.authentication.LDAPAtnLoginModuleImpl.login(LDAPAtnLoginModuleImpl.java:250)
    at com.bea.common.security.internal.service.LoginModuleWrapper$1.run(LoginModuleWrapper.java:110)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.bea.common.security.internal.service.LoginModuleWrapper.login(LoginModuleWrapper.java:106)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    Truncated. see log file for complete stacktrace
    >
    <Sep 8, 2010 1:32:37 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    <Sep 8, 2010 1:32:37 PM IST> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>
    <Sep 8, 2010 1:32:37 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    Pls help me out ASAP...

  • Error Running Forms: Failure of server APACHE bridge

    Hi Everyone,
    I have this problem on windows 7 64-bit... installation went fine without any errors.
    Forms was working fine, i was able to run test form, and a form that i created, and both were running properly..
    suddenly, while testing a new form module, it didn't work, and its showing :
    Failure of server APACHE bridge:
    No backend server available for connection: timed out after 10 seconds or idempotent set to OFF. I stopped and started the wls_forms and it didn't solve the problem..
    i couldn't get to a solution anywhere, is it a problem with weblogic configuration? but how was it working well at the begining... if weblogic services are not starting, then what's the fix for that?
    Help would be appreciated...
    Thanks..

    No, but as said you installed components (the HTTP Server) you wouldn't need for development. Did you start WLS_FORMS?
    In any case the latest version of forms would be 11.1.2 where the installation process for a development machine is much easier.
    You'd need
    - wls1035_generic.jar and a 64bit java runtime
    - the 64bit version of forms 11.1.2: http://download.oracle.com/otn/nt/middleware/11g/111200/ofm_frmrpts_win_11.1.2.0.0_64_disk1_1of1.zip
    of course you can install the 32bit version of forms too on your 64bit machine.
    then during installation just check "development mode", and you get a development installation like you got with iDS 10.1.2 with one weblogic instance instead of 3 and all the components you won't need (like webcache or the http server) won't be installed.
    cheers

  • Custom logging, multiple apps in one file, different from server.log

    I have several applications running on my integration server. I would like to log from these apps to a single file (different file from server.log)
    I tried to use custom log4j logging, but there's a problem with the RollingFileAppender. Whenever a file is rolled, the backup copies are deleted. It probably happens because different classloaders load different apps and I configure the log4j in every app, but I don't understand classloaders.
    Here is a part of the log4j.properties file:
    log4j.appender.file=org.apache.log4j.RollingFileAppender
    log4j.appender.file.File=/path/log
    log4j.appender.file.maxBackupIndex=10
    log4j.appender.file.maximumFileSize=10485760and I configure the logger in every app by
    org.apache.log4j.PropertyConfigurator.configure( logPropertiesPath );(Is this wrong? Is it even possible to use one log file from different apps? The integration servers does it...)
    I don't need the log4j, if the internal logging can be set up to log app. messages to a different file and configured with a different layout pattern, it would be enough.
    Can anybody please help with my logging problem?

    I've tried this:
    I've put log4j.jar to the lib dir of the logicalhost and log4j.properties to another jar (my own) and put it to the lib dir too. I deleted the PropertyCOnfigurator.configure() line from the apps. Built it, manually deleted log4j.jar from the EARs. Then I deployed EARs, restarted the domain and ran the apps. They both logged to the same and correct file, but again the rolling didn't work. How is this possible? I thought that this way the IS should have one and only one instance of Log4j...

  • How can I Create a Client Configuration File for RemoteApp and Desktop Connection with Server 2012?

    I have a working RDS RemoteApp site and looking to test out the feature in Windows 7 Control Panel\All Control Panel Items\RemoteApp and Desktop Connections
    I came across this link: Create a Client Configuration File for RemoteApp and Desktop Connection and I believe this is what I need to do first, but these instructions are for
    Server 2008, and I'm running 2012.
    Any suggestions or tips on how I can begin testing this with Server 2012?

    Hi,
    You can manually enter the path to the 2012 feed and it will connect and download the RemoteApps and Desktop connections.
    If you need a sample .wcx file I have posted one here a couple of times.  If you want I will look for it and post a link.
    -TP
    I tried adding my URL's below, these are sample links that work for me right now for when I log into the web page, but neither of these work.  And I'm not sure what I would need to do with or how to create a .wcx file.
    When I type in my URL of: https://connect.mydomain.org/RDWeb, I get redirected to: 
    https://connect.mydomain.org/RDWeb/Pages/en-US/login.aspx?ReturnUrl=/RDWeb/Pages/en-US/Default.aspx

  • Creating Open Directory Replica fails with Server Admin Error Value 1127

    Hallo,
    I have seen a lot of similar threads here and they were helpful up to a certain point, but in the end, they did not solve my problem.
    Currently, it comes down to this. The Server Admin Error message ist really meaningless and I could not find a single for the error value on the whole wide web. As such, I switched to the command line versions of the tools involved to geht more meaningful results. It worked. Specifically, creating a replica of an openldap master means using slapconfig.
    When executing
    slapconfig -createreplica master.ourdomain.com diradmin
    as root on the prospective replica machine, I get the following error message:
    ssh command failed with status 127
    That command is not allowed with the root account via public key authentication.
    That makes perfect sense to me, but how is it meant to work then?
    Executing slapconfig as admin tells me that this tool is to be executed as root. On the other hand, root login via ssh is not allowed in Mac OS X by default, which seems fine to me. I even changed /etc/sshd_config on the Open Directory Master machine to "PermitRootLogin yes". However, neither reloading ssh using launchctl nor restarting the whole server made this setting operational. Trying to login from command line as root still tells me:
    root login is not permitted to this machine via public key authentication.
    While this is the current state where I need help urgently, I changed some other things before. I tell about to exclude these issues as possible reason of failure. I got this message for quite a while:
    Replica Setup failed : This machine does not have a valid computer name
    I was sure, this machine meant the target machine, the open directory master, because the domain had changed there once before I had taken over responsibility as an admin in this environment. And in fact, changeip disguised an issue there. The command proposed by changeip to fix the situation did not seem appropriate because this machine is multihomed with a public and a private IP adress. Proper name resolution is available for both interfaces including reverse lookup. I dont like this setup, but it was the only way to get mail service running smoothly. Running changeip on the machine itself using these arguments
    changeip /LDAPv3/127.0.0.1 internalIP internalIP old.ours.com current.ours.com
    reported success in updating password server, open directory, both interfaces, hostconfig (which in fact did not change) and samba. It reported an issue with kadmin which is related to Kerberos (we dont use Kerberos yet).
    Changing the hostname of the server using changeip did not solve the issue. I then found the hint to check with scutil. This showed that the Hostname was not set on the prospective replica machine. (A question aside: in how many place is the hostname stored? The traditional /etc/hostname has gone, but seems to be replaces with several other configuration files and databases. I cant see this as an advantage). Setting the hostname using scutil worked fine. However, it did not solve the problem either. At least, slapconfig now started to complain about not being able to log in as root instead of failing from the start.
    I also checked all log files on bboth machines that might have to do with openldap, as there are /var/log/slapd.log, /var/log/system.log and /Library/Log/slapconfig.log. I also checked the log of th layer on top of openldap which is /Library/Log/DirectoryService.server.log. None of them revealed anything noticeable beside a lot of of entries that I have googled in the last few hours and which all dont seem to be associated with the problem in question.
    I will take a break now, but I have to fix this until tomorrow and I hope to get the ultimate hint from you, dear reader.
    Thanks and bye, Christian Völker

    ssh command failed with status 127
    That command is not allowed with the root account via public key authentication.
    Initial OD replication takes place via 'ssh'. If you have 'sshd' configured on the OD Master to authenticate with public keys then the OD replica will not be able to communicate with the OD Master via 'ssh'. You must configure the OD Master to use 'ssh' with password authentication and root login enabled.
    Demote the replica back to standalone. Stop any services that you may have running on the primary network interface. Then stop any services that you may have running on the secondary network interface. In the 'Network' System Prefpane remove the IP number from the secondary interface then deactivate the secondary network interface.
    Assign the private IP address and hostname that you wish to use for the replica to the primary network interface. Assign the 'public' IP number to the secondary interface. Check the DNS to see that the IP address and hostname for the primary network interface resolve both forward and reverse for the hostname of the replica that you have chosen. If it does not, fix your DNS before proceeding.
    In the 'Sharing' System Prefpane, change the name of the machine to the hostname (server.domain.tld) of the replica that you have chosen. Then use 'changeip -checkhostname' to see if the IP/hostname matches. Fix it if it doesn't.
    Then configure the /etc/sshd_config file on the OD master like this:
    \# Authentication:
    PermitRootLogin yes
    PasswordAuthentication yes
    PubkeyAuthentication no
    and the /etc/ssh_config file on the OD replica like this:
    PasswordAuthentication yes
    PubkeyAuthentication no
    Then from the OD replica as the 'root' user issue:
    slapconfig -createreplica <ODMasterIPorFQDN> <diradmin user>
    Make sure that the 'diradmin' user's password contains only alpha-numeric characters -no 'option-characters' or symbols, change it first if it does. Once the process completes, reactivate the secondary interface for the 'public' IP and check the configuration of services that will be using that IP, then start your other services. Secure the 'ssh' service on both machines to disable password authentication and 'root' logins.

Maybe you are looking for

  • Keep the styles drawer open in Pages 5?

    I searched a bit and didn't see anything on it. Please forgive if this has been answered. Is there a way to keep the styles drawer open as in previous versions? My workflow is to type in everything I want - as in a screenplay - and then use the arrow

  • Mouse not working in screen

    the title pretty much says it all. when i use programs like mc w/o screen running the mouse is usable, but when i use screen and then use mc, the mouse no longer works. anyone knows whats wrong?

  • Inserting text into PDFs in Preview.

    When editing a PDF in preview, I create a text box where I want to put text but i can only have one font or, more importantly, one font style (bold, italics etc) within that text box. How can i make just several words italics??

  • Fields not displaying on page 2 (sometimes page 1)

    CR11 Please bear with me as I'm relatively new to this... I'm working on a report that has multiple records in one report (a batch of purchase orders).  The formating is quite basic, no extensive formulas.  It has "reset page after" formatiing as wel

  • Question for everyone: Swing Design Patterns

    I've used kodo for many web projects, but I am currently looking at using it for a swing application and am having a hard time figuring out the best way to use it. My original attempt used a singleton PersistenceManager for the entire application tha