Message server will not start on AIX 6

I have a standard ECC6 system running the 185 kernel and ORACLE 10.2.0.2 on AIX 6. which is giving me a problem. I also have 2 other systems apparently with the same configuration which operate perfectly.
The problem I have is that if I stop the system the message server will not start. If I wait until the following day the message server starts pefectly. I have not been able to test stopping the system and waiting an hour or so and then restarting in the same day, so I do not know if the overnight wait is relevant.
dev_ms contains the following:
[Thr 01] Fri Jun 19 23:58:54 2009
[Thr 01] WLM Tag 'HQS/MSG' successfully set for this process
[Thr 01] MsSSetTrcLog: trc logging active, max size = 20971520 bytes
systemid   324 (IBM RS/6000 with AIX)
relno      7000
patchlevel 0
patchno    163
intno      20050900
make:      multithreaded, ASCII, 64 bit, optimized
pid        254088
[Thr 01] ***LOG Q01=> MsSInit, MSStart (Msg Server 1 254088) [msxxserv_mt. 1835]
[Thr 01] SigISetDefaultAction : default handling for signal 20
[Thr 01] ***LOG Q0I=> NiIBindSocket: bind (67: Address already in use) [nixxi.cp
p 3227]
[Thr 01] *** ERROR => NiIBindSocket: SiBind failed for hdl 1 / sock 8
    (SI_EPORT_INUSE/67; I4; ST; 0.0.0.0:3950) [nixxi.cpp    3227]
[Thr 01] *** ERROR => MsSCommInit: NiBufListen(3950) (rc=NIESERV_USED) [msxxserv
_mt. 10186]
[Thr 01] *** ERROR => MsSInit: MsSCommInit (internal) [msxxserv_mt. 1886]
[Thr 01] *** ERROR => main: MsSInit [msxxserv_mt. 5951]
[Thr 01] ***LOG Q02=> MsSHalt, MSStop (Msg Server 254088) [msxxserv_mt. 5999]
Regards,
Paul Richardson
Certified Netweaver, Portal and Migration Consultant
Sandpiper I.T. Ltd

Hi,
Thr 01 ***LOG Q0I=> NiIBindSocket: bind (67: Address already in use) [nixxi.cp p 3227]
Looks like port 3227 is already used. You can check the ports by netstat -a -n from your command prompts. Also check your settings in /etc/services and /etc/hosts files.
Check your filewall rules/disable antivirus if any and give a go.
Hope this helps.
Manoj

Similar Messages

  • Sql server will not start - Database 'model' cannot be opened. It is in the middle of a restore.

    Sql server service will not start after server reboot:
    2009-08-13 14:15:43.94 spid7s      SQL Trace ID 1 was started by login "sa".
    2009-08-13 14:15:43.97 spid7s      Starting up database 'mssqlsystemresource'.
    2009-08-13 14:15:43.97 spid7s      The resource database build version is 10.00.1600. This is an informational message only. No user action is required.
    2009-08-13 14:15:44.30 Server      A self-generated certificate was successfully loaded for encryption.
    2009-08-13 14:15:44.30 spid7s      Server name is 'WIN-37R9WFWAJIB\MSDB1'. This is an informational message only. No user action is required.
    2009-08-13 14:15:44.32 spid10s     Starting up database 'model'.
    2009-08-13 14:15:44.32 Server      Server is listening on [ 'any' <ipv6> 49167].
    2009-08-13 14:15:44.33 Server      Server is listening on [ 'any' <ipv4> 49167].
    2009-08-13 14:15:44.33 Server      Server local connection provider is ready to accept connection on [ \\.\pipe\SQLLocal\MSDB1 ].
    2009-08-13 14:15:44.33 Server      Server named pipe provider is ready to accept connection on [ \\.\pipe\sql\query ].
    2009-08-13 14:15:44.35 spid10s     The database 'model' is marked RESTORING and is in a state that does not allow recovery to be run.
    2009-08-13 14:15:44.38 Server      Server is listening on [ ::1 <ipv6> 49168].
    2009-08-13 14:15:44.38 Server      Server is listening on [ 127.0.0.1 <ipv4> 49168].
    2009-08-13 14:15:44.38 Server      Dedicated admin connection support was established for listening locally on port 49168.
    2009-08-13 14:15:44.39 spid10s     Error: 927, Severity: 14, State: 2.
    2009-08-13 14:15:44.39 spid10s     Database 'model' cannot be opened. It is in the middle of a restore.
    2009-08-13 14:15:44.49 spid10s     Could not create tempdb. You may not have enough disk space available. Free additional disk space by deleting other files on the tempdb drive and then restart SQL Server. Check for additional errors in the event log that may indicate why the tempdb files could not be initialized.
    2009-08-13 14:15:44.50 spid10s     SQL Trace was stopped due to server shutdown. Trace ID = '1'. This is an informa
    there is plenty of room on the server, so i dont think its a disk space issue.  i am able to start the service as such:
    C:\Users\Administrator>net start MSSQL$MSDB1 /c /m /T3608
    The SQL Server (MSDB1) service is starting.
    The SQL Server (MSDB1) service was started successfully
    sqlcmd -e
    1> select name, status from sysdatabases;
    2> go
    select name, status from sysdatabases;
    name
                                                     status
    master
                                                           65544
    tempdb
                                                           65544
    model
                                                           65568
    msdb
                                                      1073807368
    SS_DBA_Dashboard
                                                      1073807368
    (5 rows affected)
    model is in RESTORING state and I dont know how to fix it.  I am running simple backups, so I have a somewhat recent backup of model.bak but when I attempt to restore it I get an error:
    1> restore database model
    2> go
    restore database model
    Msg 3112, Level 16, State 1, Server WIN-37R9WFWAJIB\MSDB1, Line 1
    Cannot restore any database other than master when the server is in single user
    mode.
    Msg 3013, Level 16, State 1, Server WIN-37R9WFWAJIB\MSDB1, Line 1
    RESTORE DATABASE is terminating abnormally.
    other forums suggest manually updating the status column but i dont know if my syntax is wrong or it just cant be done in sql server 2008:
    1> begin transaction
    2> update sysdatabases set status=16 where name='model'
    3> ;
    4> go
    begin transaction
    update sysdatabases set status=16 where name='model'
    Msg 4406, Level 16, State 1, Server WIN-37R9WFWAJIB\MSDB1, Line 2
    Update or insert of view or function 'sysdatabases' failed because it contains a
     derived or constant field.
    1>
    yet another forum suggested taking a cleanly shut down model.mdf and model.ldf from another sql server 2008 instance and placing those in the data directory while moving the 'restoring' ones to a backup location.  this didnt work either.  any help is appreciated im new to sql server and this is very frustrating!  thanks in advance!

    I have the same issue on SQL Server 2008R2, after a server reboot, but none of the NET START commands or command line attempts are successful to start the Service.
    NET START command results in "Access Denied" "System Error 5" and the Command line attempts result in
     Server      Error: 17058, Severity: 16, State: 1.
     Server      initerrlog: Could not open error log file ''.
    Any help?
    SQL Error log file:
    2011-03-29 16:50:49.40 Server      (c) Microsoft Corporation.
    2011-03-29 16:50:49.40 Server      All rights reserved.
    2011-03-29 16:50:49.40 Server      Server process ID is 7292.
    2011-03-29 16:50:49.40 Server      System Manufacturer: 'Dell Inc.', System Model: 'PowerEdge T710'.
    2011-03-29 16:50:49.40 Server      Authentication mode is MIXED.
    2011-03-29 16:50:49.40 Server      Logging SQL Server messages in file 'E:\MSSQL\MSSQL10_50.MSSQLSERVER\MSSQL\Log\ERRORLOG'.
    2011-03-29 16:50:49.40 Server      This instance of SQL Server last reported using a process ID of 7448 at 3/29/2011 4:30:06 PM (local) 3/29/2011 8:30:06 PM (UTC). This is an informational message only; no user action is required.
    2011-03-29 16:50:49.40 Server      Registry startup parameters:
      -d E:\MSSQL\MSSQL10_50.MSSQLSERVER\MSSQL\DATA\master.mdf
      -e E:\MSSQL\MSSQL10_50.MSSQLSERVER\MSSQL\Log\ERRORLOG
      -l E:\MSSQL\MSSQL10_50.MSSQLSERVER\MSSQL\DATA\mastlog.ldf
      -T 4616
    2011-03-29 16:50:49.42 Server      SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
    2011-03-29 16:50:49.42 Server      Detected 24 CPUs. This is an informational message; no user action is required.
    2011-03-29 16:50:49.84 Server      Using dynamic lock allocation.  Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node.  This is an informational message only.  No user action is required.
    2011-03-29 16:50:49.84 Server      Lock partitioning is enabled.  This is an informational message only. No user action is required.
    2011-03-29 16:50:49.86 Server      Node configuration: node 0: CPU mask: 0x0000000000fff000:0 Active CPU mask: 0x0000000000fff000:0. This message provides a description of the NUMA configuration for this computer. This is an informational
    message only. No user action is required.
    2011-03-29 16:50:49.86 Server      Node configuration: node 1: CPU mask: 0x0000000000000fff:0 Active CPU mask: 0x0000000000000fff:0. This message provides a description of the NUMA configuration for this computer. This is an informational
    message only. No user action is required.
    2011-03-29 16:50:49.89 spid9s      Starting up database 'master'.
    2011-03-29 16:50:49.95 spid9s      CHECKDB for database 'master' finished without errors on 2011-03-18 08:46:34.257 (local time). This is an informational message only; no user action is required.
    2011-03-29 16:50:49.95 spid9s      FILESTREAM: effective level = 0, configured level = 0, file system access share name = 'MSSQLSERVER'.
    2011-03-29 16:50:49.97 spid9s      SQL Trace ID 1 was started by login "sa".
    2011-03-29 16:50:49.97 spid9s      Starting up database 'mssqlsystemresource'.
    2011-03-29 16:50:49.99 spid9s      The resource database build version is 10.50.1600. This is an informational message only. No user action is required.
    2011-03-29 16:50:50.20 spid13s     Starting up database 'model'.
    2011-03-29 16:50:50.20 spid9s      Server name is 'XXXX'. This is an informational message only. No user action is required.
    2011-03-29 16:50:50.21 Server      The certificate [Cert Hash(sha1) "C41DC20703F049763778AC2842C3C8A3A2C6EED4"] was successfully loaded for encryption.
    2011-03-29 16:50:50.21 Server      Server is listening on [ 'any' <ipv6> 1433].
    2011-03-29 16:50:50.21 Server      Server is listening on [ 'any' <ipv4> 1433].
    2011-03-29 16:50:50.21 Server      Server local connection provider is ready to accept connection on [
    \\.\pipe\SQLLocal\MSSQLSERVER ].
    2011-03-29 16:50:50.21 Server      Server named pipe provider is ready to accept connection on [
    \\.\pipe\sql\query ].
    2011-03-29 16:50:50.21 Server      Server is listening on [ ::1 <ipv6> 1434].
    2011-03-29 16:50:50.21 spid13s     The database 'model' is marked RESTORING and is in a state that does not allow recovery to be run.
    2011-03-29 16:50:50.21 Server      Server is listening on [ 127.0.0.1 <ipv4> 1434].
    2011-03-29 16:50:50.21 spid13s     Error: 927, Severity: 14, State: 2.
    2011-03-29 16:50:50.21 spid13s     Database 'model' cannot be opened. It is in the middle of a restore.
    2011-03-29 16:50:50.21 Server      Dedicated admin connection support was established for listening locally on port 1434.
    2011-03-29 16:50:50.22 spid13s     Could not create tempdb. You may not have enough disk space available. Free additional disk space by deleting other files on the tempdb drive and then restart SQL Server. Check for additional errors in
    the event log that may indicate why the tempdb files could not be initialized.
    2011-03-29 16:50:50.22 spid13s     SQL Trace was stopped due to server shutdown. Trace ID = '1'. This is an informational message only; no user action is required.

  • Mac OS 10.4.4 Application Server Will Not Start

    Installed Mac 10.4.4 last night. The Applicaton Server worked for all my projects. Now I cannot start the Application Server in Creator or Creator 2 ea2.
    Another possible problem is that I was running both Creator and Creator 2 ea2 at the same time, but neither will launch the App Server now with the other not running.
    Has anyone successfully launched the App Server in Mac OS 10.4.4?
    Any other ideas?
    Thanks,
    Bill

    Hello Sakthi,
    Thanks for the help. I got the server running again by finding yet another instance of Creator and started up the Server successfully. Strangely enough, all the other instances of Creator then were able to start up (now one at a time). Another thing, when the server was not starting up it was using different port numbers than normal.
    Error:
    [#|2006-01-11T17:12:10.079-0500|INFO|sun-appserver-pe8.1_02|javax.enterprise.system.tools.admin|_ThreadID=17;|ADM1042:Status of dynamic reconfiguration event processing:[success]|#]
    [#|2006-01-11T17:12:36.979-0500|WARNING|sun-appserver-pe8.1_02|javax.enterprise.resource.resourceadapter|_ThreadID=18;|RAR5038:Unexpected exception while creating resource|#]
    [#|2006-01-11T17:12:36.980-0500|WARNING|sun-appserver-pe8.1_02|javax.enterprise.resource.resourceadapter|_ThreadID=18;|RAR5117 : Failed to obtain/create connection. Reason : Connection could not be allocated because: SQL-server rejected establishment of SQL-connection. Pointbase Server may not be running on localhost at port 29093.|#]

  • SLD server will not start

    Hi, I am having an issue with my SLD server.  The java will not start completely.  This is the log i get:
    If you have any clue that would be great.
    thanks
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7185 - 630]/>
    <!NAME[./log/defaultTrace.trc]/>
    <!PATTERN[defaultTrace.trc]/>
    <!FORMATTER[com.sap.tc.logging.ListFormatter]/>
    <!ENCODING[Cp1252]/>
    <!FILESET[0, 20, 10485760]/>
    <!PREVIOUSFILE[defaultTrace.19.trc]/>
    <!NEXTFILE[defaultTrace.1.trc]/>
    <!LOGHEADER[END]/>
    #1.5#000BCDEF4B75001E0000000100000B4400046A834059524E#1243011859688#com.sap.di.sdic.srv.java.SDICServiceFrame##com.sap.di.sdic.srv.java.SDICServiceFrame#######SAPEngine_System_Thread[impl:5]_70##0#0#Error#1#/Applications/SDIC/Service#Java###Failed to initialize the SDIC service. An unanticipated error has occured; Error description - #1#com.sap.di.sdic.exception.DiException: StateStore Initialization requires the values to be specified for the properties"sdic.state.store.storeManager" and "sdic.nwdiservers.admin.user"#
    #1.5#000BCDEF4B75001E0000000300000B4400046A8340596B1D#1243011859688#com.sap.engine.core.service630.container.ServiceRunner##com.sap.engine.core.service630.container.ServiceRunner#######SAPEngine_System_Thread[impl:5]_70##0#0#Error#1#/System/Server#Plain###Service tcdisdic~srv error. Nested exception is: com.sap.engine.frame.ServiceException: StateStore Initialization requires the values to be specified for the properties"sdic.state.store.storeManager" and "sdic.nwdiservers.admin.user"
         at com.sap.di.sdic.srv.java.SDICServiceFrame.start(SDICServiceFrame.java:162)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    Caused by: com.sap.di.sdic.exception.DiException: StateStore Initialization requires the values to be specified for the properties"sdic.state.store.storeManager" and "sdic.nwdiservers.admin.user"
         at com.sap.di.sdic.srv.java.SDICServiceFrame.start(SDICServiceFrame.java:149)
         ... 5 more
    Caused by: java.lang.Exception: StateStore Initialization requires the values to be specified for the properties"sdic.state.store.storeManager" and "sdic.nwdiservers.admin.user"
         ... 6 more
    #1.5#000BCDEF4B7500260000000000000B4400046A8340A5D8ED#1243011864701#com.sap.caf.um.metadata.imp.MetaDataTools##com.sap.caf.um.metadata.imp.MetaDataTools.MetaDataTools()#######SAPEngine_System_Thread[impl:5]_54##0#0#Info#1#/System/Server#Plain###sap.com caf/um/metadata/imp MAIN_APL70VAL_C 963656#
    #1.5#000BCDEF4B75002F0000000100000B4400046A8340D0C614#1243011867513#com.sap.engine.services.rfcengine##com.sap.engine.services.rfcengine.RFCRuntimeInterfaceImpl.newProperties(int prcs, int conn)#######SAPEngine_System_Thread[impl:5]_35##0#0#Error#1#/System/Server#Java###enter  newProperties()##
    #1.5#000BCDEF4B75002F0000000300000B4400046A8340D702A6#1243011867919#com.sap.engine.services.rfcengine##com.sap.engine.services.rfcengine.RFCRuntimeInterfaceImpl.init()#######SAPEngine_System_Thread[impl:5]_35##0#0#Error#1#/System/Server#Java###SNC properties not found ##
    #1.5#000BCDEF4B7500300000000000000B4400046A8340F313F1#1243011869762#com.sap.caf.um.relgroups.imp.persistence.DataSource##com.sap.caf.um.relgroups.imp.persistence.DataSource.DataSource()#######SAPEngine_System_Thread[impl:5]_4##0#0#Info#1#/System/Server#Plain###sap.com caf/um/relgroups/imp MAIN_APL70VAL_C 963842#
    #1.5#000BCDEF4B7500380000000100000B4400046A83412AA249#1243011873402#com.adobe.service.sap.configuration##com.adobe.service.sap.configuration#######OrderedChannel for service##0#0#Error#1#/System/Security#Plain###Error while reading trusted anchor configuration information:
    com.sap.security.core.server.securestorage.exception.ObjectRetrievalException: Could not find clientID servicescomadobeDocumentServicesConfigurationAdobeConfigurationService~jar
         at com.sap.security.core.server.securestorage.remote.RemoteSecureStorageClientContextImpl.getClientsStorageLocation(RemoteSecureStorageClientContextImpl.java:231)
         at com.sap.security.core.server.securestorage.remote.RemoteSecureStorageClientContextImpl.retrieveObject(RemoteSecureStorageClientContextImpl.java:724)
         at com.adobe.service.sap.configuration.ConfigurationService.readXML(Unknown Source)
         at com.adobe.service.sap.configuration.ConfigurationService.<init>(Unknown Source)
         at com.adobe.service.sap.configuration.ServiceFrame.start(Unknown Source)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    #1.5#000BCDEF4B7500380000000300000B4400046A83412AAC7B#1243011873402#com.adobe.service.sap.configuration##com.adobe.service.sap.configuration#######OrderedChannel for service##0#0#Error#1#/System/Security#Plain###Error while reading credential configuration information:
    com.sap.security.core.server.securestorage.exception.ObjectRetrievalException: Could not find clientID servicescomadobeDocumentServicesConfigurationAdobeConfigurationService~jar
         at com.sap.security.core.server.securestorage.remote.RemoteSecureStorageClientContextImpl.getClientsStorageLocation(RemoteSecureStorageClientContextImpl.java:231)
         at com.sap.security.core.server.securestorage.remote.RemoteSecureStorageClientContextImpl.retrieveObject(RemoteSecureStorageClientContextImpl.java:724)
         at com.adobe.service.sap.configuration.ConfigurationService.readXML(Unknown Source)
         at com.adobe.service.sap.configuration.ConfigurationService.<init>(Unknown Source)
         at com.adobe.service.sap.configuration.ServiceFrame.start(Unknown Source)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    #1.5#000BCDEF4B7500380000000500000B4400046A83412AB51D#1243011873402#com.adobe.service.sap.configuration##com.adobe.service.sap.configuration#######OrderedChannel for service##0#0#Error#1#/System/Security#Plain###Error while reading CRL configuration information:
    com.sap.security.core.server.securestorage.exception.ObjectRetrievalException: Could not find clientID servicescomadobeDocumentServicesConfigurationAdobeConfigurationService~jar
         at com.sap.security.core.server.securestorage.remote.RemoteSecureStorageClientContextImpl.getClientsStorageLocation(RemoteSecureStorageClientContextImpl.java:231)
         at com.sap.security.core.server.securestorage.remote.RemoteSecureStorageClientContextImpl.retrieveObject(RemoteSecureStorageClientContextImpl.java:724)
         at com.adobe.service.sap.configuration.ConfigurationService.readXML(Unknown Source)
         at com.adobe.service.sap.configuration.ConfigurationService.<init>(Unknown Source)
         at com.adobe.service.sap.configuration.ServiceFrame.start(Unknown Source)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    #1.5#000BCDEF4B7500380000000700000B4400046A83412ABDBE#1243011873402#com.adobe.service.sap.configuration##com.adobe.service.sap.configuration#######OrderedChannel for service##0#0#Error#1#/System/Security#Plain###Error while reading password configuration information:
    com.sap.security.core.server.securestorage.exception.ObjectRetrievalException: Could not find clientID servicescomadobeDocumentServicesConfigurationAdobeConfigurationService~jar
         at com.sap.security.core.server.securestorage.remote.RemoteSecureStorageClientContextImpl.getClientsStorageLocation(RemoteSecureStorageClientContextImpl.java:231)
         at com.sap.security.core.server.securestorage.remote.RemoteSecureStorageClientContextImpl.retrieveObject(RemoteSecureStorageClientContextImpl.java:724)
         at com.adobe.service.sap.configuration.ConfigurationService.readXML(Unknown Source)
         at com.adobe.service.sap.configuration.ConfigurationService.<init>(Unknown Source)
         at com.adobe.service.sap.configuration.ServiceFrame.start(Unknown Source)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    Jean Seguin

    Hi,
    The user SAPJSF is not lock and here is the output of the Stdserver.out
    stdout/stderr redirect
    node name   : server0
    pid         : 5800
    system name : IS1
    system nr.  : 01
    started at  : Fri May 22 14:50:38 2009
    Reserved 1610612736 (0x60000000) bytes before loading DLLs.
    [Thr 5756] Fri May 22 14:50:39 2009
    [Thr 5756] MtxInit: -2 0 0
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    SAP J2EE Engine Version 7.00   PatchLevel is starting...
    Loading: LogManager ... 6420 ms.
    Loading: PoolManager ... 0 ms.
    Loading: ApplicationThreadManager ... 440 ms.
    Loading: ThreadManager ... 76 ms.
    Loading: IpVerificationManager ... 46 ms.
    Loading: ClassLoaderManager ... 30 ms.
    Loading: ClusterManager ... 638 ms.
    Loading: LockingManager ... 227 ms.
    Loading: ConfigurationManager ... 8136 ms.
    Loading: LicensingManager ... 76 ms.
    Loading: CacheManager ... 410 ms.
    Loading: ServiceManager ...
    Loading services.:
      Service memory started. (45 ms).
      Service cross started. (243 ms).
      Service file started. (289 ms).
      Service runtimeinfo started. (30 ms).
      Service timeout started. (106 ms).
      Service trex.service started. (106 ms).
      Service p4 started. (744 ms).
      Service classpath_resolver started. (30 ms).
      Service userstore started. (243 ms).
      Service jmx_notification started. (532 ms).
      Service log_configurator started. (24331 ms).
      Service locking started. (15 ms).
      Service http started. (759 ms).
      Service naming started. (1775 ms).
      Service appclient started. (228 ms).
      Service failover started. (213 ms).
      Service jmsconnector started. (304 ms).
      Service javamail started. (410 ms).
      Service ts started. (349 ms).
      Service licensing started. (30 ms).
      Service connector started. (380 ms).
      Service iiop started. (652 ms).
      Service webservices started. (1700 ms).
      Service deploy started. (31390 ms).
      Service configuration started. (61 ms).
      Service MigrationService started. (106 ms).
      Service bimmrdeployer started. (30 ms).
      Service dbpool started. (6041 ms).
      Service com.sap.security.core.ume.service started. (7680 ms).
      Service tcdisdic~srv started. (1776 ms).
      Service security started. (4068 ms).
      Service classload started. (228 ms).
      Service applocking started. (228 ms).
      Service shell started. (379 ms).
      Service ejb started. (547 ms).
      Service tceCATTPingservice started. (425 ms).
      Service telnet started. (501 ms).
      Service dsr started. (1062 ms).
      Service servlet_jsp started. (1791 ms).
      Service webdynpro started. (1426 ms).
      Service cafummetadata~imp started. (2095 ms).
      Service keystore started. (2474 ms).
      Service ssl started. (15 ms).
      Service cafruntimeconnectivity~impl started. (50818 ms).
      Service jmx started. (3111 ms).
      Service tcsecsecurestorage~service started. (1199 ms).
      Service tcsecwssec~service started. (835 ms).
      Service cafumrelgroups~imp started. (4099 ms).
      Service CUL started. (2550 ms).
      Service tcsecdestinations~service started. (2824 ms).
      Service apptracing started. (1351 ms).
      Service com.adobe~DataManagerService started. (3187 ms).
      Service pmi started. (1138 ms).
      Service tcsecvsi~service started. (1988 ms).
      Service sld started. (5525 ms).
      Service basicadmin started. (4568 ms).
      Service com.adobe~DocumentServicesDestProtoService started. (1548 ms).
      Service com.adobe~DocumentServicesBinaries2 started. (1624 ms).
      Service com.adobe~DocumentServicesLicenseSupportService started. (1336 ms).
      Service adminadapter started. (364 ms).
      Service com.adobe~LicenseService started. (470 ms).
      Service monitor started. (1564 ms).
      Service com.adobe~DocumentServicesConfiguration started. (2762 ms).
      Service com.adobe~TrustManagerService started. (182 ms).
      Service com.adobe~PDFManipulation started. (4888 ms).
      Service tc.CBS.Service started. (10564 ms).
      Service com.adobe~FontManagerService started. (10049 ms).
      Service com.sap.aii.af.cpa.svc started. (9821 ms).
      Service com.sap.aii.af.security.service started. (31 ms).
      Service tc.monitoring.logviewer started. (19216 ms).
      Service com.sap.aii.af.svc started. (2808 ms).
      Service com.sap.aii.af.ms.svc started. (1366 ms).
      Service com.adobe~XMLFormService started. (6315 ms).
      Service com.sap.aii.adapter.bc.svc started. (106 ms).
      Service com.sap.aii.adapter.marketplace.svc started. (243 ms).
      Service com.sap.aii.adapter.xi.svc started. (182 ms).
      Service com.sap.aii.adapter.file.svc started. (304 ms).
      Service com.sap.aii.adapter.jdbc.svc started. (288 ms).
      Service com.sap.aii.adapter.rfc.svc started. (122 ms).
      Service jms_provider started. (22373 ms).
      Service com.sap.aii.adapter.mail.svc started. (1442 ms).
      Service com.sap.aii.adapter.jms.svc started. (895 ms).
      Service com.sap.aii.af.ispeak.svc started. (728 ms).
      Service rfcengine started. (73524 ms).
    ServiceManager started for 148445 ms.
    Framework started for 166083 ms.
    SAP J2EE Engine Version 7.00   PatchLevel is running!
    PatchLevel October 23, 2006 07:41 GMT

  • Management server will not start

    I also can't get management server to start. If I try to start it, I get the 997 overlapped I/O operation error.
    I have tried as the answers to other posts on this subject suggest, but nothing has worked. I have created a new repository and saved the user name and password. The service will not start and trying to login with Enterprise Manager gives me an Invalid login error.
    Any new suggestions? BTW I am working on a test machine so if I have to wipe and reinstall everything againthat is no problem at all.
    Please answer ASAP.

    I turned up logging and found this. If the server was working before I tried to restart it is this really the problem?
    2010-12-29 15:42:15.667 INFO  CAD                      Starting Server Intelligence Agent...
    2010-12-29 15:42:15.667 INFO  InfoStore Agent          m_cmsNames.size() = 1.
    2010-12-29 15:42:15.668 INFO  InfoStore Agent          Pinging db9.interactivesys.com:6400.
    2010-12-29 15:42:15.668 DEBUG InfoStore Agent          Trying to ping using db9.interactivesys.com/10.24.34.9 at port 6400
    2010-12-29 15:42:15.672 DEBUG InfoStore Agent          java.net.ConnectException: Connection refused java.net.PlainSocketImpl.socketConnect(Native Method)

  • DataSocket Server will not start when the Launch DS Server if Local URL.VI is bundled into a LabVIEW application.

    I want to run a LabVIEW application on several machines remotely that do not have LabVIEW installed (licensing issues). Hence I have built a LabVIEW executable with the RunTime Engine to install on all of these remote machines.
    The VI has a bi-directional link, using Datasockets, to a machine with DAQ and Image acquisition functions. It primarily receives data items, but also the capability to change data items so it needs to run the "Launch DS Server if Local URL.VI" in order to publish data to the DataSocket server.
    When I run the pre-built VI on a machine that has LabVIEW Developers Edition installed, everything works fine - ie.
    the DataSocket server starts on the remote machine. However when I build the *.exe application and run it on a machine with and without LabVIEW Developers Edition installed the VI successfully subscribes to the DAQ and Image Acquisiton machine, but it does not start its own connection to the Data Socket server, and hence does not publish the data that the DAQ machine needs to suscribe to. IT seems that the Launch DS Server if Local URL.VI is bypassed? I have fiddled around with the Build settings but to no avail.
    In short, how do I get the DataSocket Server to run in a LabVIEW executable? Is it indeed possible? Any advice would be welcomed.
    When distributing a Labview Application (*.exe) with Data Socket Server Publish functionality, the DataSocket server does not start and hence no data can be sent by the Remote PC to the Server. The VI successfully retrieves data from the DS Server. I have used the "Launch DS Server if Local URL.vi" in the ditributed application but for some r
    eason this VI is not executed when I run the executable. How can you force the DataSocket Server to run with executable LabVIEW applications?

    Ryan,
    How to add Datasocket Server Control.vi?
    Source Files only show Project Files.
    So, I added Datasocket Server Control.vi file to the project first.
    Then I added it to Always Included < Source Files < Application Properties (Build Executable).
    Last, I built the Executable, but it didn't work.
    Can you help me.
    Thank you.
    Pedro Raposo

  • Application server will not start up

    Hello,
    I have read quite a few topics concerning this problem, and have tried many things but without success.
    I am running on Windows XP Pro. The installation goes fine, but when I run a project, the application server cannot start, and I get a message after quite a long time saying that it can't start and to check my port numbers,etc.
    I used to have Sun Java Creator, but I uninstalled it. I tried deleting the \Windows\System32\productregistry file. I tried uninstalling completely and reinstalling in C:\Sun\Creator2, but the problem is still the same. I tried deleting the domain with "asadmin" and recreating it, but I still get the problem.
    I am posting all the relevant information from the logs, hopin someone will be able to help me out....
    C:\Sun\Creator2ea2\install.log
    (Jan 14, 2006 3:34:36 PM), Setup.product.install, com.installshield.wizard.platform.win32.Win32ProductServiceImpl, msg1, installing Files (coreFiles)
    (Jan 14, 2006 3:35:42 PM), Setup.product.install, com.installshield.wizard.platform.win32.Win32ProductServiceImpl, msg1, installing Files (jdkFiles)
    (Jan 14, 2006 3:36:32 PM), Setup.product.install, com.installshield.wizard.platform.win32.Win32ProductServiceImpl, msg1, installing Files (appserverFiles)
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.installshield.wizard.platform.win32.Win32ProductServiceImpl, msg1, installing Install Application Server Action (bean4)
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, #
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, # Wizard Statefile generatd by make_statefile.sh
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, #
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, # Wizard Statefile section for Sun Java System Application Server
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, #
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, [STATE_BEGIN Sun Java System Application Server 42cc62066aa69c151b1093bfcb735f8e112358e8]
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, defaultInstallDirectory = C:\Sun\Creator2ea2\SunAppServer8
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, currentInstallDirectory = C:\Sun\Creator2ea2\SunAppServer8
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, JDK_LOCATION = C:\Sun\Creator2ea2\java
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, INST_ASADMIN_USERNAME = admin
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, INST_ASADMIN_PASSWORD = adminadmin
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, INST_ASADMIN_PORT = 24848
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, INST_ASWEB_PORT = 28080
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, INST_HTTPS_PORT = 21043
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, STORE_ADMIN_AUTH = FALSE
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, ADMIN_PASSWORD_ENCRYPTED = FALSE
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, CREATE_SAMPLES_DOMAIN = FALSE
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, CREATE_DESKTOP_SHORTCUT = FALSE
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, [STATE_DONE Sun Java System Application Server 42cc62066aa69c151b1093bfcb735f8e112358e8]
    (Jan 14, 2006 3:36:45 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, Installing Application Server...
    (Jan 14, 2006 3:37:58 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1,
    Checking available disk space...
    Checking Java(TM) 2 Runtime Environment...
    Extracting installation files...
    Launching Java(TM) 2 Runtime Environment...
    Deleting temporary files...
    "exitcode = 73"
    (Jan 14, 2006 3:37:58 PM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, Finished
    (Jan 14, 2006 3:37:58 PM), Setup.product.install, com.installshield.wizard.platform.win32.Win32ProductServiceImpl, msg1, installing Post Install Core Action (postInstallCoreAction)
    (Jan 14, 2006 3:40:32 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, The following script has unexpecTed output: "C:\Sun\Creator2ea2\bin\storagebuilder.bat"
    (Jan 14, 2006 3:40:32 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, preparsing C:\Sun\Creator2ea2\rave2.0\core\rowset.jar
    (Jan 14, 2006 3:40:32 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, C:\Temp\mdrstorage\storage
    (Jan 14, 2006 3:40:32 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, ... done
    (Jan 14, 2006 3:40:32 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, preparsing C:\Sun\Creator2ea2\rave2.0\core\sqlx.jar
    <SNIP>
    (Jan 14, 2006 3:41:53 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, The following script has unexpected output: "C:\Sun\Creator2ea2\bin\pe-init-tray.bat"
    (Jan 14, 2006 3:41:53 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, C:\Sun\CREATO~1\\rave2.0\startup\lib\Windows-i386\jdic_0_9.jar
    (Jan 14, 2006 3:41:53 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, C:\Sun\CREATO~1\\rave2.0\startup\lib\Windows-i386\LICENSE.jdic_0_9
    (Jan 14, 2006 3:41:53 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, C:\Sun\CREATO~1\\rave2.0\startup\lib\Windows-i386\tray.dll
    (Jan 14, 2006 3:41:53 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, 3 fichier(s) copi�(s).
    (Jan 14, 2006 3:41:53 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, 1 fichier(s) copi�(s).
    (Jan 14, 2006 3:41:53 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, Avertissements de compilation :
    (Jan 14, 2006 3:41:53 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 31: L'attribut 'classname' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, The following script has unexpected output: "C:\Sun\Creator2ea2\bin\pe-start.bat"
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, WARNING: The adminpassword option is insecure and should not be used since it can compromise your password.  Please use either the command prompt or the passwordfile option.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, Domain creator created.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, Starting Domain creator, please wait.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, Log redirected to C:\Sun\Creator2ea2\SunAppServer8\domains\creator\logs\server.log.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, Timeout waiting for domain creator to go to starting state.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, Avertissements de compilation :
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 44: L'attribut 'debug-options' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 61: L'attribut 'port' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 72: L'attribut 'port' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 83: L'attribut 'port' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 104: L'attribut 'port' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 115: L'attribut 'port' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 126: L'attribut 'port' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 144: L'attribut 'port' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, line 155: L'attribut 'port' est � l'ext�rieur de l'�l�ment.
    (Jan 14, 2006 3:45:08 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, CLI156 Could not start the domain creator.
    (Jan 14, 2006 3:45:41 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, The following script has unexpected output: "C:\Sun\Creator2ea2\bin\deploy-ejbs.bat"
    (Jan 14, 2006 3:45:41 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, WARNING: The password option is insecure and should not be used since it can compromise your password.  Please use either the command prompt or the passwordfile option.
    (Jan 14, 2006 3:45:41 PM), Setup.product.install, com.sun.installer.PostInstallWizardAction, msg1, Unable to connect to admin-server. Please check if the server is up and running and that the host and port provided are correct.
    etc.
    etc.
    Hope I haven't drowned you with this log....
    Thanks,
    Raphael

    Here's a bit more information : the output of the C:\Sun\Creator2ea2\SunAppServer8\domains\creator\logs\server.log file :
    [#|2006-01-14T15:42:08.188+0100|WARNING|sun-appserver-pe8.1_02|javax.enterprise.tools.launcher|_ThreadID=10;|LAUNCHER005:Spaces in your PATH have been detected. The PATH must be consistently formated (e.g. C:\Program Files\Java\jdk1.5.0\bin; ) or the Appserver may not be able to start and/or stop.  Mixed quoted spaces in your PATH can cause problems, so the launcher will remove all double quotes before invoking the process. The most reliable solution would be to remove all spaces from your path before starting the Appservers components.  |#]
    [#|2006-01-14T15:42:08.198+0100|INFO|sun-appserver-pe8.1_02|javax.enterprise.tools.launcher|_ThreadID=10;|
    C:/Sun/Creator2ea2/java\bin\java
    -client
    -XX:PermSize=32m
    -XX:MaxPermSize=128m
    -XX:+CMSPermGenSweepingEnabled
    -Xmx512m
    -XX:NewRatio=2
    -Dcom.sun.aas.defaultLogFile=C:/Sun/Creator2ea2/SunAppServer8/domains/creator/logs/server.log
    -Djava.endorsed.dirs=C:/Sun/Creator2ea2/SunAppServer8/lib/endorsed
    -Djava.security.policy=C:/Sun/Creator2ea2/SunAppServer8/domains/creator/config/server.policy
    -Djava.security.auth.login.config=C:/Sun/Creator2ea2/SunAppServer8/domains/creator/config/login.conf
    -Dsun.rmi.dgc.server.gcInterval=3600000
    -Dsun.rmi.dgc.client.gcInterval=3600000
    -Djavax.net.ssl.keyStore=C:/Sun/Creator2ea2/SunAppServer8/domains/creator/config/keystore.jks
    -Djavax.net.ssl.trustStore=C:/Sun/Creator2ea2/SunAppServer8/domains/creator/config/cacerts.jks
    -Djava.ext.dirs=C:/Sun/Creator2ea2/java/jre/lib/ext;C:/Sun/Creator2ea2/SunAppServer8/domains/creator/lib/ext
    -Djdbc.drivers=com.pointbase.jdbc.jdbcUniversalDriver
    -Djavax.management.builder.initial=com.sun.enterprise.admin.server.core.jmx.AppServerMBeanServerBuilder
    -Dcom.sun.enterprise.config.config_environment_factory_class=com.sun.enterprise.config.serverbeans.AppserverConfigEnvironmentFactory
    -Dcom.sun.enterprise.taglibs=appserv-jstl.jar,jsf-impl.jar
    -Dcom.sun.enterprise.taglisteners=jsf-impl.jar
    -Djavax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl
    -Dcom.sun.aas.configName=server-config
    -Dorg.xml.sax.parser=org.xml.sax.helpers.XMLReaderAdapter
    -Ddomain.name=creator
    -Djmx.invoke.getters=true
    -Djavax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl
    -Dcom.sun.aas.promptForIdentity=true
    -Dorg.xml.sax.driver=com.sun.org.apache.xerces.internal.parsers.SAXParser
    -Dcom.sun.aas.instanceRoot=C:/Sun/Creator2ea2/SunAppServer8/domains/creator
    -Djavax.xml.transform.TransformerFactory=com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl
    -Dcom.sun.aas.domainName=creator
    -Djava.util.logging.manager=com.sun.enterprise.server.logging.ServerLogManager
    -Dproduct.name=Sun-Java-System/Application-Server
    -Dcom.sun.enterprise.overrideablejavaxpackages=javax.faces,javax.servlet.jsp.jstl,javax.xml.bind,javax.help
    -Dcom.sun.aas.configRoot=C:/Sun/Creator2ea2/SunAppServer8/config
    -Djava.library.path=C:\Sun\Creator2ea2\java\jre\bin\client;C:\Sun\Creator2ea2\SunAppServer8\lib;C:\Sun\Creator2ea2\SunAppServer8\lib;C:\Sun\Creator2ea2\java\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\Sun\Creator2ea2\SunAppServer8\lib;C:\Sun\Creator2ea2\SunAppServer8\bin;C:\Sun\Creator2ea2\SunAppServer8\lib;C:\Sun\Creator2ea2\SunAppServer8\bin;C:\Sun\Creator2ea2\SunAppServer8\bin;C:\Sun\Creator2ea2\SunAppServer8\bin;C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\;C:\Program Files\Borland\BDS\4.0\Bin;C:\PROGRA~1\Borland\CBUILD~3\Bin;C:\PROGRA~1\Borland\CBUILD~3\Projects\Bpl;C:\Oracle\OraHomeAPISOFT\bin;C:\Program Files\Oracle\jre\1.1.7\bin;C:\Program Files\Borland\Delphi7\Bin;C:\Program Files\Borland\Delphi7\Projects\Bpl\;C:\PROGRA~1\Borland\CBUILDER5\Projects\Bpl;C:\PROGRA~1\Borland\CBUILDER3\bin;C:\PROGRA~1\Borland\CBUILDER5\bin;C:\PROGRA~1\Borland\CBUILDER\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\WinSCP3\;C:\Program Files\Fichiers communs\GTK\2.0\bin;C:\Tools;C:\Program Files\vPoint_XP;C:\Program Files\Sybase\SQL Anywhere 9\win32;C:\Program Files\Sybase\Shared\win32;C:\Program Files\Sybase\SQL Anywhere 9\drivers;C:\Program Files\Sybase\Shared\Sybase Central 4.3\win32;C:\SuperWabaSDK\SuperWabaSDK\bin;C:\Java\Ant\bin\;c:\JbuilderX\jdk1.4\bin;C:\Java\SuperWabaSDK\qrfSQL\win32;C:\Java\SuperWabaSDK\WExtLib\jni\VC\Release;C:\Java\FirebirdSQL\jaybird.dll;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files\SOTI\MobiControl;;C:\Documents and Settings\Microtec\Mes documents\Borland Studio Projects\Bpl;C:\PROGRA~1\FICHIE~1\ORACLE\BIN
    -Dcom.sun.aas.instanceName=server
    -Dcom.sun.aas.processLauncher=SE
    -cp
    C:/Sun/Creator2ea2/java/lib/tools.jar;C:/Sun/Creator2ea2/SunAppServer8/lib/appserv-rt.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\activation.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\admin-cli.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\appserv-admin.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\appserv-cmp.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\appserv-env.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\appserv-ext.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\appserv-jstl.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\appserv-upgrade.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\commons-launcher.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\commons-logging.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\dom.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\driveradapter.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\j2ee-svc.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\j2ee.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jax-qname.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jaxr-api.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jaxr-impl.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jaxrpc-api.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jaxrpc-impl.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jdic_0_9.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jmxremote.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jmxremote_optional.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jsf-api.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\jsf-impl.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\mail.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\PEtray.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\relaxngDatatype.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\rmissl.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\saaj-api.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\saaj-impl.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\smbase.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\smdb2.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\sminformix.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\smoracle.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\smresource.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\smspy.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\smsqlserver.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\smsybase.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\smutil.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\xalan.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\xercesImpl.jar;C:/Sun/Creator2ea2/SunAppServer8/lib\xsdlib.jar;C:/Sun/Creator2ea2/SunAppServer8/lib/install/applications/jmsra/imqjmsra.jar;C:/Sun/Creator2ea2/SunAppServer8/imq/lib/jaxm-api.jar;C:/Sun/Creator2ea2/SunAppServer8/imq/lib/fscontext.jar;C:/Sun/Creator2ea2/SunAppServer8/lib/ant/lib/ant.jar;C:/Sun/Creator2ea2/SunAppServer8/pointbase/lib/pbclient.jar;C:/Sun/Creator2ea2/SunAppServer8/pointbase/lib/pbembedded.jar
    com.sun.rave.tray.RavePEMain
    start
    display
    native|#]
    *** EXITING ERROR:
    Can't create Java VM
    ***

  • Message Server Will Not Authenticate (Server 4.0)

    I have a clean install of Yosemite and server 4.0 that will soon be going into a small business.  One of the services they want to use is Messages.  I have setup Server pretty much "out of the box" and right now don't even see a need for running a Directory (7 client machines, some only part time), as they really only need Mail, Calendar, Contacts, Messages and some light duty file sharing.
    However, I am getting this error when trying to start Messages on the server itself and attempt to go "online":
    No matter how many times I insert the password, it will not work.  I have a test machine setup as a client and when I try to logon to Messages and go online with a different user account, I get the same error.
    How do I go about fixing this?
    Thanks in advance.
    Ken

    Thank you for helping. Right now this is the only major issue I have with this server!!
    I am using the exact same email address associated with the user account.  On the server itself, it's an "admin@ ...." and on the one client I am testing with it is "Ken@......."
    FYI - right now, I'm running on my home network with an Airport Extreme base station, and two Mini's.  One is the server (10.0.0.90) and one a client machine (10.0.0.91).  The client machine is pointing to the server for DNS.
    Here's a chunk of the Messages log:
    Oct 24 20:25:13 systemsforpublicsafety.com jabberd/sm[3997]: version: jabberd sm 2.3.1-416
    Oct 24 20:25:13 systemsforpublicsafety.com jabberd/sm[3997]: auxpropfunc error no mechanism available
    Oct 24 20:25:13 systemsforpublicsafety.com jabberd/sm[3997]: [systemsforpublicsafety.com] configured
    Oct 24 20:25:13 systemsforpublicsafety.com jabberd/sm[3997]: attempting connection to router at 127.0.0.1, port=5347
    Oct 24 20:25:13 systemsforpublicsafety.com jabberd/router[3998]: [127.0.0.1, port=49502] connect
    Oct 24 20:25:13 systemsforpublicsafety.com jabberd/router[3998]: [127.0.0.1, port=49502] authenticated as jabberd
    Oct 24 20:25:13 systemsforpublicsafety.com jabberd/sm[3997]: connection to router established
    Oct 24 20:25:13 systemsforpublicsafety.com jabberd/router[3998]: [sm] online (bound to 127.0.0.1, port 49502)
    Oct 24 20:25:13 systemsforpublicsafety.com jabberd/sm[3997]: sm ready for sessions
    Oct 24 20:25:13 systemsforpublicsafety.com jabberd/router[3998]: [systemsforpublicsafety.com] online (bound to 127.0.0.1, port 49502)
    Oct 24 20:25:14 systemsforpublicsafety.com jabberd/router[3998]: [127.0.0.1, port=49503] connect
    Oct 24 20:25:14 systemsforpublicsafety.com jabberd/router[3998]: [127.0.0.1, port=49503] authenticated as proxy65.systemsforpublicsafety.com
    Oct 24 20:25:14 systemsforpublicsafety.com jabberd/router[3998]: [proxy65.systemsforpublicsafety.com] online (bound to 127.0.0.1, port 49503)
    Oct 24 20:25:14 systemsforpublicsafety.com jabberd/router[3998]: [127.0.0.1, port=49504] connect
    Oct 24 20:25:14 systemsforpublicsafety.com jabberd/router[3998]: [127.0.0.1, port=49504] authenticated as rooms.systemsforpublicsafety.com
    Oct 24 20:25:14 systemsforpublicsafety.com jabberd/router[3998]: [rooms.systemsforpublicsafety.com] online (bound to 127.0.0.1, port 49504)
    Oct 24 20:30:09 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49953] connect
    Oct 24 20:30:09 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49953] disconnect jid=unbound, packets: 0
    Oct 24 20:30:12 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49954] connect
    Oct 24 20:30:12 systemsforpublicsafety.com jabberd/c2s[3999]: SASL callback for non-existing host: systemsforpublicsafety.com
    Oct 24 20:30:12 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49954] disconnect jid=unbound, packets: 0
    Oct 24 20:30:14 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49955] connect
    Oct 24 20:30:14 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49955] disconnect jid=unbound, packets: 0
    Oct 24 20:30:22 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49956] connect
    Oct 24 20:30:22 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49956] disconnect jid=unbound, packets: 0
    Oct 24 20:30:24 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49957] connect
    Oct 24 20:30:24 systemsforpublicsafety.com jabberd/c2s[3999]: SASL callback for non-existing host: systemsforpublicsafety.com
    Oct 24 20:30:24 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49957] disconnect jid=unbound, packets: 0
    Oct 24 20:30:24 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49958] connect
    Oct 24 20:30:24 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49958] disconnect jid=unbound, packets: 0
    Oct 24 20:30:26 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49959] connect
    Oct 24 20:30:26 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49959] disconnect jid=unbound, packets: 0
    Oct 24 20:30:31 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49960] connect
    Oct 24 20:30:31 systemsforpublicsafety.com jabberd/c2s[3999]: SASL callback for non-existing host: systemsforpublicsafety.com
    Oct 24 20:30:31 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49960] disconnect jid=unbound, packets: 0
    Oct 24 20:30:33 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49961] connect
    Oct 24 20:30:33 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49961] disconnect jid=unbound, packets: 0
    Oct 24 20:30:39 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49963] connect
    Oct 24 20:30:39 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49963] disconnect jid=unbound, packets: 0
    Oct 24 20:30:41 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49964] connect
    Oct 24 20:30:41 systemsforpublicsafety.com jabberd/c2s[3999]: SASL callback for non-existing host: systemsforpublicsafety.com
    Oct 24 20:30:41 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=49964] disconnect jid=unbound, packets: 0
    Oct 24 20:35:09 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50001] connect
    Oct 24 20:35:09 systemsforpublicsafety.com jabberd/c2s[3999]: SASL callback for non-existing host: systemsforpublicsafety.com
    Oct 24 20:35:09 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50001] disconnect jid=unbound, packets: 0
    Oct 24 20:35:11 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50002] connect
    Oct 24 20:35:11 systemsforpublicsafety.com jabberd/c2s[3999]: SASL callback for non-existing host: systemsforpublicsafety.com
    Oct 24 20:35:11 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50002] disconnect jid=unbound, packets: 0
    Oct 24 20:35:25 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50004] connect
    Oct 24 20:35:25 systemsforpublicsafety.com jabberd/c2s[3999]: SASL callback for non-existing host: systemsforpublicsafety.com
    Oct 24 20:35:25 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50004] disconnect jid=unbound, packets: 0
    Oct 24 20:35:27 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50005] connect
    Oct 24 20:35:27 systemsforpublicsafety.com jabberd/c2s[3999]: SASL callback for non-existing host: systemsforpublicsafety.com
    Oct 24 20:35:27 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50005] disconnect jid=unbound, packets: 0
    Oct 24 20:35:27 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50006] connect
    Oct 24 20:35:27 systemsforpublicsafety.com jabberd/c2s[3999]: SASL callback for non-existing host: systemsforpublicsafety.com
    Oct 24 20:35:27 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50006] disconnect jid=unbound, packets: 0
    Oct 24 20:43:12 systemsforpublicsafety.com servermgr_jabber[738]: idle exit
    Oct 24 20:43:12 systemsforpublicsafety.com ServerEventsDaemon[1899]: Dispatcher: servermgr_jabber plugin disconnected
    Oct 24 20:43:12 systemsforpublicsafety.com Server[593]: Dispatcher: servermgr_jabber plugin disconnected
    Oct 24 20:48:56 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50128] connect
    Oct 24 20:48:56 systemsforpublicsafety.com jabberd/c2s[3999]: SASL callback for non-existing host: systemsforpublicsafety.com
    Oct 24 20:48:56 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50128] disconnect jid=unbound, packets: 0
    Oct 24 20:48:58 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50129] connect
    Oct 24 20:48:58 systemsforpublicsafety.com jabberd/c2s[3999]: SASL callback for non-existing host: systemsforpublicsafety.com
    Oct 24 20:48:58 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50129] disconnect jid=unbound, packets: 0
    Oct 24 20:49:13 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50131] connect
    Oct 24 20:49:13 systemsforpublicsafety.com jabberd/c2s[3999]: SASL callback for non-existing host: systemsforpublicsafety.com
    Oct 24 20:49:13 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50131] disconnect jid=unbound, packets: 0
    Oct 24 20:49:15 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50132] connect
    Oct 24 20:49:15 systemsforpublicsafety.com jabberd/c2s[3999]: SASL callback for non-existing host: systemsforpublicsafety.com
    Oct 24 20:49:15 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50132] disconnect jid=unbound, packets: 0
    Oct 24 20:51:08 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50137] connect
    Oct 24 20:51:08 systemsforpublicsafety.com jabberd/c2s[3999]: SASL callback for non-existing host: systemsforpublicsafety.com
    Oct 24 20:51:08 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50137] disconnect jid=unbound, packets: 0
    Oct 24 20:51:15 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50138] connect
    Oct 24 20:51:15 systemsforpublicsafety.com jabberd/c2s[3999]: SASL callback for non-existing host: systemsforpublicsafety.com
    Oct 24 20:51:15 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50138] disconnect jid=unbound, packets: 0
    Oct 24 20:51:24 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50140] connect
    Oct 24 20:51:24 systemsforpublicsafety.com jabberd/c2s[3999]: SASL callback for non-existing host: systemsforpublicsafety.com
    Oct 24 20:51:24 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50140] disconnect jid=unbound, packets: 0
    Oct 24 20:51:26 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50141] connect
    Oct 24 20:51:26 systemsforpublicsafety.com jabberd/c2s[3999]: SASL callback for non-existing host: systemsforpublicsafety.com
    Oct 24 20:51:26 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50141] disconnect jid=unbound, packets: 0
    Oct 24 20:51:26 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50142] connect
    Oct 24 20:51:26 systemsforpublicsafety.com jabberd/c2s[3999]: SASL callback for non-existing host: systemsforpublicsafety.com
    Oct 24 20:51:26 systemsforpublicsafety.com jabberd/c2s[3999]: [9] [::ffff:10.0.0.90, port=50142] disconnect jid=unbound, packets: 0
    I am a little suspicious that this may be connected somehow to using a self-signed certificate vs a purchased one.  I have been getting a lot of warnings on the client machine about being "untrusted".
    Thanks again.
    Ken

  • Managed server will not start

    I have a new WebLogic 10 server and none of the new app servers will start. Gets the message "the Node Manager associated with machine sitportal1 is not reachable.
    All of the servers selected are currently in a state which is incompatible with this operation or are not associated with a running Node Manager or you are not authorized to perform the action requested. No action will be performed. " When I check the node manager logs (node manager service IS running) it has the error lsited below. I found this solution but not sure how to check or verify it. *Solution:
    It could be that the CA certificates sent to the server are being shown in the wrong order for the chain. Review the CAs and see if the order such as Public, Intermediate, Root CA is respected. *
    Any guidance would be appreciated and points awarded. Thanks
    Dec 23, 2008 2:46:59 PM> <Warning> <Uncaught exception in server handler: javax.net.ssl.SSLKeyException: [Security:090482]BAD_CERTIFICATE alert was received from 127.0.0.1 - 127.0.0.1. Check the peer to determine why it rejected the certificate chain (trusted CA configuration, hostname verification). SSL debug tracing may be required to determine the exact reason the certificate was rejected.>
    javax.net.ssl.SSLKeyException: [Security:090482]BAD_CERTIFICATE alert was received from 127.0.0.1 - 127.0.0.1. Check the peer to determine why it rejected the certificate chain (trusted CA configuration, hostname verification). SSL debug tracing may be required to determine the exact reason the certificate was rejected.
         at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireException(Unknown Source)
         at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireAlertReceived(Unknown Source)
         at com.certicom.tls.record.alert.AlertHandler.handle(Unknown Source)
         at com.certicom.tls.record.alert.AlertHandler.handleAlertMessages(Unknown Source)
         at com.certicom.tls.record.MessageInterpreter.interpretContent(Unknown Source)
         at com.certicom.tls.record.MessageInterpreter.decryptMessage(Unknown Source)
         at com.certicom.tls.record.ReadHandler.processRecord(Unknown Source)
         at com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)
         at com.certicom.tls.record.ReadHandler.readUntilHandshakeComplete(Unknown Source)
         at com.certicom.tls.interfaceimpl.TLSConnectionImpl.completeHandshake(Unknown Source)
         at com.certicom.tls.record.ReadHandler.read(Unknown Source)
         at com.certicom.io.InputSSLIOStreamWrapper.read(Unknown Source)
         at sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:411)
         at sun.nio.cs.StreamDecoder$CharsetSD.implRead(StreamDecoder.java:453)
         at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:183)
         at java.io.InputStreamReader.read(InputStreamReader.java:167)
         at java.io.BufferedReader.fill(BufferedReader.java:136)
         at java.io.BufferedReader.readLine(BufferedReader.java:299)
         at java.io.BufferedReader.readLine(BufferedReader.java:362)
         at weblogic.nodemanager.server.Handler.run(Handler.java:66)
         at java.lang.Thread.run(Thread.java:595)

    Hii
    This is a Common Error.
    1.Make sure your Admin Server is in Running mode.
    2.Make sure that your Managed Server is in shutdown mode.
    3.Make sure that your domain mapping is correct.
    4.Any domain created before creation of Node Manager Service will not be accessible via node Manager(even after restarting node manager), solution is to run the WLST command “nmEnroll” to enroll that domain with the Node Manager.
    Here are the steps to do "nmEnroll".
    Example:
    cd $BEA_HOME\user_projects\domains\<domain_name>\bin
    setDomainEnv.cmd
    java weblogic.WLST
    wls> connect(‘weblogic’,'weblogic’,
    ‘t3://mymachine.mydomain:7001′)
    wls> nmEnroll(‘C:\bea\user_projects\domains/<domainName>’, ‘C:\bea\wlserver_<version>/common/nodemanager’)
    5.Start your Node Manager and look for the logs where it specifies the Domain Mapping Path.
    6.Verify the domain path.
    7.Now Start your Managed Server.

  • Personal Web Sharing server will not start.

    I cannot start Personal Web Sharing. Have tried to install apache2, mysql and php from here: http://www.serverlogistics.com/downloads.php and since then it would not start.
    What can I do? Is there anyway I can reverse to old settings from a sertain date like you can on a windows system?
    If I try to start Apache in Termianl I get this:
    vayu-robins-computer:~ vayu$ /usr/sbin/apachectl start
    Processing config directory: /private/etc/httpd/users/*.conf
    Processing config file: /private/etc/httpd/users/+entropy-php.conf
    [Fri Jul 21 12:27:18 2006] [warn] module mod_php5.c is already added, skipping
    Processing config file: /private/etc/httpd/users/postgres.conf
    Processing config file: /private/etc/httpd/users/vayu.conf
    fopen: Permission denied
    httpd: could not open error log file /private/var/log/httpd/error_log.
    /usr/sbin/apachectl start: httpd could not be started
    I hope this will help.
    Thanks
    Vayu
    Imac Intel Core Duo   Mac OS X (10.4.7)  

    If you're just trying to get the default install to work again, we'll need to determine if the ServerLogistics install you said you tried has overwritten the system files, or set itself up separately.
    To see what version is installed in the default location, from the Terminal run:
    /usr/sbin/httpd -v
    This will report something like:
    Server version: Apache/1.3.33 (Darwin)
    Second, you can test your config files to see if they are all valid by running:
    /sbin/apachectl configtest
    This is what Apache does when it starts up, but without changing the process status. You'll be looking for a "Syntax OK" at the end of the output, or else specific error messages in your config files.
    Finally, you can check whether you have an Apache process already running a few different ways. One is to look in the /var/run directory for a 'httpd.pid' file, which will contain the process ID of any running Apache process. The other is to search the active process list:
    ps -ax | grep httpd
    If you see any matches other than your own 'grep httpd' command in the list, you may already have an Apache running and thus be unable to get another one to start via the Personal Web Sharing control panel.
    Again, the remedy would be clearer with some input from the ServerLogistics install documentation - what files were put where, how do they interact (if at all) with Apple's versions, etc.
    PowerBook G4, et al.   Mac OS X (10.4.7)  

  • Web server will not start due to RSA Securid errors

    We have an iPlanet 4.1 Service Pack 14 web server that was running fine until last friday. When we go to start the server we get the following error:
    Status:
    [https-ivpnas]: start failed. (2: unknown early startup error)
    [https-ivpnas]: conf_init: Error running init function securidinit: unknown error
    [https-ivpnas]: server exit: status 1
    Error
    An error occurred during startup.
    The server https-ivpnas was not started.
    The error log also contains this additional error:
    [27/Sep/2004:10:06:57] info ( 4164): successful server startup
    [27/Sep/2004:10:06:57] info ( 4164): iPlanet-WebServer-Enterprise/4.1SP14 BB1-01/15/2004 13:04
    [27/Sep/2004:10:06:58] catastrophe ( 4164): securidauth reports: InitAceClient returned FALSE
    This website uses RSA Securid for authentication. We have contacted RSA and they think it is a webserver problem. Any insight anyone can provide would be great. Thanks!

    The error message is generated by the RSA plugin, not Web Server. RSA should be able to help diagnose the problem further.

  • Deployment Server Will not Start

    I don't know what happened. I was working through the tutorials and had just finished populating the database. When I tried to run the example again I get the error The Sun Java Application Server 8.2 could not start. Possible reasons include: Port Conflicts, Incorrect Server Configuration, Corrupted Deployed Applications.
    I've uninstalled/re-installed about 4 different times and nothing will run.
    I've never had an IDE just stop working before, I've tried to divine the logs but I'm clueless. I would appreciate any help. I think that this platform could be very useful, but I can't understand why it is so fragile.

    The issue most likely might be port conflict
    - First check if the port conflicts. See the following FAQ for resolving port conflict issue "FAQs � Working with Deployment Servers"
    http://developers.sun.com/jscreator/reference/faqs/technical/depsrvs/index.jsp
    Also useful FAQ (same url as above):
    Where do I look for log file information for the Creator IDE or the deployment servers?

  • CF Server will not start on Apache

    I have been running the development version of CF8 successfully on Apache/MacOSX for over 2 years, and suddenly it won't start anymore.  At the terminal window I enter sudo /Applications/Coldfusion8/bin/coldfusion start.  I get a message saying the CF server has started, but when I try to run an app or use the CF Administrator, I get the following message, as if the server were not running.
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.

    You may want to look at your connector and see if it is still conifgured correctly.

  • Logitech Media Server will not starts since OS update

    Hi All
    Updated to OS 10.10 during the week and since then my Logitech server won't start. I click start, in system preferences and in just 2 or 3 seconds it stops again. Downloaded latest Logitech server but still no use.
    Any idea?
    Cheers
    Jonna

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen. Click the Clear Display icon in the toolbar. Then take one of the actions that you're having trouble with. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • IChat server will not start

    For reasons unknown, our server kernel panicked and had to be restarted. This machine is an OD replica. Since that time, we have not been able to restart iChat server. All other services appear to be working correctly. iChat was working without any problems before the restart. When I click the "Start iChat" button in Server Admin, the wheel spins for a minute or so, and then quits without starting the service.
    A "sudo changeip -checkhostname" returns this:
    Primary address = 192.168.2.100
    Current HostName = day-server.applesales.com
    DNS HostName = day-server.applesales.com
    The names match. There is nothing to change.
    dirserv:success = "success"
    DNS is set up properly.
    When I attempt to change any settings for the iChat service, the panel in Server Admin turns gray when I press "Save" and remains inactive until I click on another service and then click back to iChat. None of the server settings are changed.
    Here are the entries from the system log during the time when the iChat service is attempting to start:
    Mar 2 14:30:40 day-server servermgrd[83]: servermgr_jabber: STARTING UP iChat Server.
    Mar 2 14:30:40 day-server servermgrd[83]: servermgr_jabber[N]: waiting for jabberd to finish startup...
    Mar 2 14:30:40 day-server jabberd/sm[9307]: starting up
    Mar 2 14:30:40 day-server jabberd/router[9308]: starting up
    Mar 2 14:30:40 day-server jabberd/router[9308]: loaded user table (1 users)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: id: day-server.local
    Mar 2 14:30:40 day-server jabberd/router[9308]: loaded filters (0 rules)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: initialised storage driver 'sqlite'
    Mar 2 14:30:40 day-server jabberd/sm[9307]: modules search path: /var/jabberd/modules/jabberd2
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'iq-last' added to chain 'sess-end' (order 0 index 0 seq 0)
    Mar 2 14:30:40 day-server jabberd/resolver[9306]: starting up
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'validate' added to chain 'in-sess' (order 0 index 1 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'privacy' added to chain 'in-sess' (order 1 index 2 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'roster' added to chain 'in-sess' (order 2 index 3 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'vacation' added to chain 'in-sess' (order 3 index 4 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'iq-vcard' added to chain 'in-sess' (order 4 index 5 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'iq-ping' added to chain 'in-sess' (order 5 index 6 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'iq-private' added to chain 'in-sess' (order 6 index 7 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'disco' added to chain 'in-sess' (order 7 index 8 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'amp' added to chain 'in-sess' (order 8 index 9 seq 0)
    Mar 2 14:30:40 day-server jabberd/router[9308]: [127.0.0.1, port=5347] listening for incoming connections
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'offline' added to chain 'in-sess' (order 9 index 10 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'announce' added to chain 'in-sess' (order 10 index 11 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'presence' added to chain 'in-sess' (order 11 index 12 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'deliver' added to chain 'in-sess' (order 12 index 13 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'session' added to chain 'in-router' (order 0 index 14 seq 0)
    Mar 2 14:30:40 day-server jabberd/resolver[9306]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'validate' added to chain 'in-router' (order 1 index 1 seq 1)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'presence' added to chain 'in-router' (order 2 index 12 seq 1)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'privacy' added to chain 'in-router' (order 3 index 2 seq 1)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'privacy' added to chain 'out-router' (order 0 index 2 seq 2)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'iq-last' added to chain 'pkt-sm' (order 0 index 0 seq 1)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'iq-ping' added to chain 'pkt-sm' (order 1 index 6 seq 1)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'iq-time' added to chain 'pkt-sm' (order 2 index 15 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'iq-version' added to chain 'pkt-sm' (order 3 index 16 seq 0)
    Mar 2 14:30:40 day-server jabberd/router[9308]: [127.0.0.1, port=50953] connect
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'amp' added to chain 'pkt-sm' (order 4 index 9 seq 1)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'disco' added to chain 'pkt-sm' (order 5 index 8 seq 1)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'announce' added to chain 'pkt-sm' (order 6 index 11 seq 1)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'help' added to chain 'pkt-sm' (order 7 index 17 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'echo' added to chain 'pkt-sm' (order 8 index 18 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'roster' added to chain 'pkt-user' (order 0 index 3 seq 1)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'presence' added to chain 'pkt-user' (order 1 index 12 seq 2)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'iq-vcard' added to chain 'pkt-user' (order 2 index 5 seq 1)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'amp' added to chain 'pkt-user' (order 3 index 9 seq 2)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'deliver' added to chain 'pkt-user' (order 4 index 13 seq 1)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'vacation' added to chain 'pkt-user' (order 5 index 4 seq 1)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'offline' added to chain 'pkt-user' (order 6 index 10 seq 1)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'disco-publish' added to chain 'pkt-user' (order 7 index 19 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'iq-last' added to chain 'pkt-user' (order 8 index 0 seq 2)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'session' added to chain 'pkt-router' (order 0 index 14 seq 1)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'disco' added to chain 'pkt-router' (order 1 index 8 seq 2)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'active' added to chain 'user-load' (order 0 index 20 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'roster' added to chain 'user-load' (order 1 index 3 seq 2)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'roster-publish' added to chain 'user-load' (order 2 index 21 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'privacy' added to chain 'user-load' (order 3 index 2 seq 3)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'disco-publish' added to chain 'user-load' (order 4 index 19 seq 1)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'vacation' added to chain 'user-load' (order 5 index 4 seq 2)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'active' added to chain 'user-create' (order 0 index 20 seq 1)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'template-roster' added to chain 'user-create' (order 1 index 22 seq 0)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'active' added to chain 'user-delete' (order 0 index 20 seq 2)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'announce' added to chain 'user-delete' (order 1 index 11 seq 2)
    Mar 2 14:30:40 day-server jabberd/router[9308]: [127.0.0.1, port=50954] connect
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'disco-publish' added to chain 'user-delete' (order 2 index 19 seq 2)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'offline' added to chain 'user-delete' (order 3 index 10 seq 2)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'privacy' added to chain 'user-delete' (order 4 index 2 seq 4)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'roster' added to chain 'user-delete' (order 5 index 3 seq 3)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'vacation' added to chain 'user-delete' (order 6 index 4 seq 3)
    Mar 2 14:30:40 day-server jabberd/router[9308]: [127.0.0.1, port=50954] authenticated as conference.day-server.applesales.com
    Mar 2 14:30:40 day-server jabberd/router[9308]: [conference.day-server.applesales.com] online (bound to 127.0.0.1, port 50954)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'iq-last' added to chain 'user-delete' (order 7 index 0 seq 3)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'iq-private' added to chain 'user-delete' (order 8 index 7 seq 1)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: module 'iq-vcard' added to chain 'user-delete' (order 9 index 5 seq 2)
    Mar 2 14:30:40 day-server jabberd/sm[9307]: version: jabberd sm 2.1.24.1-326.1
    Mar 2 14:30:40 day-server jabberd/s2s[9311]: starting up (interval=60, queue=60, keepalive=0, idle=86400)
    Mar 2 14:30:40 day-server jabberd/c2s[9309]: starting up
    Mar 2 14:30:40 day-server jabberd/c2s[9309]: modules search path: /var/jabberd/modules/jabberd2
    Mar 2 14:30:40 day-server jabberd/c2s[9309]: initialized auth module 'sqlite'
    Mar 2 14:30:40 day-server jabberd/sm[9307]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:30:40 day-server jabberd/router[9308]: [127.0.0.1, port=50953] authenticated as jabberd
    Mar 2 14:30:40 day-server jabberd/router[9308]: [127.0.0.1, port=50955] connect
    Mar 2 14:30:40 day-server jabberd/router[9308]: [127.0.0.1, port=50955] authenticated as jabberd
    Mar 2 14:30:40 day-server jabberd/c2s[9309]: no local.id configured, aborting
    Mar 2 14:30:40 day-server jabberd/router[9308]: shutting down
    Mar 2 14:30:40 day-server jabberd/router[9308]: [127.0.0.1, port=50953] disconnect
    Mar 2 14:30:40 day-server jabberd/s2s[9311]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:30:40 day-server jabberd/s2s[9311]: shutting down
    Mar 2 14:30:40 day-server jabberd/s2s[9311]: connection to router closed
    Mar 2 14:30:40 day-server jabberd/resolver[9306]: connection to router established
    Mar 2 14:30:40 day-server jabberd/resolver[9306]: shutting down
    Mar 2 14:30:40 day-server jabberd/sm[9307]: connection to router established
    Mar 2 14:30:40 day-server jabberd/sm[9307]: shutting down
    Mar 2 14:30:41 day-server jabberd/router[9308]: [127.0.0.1, port=50954] disconnect
    Mar 2 14:30:41 day-server jabberd/router[9308]: [conference.day-server.applesales.com] offline
    Mar 2 14:30:42 day-server jabberd/router[9308]: [127.0.0.1, port=50955] disconnect
    Mar 2 14:30:45 day-server org.jabber.jabberd[9305]: ERROR: c2s died. Shutting down server.
    Mar 2 14:30:45 day-server com.apple.launchd[1] (org.jabber.jabberd): Throttling respawn: Will start in 5 seconds
    Mar 2 14:30:50 day-server jabberd/router[9315]: starting up
    Mar 2 14:30:50 day-server jabberd/router[9315]: loaded user table (1 users)
    Mar 2 14:30:50 day-server jabberd/router[9315]: loaded filters (0 rules)
    Mar 2 14:30:50 day-server jabberd/resolver[9313]: starting up
    Mar 2 14:30:50 day-server jabberd/sm[9314]: starting up
    Mar 2 14:30:50 day-server jabberd/router[9315]: [127.0.0.1, port=5347] listening for incoming connections
    Mar 2 14:30:50 day-server jabberd/sm[9314]: id: day-server.local
    Mar 2 14:30:50 day-server jabberd/s2s[9318]: starting up (interval=60, queue=60, keepalive=0, idle=86400)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: initialised storage driver 'sqlite'
    Mar 2 14:30:50 day-server jabberd/sm[9314]: modules search path: /var/jabberd/modules/jabberd2
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'iq-last' added to chain 'sess-end' (order 0 index 0 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'validate' added to chain 'in-sess' (order 0 index 1 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'privacy' added to chain 'in-sess' (order 1 index 2 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'roster' added to chain 'in-sess' (order 2 index 3 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'vacation' added to chain 'in-sess' (order 3 index 4 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'iq-vcard' added to chain 'in-sess' (order 4 index 5 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'iq-ping' added to chain 'in-sess' (order 5 index 6 seq 0)
    Mar 2 14:30:50 day-server jabberd/resolver[9313]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'iq-private' added to chain 'in-sess' (order 6 index 7 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'disco' added to chain 'in-sess' (order 7 index 8 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'amp' added to chain 'in-sess' (order 8 index 9 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'offline' added to chain 'in-sess' (order 9 index 10 seq 0)
    Mar 2 14:30:50 day-server jabberd/router[9315]: [127.0.0.1, port=50958] connect
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'announce' added to chain 'in-sess' (order 10 index 11 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'presence' added to chain 'in-sess' (order 11 index 12 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'deliver' added to chain 'in-sess' (order 12 index 13 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'session' added to chain 'in-router' (order 0 index 14 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'validate' added to chain 'in-router' (order 1 index 1 seq 1)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'presence' added to chain 'in-router' (order 2 index 12 seq 1)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'privacy' added to chain 'in-router' (order 3 index 2 seq 1)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'privacy' added to chain 'out-router' (order 0 index 2 seq 2)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'iq-last' added to chain 'pkt-sm' (order 0 index 0 seq 1)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'iq-ping' added to chain 'pkt-sm' (order 1 index 6 seq 1)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'iq-time' added to chain 'pkt-sm' (order 2 index 15 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'iq-version' added to chain 'pkt-sm' (order 3 index 16 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'amp' added to chain 'pkt-sm' (order 4 index 9 seq 1)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'disco' added to chain 'pkt-sm' (order 5 index 8 seq 1)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'announce' added to chain 'pkt-sm' (order 6 index 11 seq 1)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'help' added to chain 'pkt-sm' (order 7 index 17 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'echo' added to chain 'pkt-sm' (order 8 index 18 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'roster' added to chain 'pkt-user' (order 0 index 3 seq 1)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'presence' added to chain 'pkt-user' (order 1 index 12 seq 2)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'iq-vcard' added to chain 'pkt-user' (order 2 index 5 seq 1)
    Mar 2 14:30:50 day-server jabberd/s2s[9318]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'amp' added to chain 'pkt-user' (order 3 index 9 seq 2)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'deliver' added to chain 'pkt-user' (order 4 index 13 seq 1)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'vacation' added to chain 'pkt-user' (order 5 index 4 seq 1)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'offline' added to chain 'pkt-user' (order 6 index 10 seq 1)
    Mar 2 14:30:50 day-server jabberd/router[9315]: [127.0.0.1, port=50959] connect
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'disco-publish' added to chain 'pkt-user' (order 7 index 19 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'iq-last' added to chain 'pkt-user' (order 8 index 0 seq 2)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'session' added to chain 'pkt-router' (order 0 index 14 seq 1)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'disco' added to chain 'pkt-router' (order 1 index 8 seq 2)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'active' added to chain 'user-load' (order 0 index 20 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'roster' added to chain 'user-load' (order 1 index 3 seq 2)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'roster-publish' added to chain 'user-load' (order 2 index 21 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'privacy' added to chain 'user-load' (order 3 index 2 seq 3)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'disco-publish' added to chain 'user-load' (order 4 index 19 seq 1)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'vacation' added to chain 'user-load' (order 5 index 4 seq 2)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'active' added to chain 'user-create' (order 0 index 20 seq 1)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'template-roster' added to chain 'user-create' (order 1 index 22 seq 0)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'active' added to chain 'user-delete' (order 0 index 20 seq 2)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'announce' added to chain 'user-delete' (order 1 index 11 seq 2)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'disco-publish' added to chain 'user-delete' (order 2 index 19 seq 2)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'offline' added to chain 'user-delete' (order 3 index 10 seq 2)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'privacy' added to chain 'user-delete' (order 4 index 2 seq 4)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'roster' added to chain 'user-delete' (order 5 index 3 seq 3)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'vacation' added to chain 'user-delete' (order 6 index 4 seq 3)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'iq-last' added to chain 'user-delete' (order 7 index 0 seq 3)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'iq-private' added to chain 'user-delete' (order 8 index 7 seq 1)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: module 'iq-vcard' added to chain 'user-delete' (order 9 index 5 seq 2)
    Mar 2 14:30:50 day-server jabberd/sm[9314]: version: jabberd sm 2.1.24.1-326.1
    Mar 2 14:30:50 day-server jabberd/c2s[9316]: starting up
    Mar 2 14:30:50 day-server jabberd/router[9315]: [127.0.0.1, port=50958] authenticated as jabberd
    Mar 2 14:30:50 day-server jabberd/c2s[9316]: modules search path: /var/jabberd/modules/jabberd2
    Mar 2 14:30:50 day-server jabberd/c2s[9316]: initialized auth module 'sqlite'
    Mar 2 14:30:50 day-server jabberd/router[9315]: [127.0.0.1, port=50959] authenticated as jabberd
    Mar 2 14:30:50 day-server jabberd/sm[9314]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:30:50 day-server jabberd/router[9315]: [127.0.0.1, port=50960] connect
    Mar 2 14:30:50 day-server jabberd/c2s[9316]: no local.id configured, aborting
    Mar 2 14:30:50 day-server jabberd/router[9315]: shutting down
    Mar 2 14:30:50 day-server jabberd/router[9315]: [127.0.0.1, port=50960] disconnect
    Mar 2 14:30:50 day-server jabberd/sm[9314]: shutting down
    Mar 2 14:30:50 day-server jabberd/resolver[9313]: connection to router established
    Mar 2 14:30:50 day-server jabberd/resolver[9313]: shutting down
    Mar 2 14:30:50 day-server jabberd/s2s[9318]: connection to router established
    Mar 2 14:30:50 day-server jabberd/s2s[9318]: shutting down
    Mar 2 14:30:50 day-server jabberd/s2s[9318]: connection to router closed
    Mar 2 14:30:51 day-server jabberd/router[9315]: [127.0.0.1, port=50958] disconnect
    Mar 2 14:30:52 day-server jabberd/router[9315]: [127.0.0.1, port=50959] disconnect
    Mar 2 14:30:55 day-server org.jabber.jabberd[9312]: ERROR: c2s died. Shutting down server.
    Mar 2 14:30:55 day-server com.apple.launchd[1] (org.jabber.jabberd): Throttling respawn: Will start in 5 seconds
    Mar 2 14:31:00 day-server jabberd/router[9325]: starting up
    Mar 2 14:31:00 day-server jabberd/router[9325]: loaded user table (1 users)
    Mar 2 14:31:00 day-server jabberd/router[9325]: loaded filters (0 rules)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: starting up
    Mar 2 14:31:00 day-server jabberd/router[9325]: [127.0.0.1, port=5347] listening for incoming connections
    Mar 2 14:31:00 day-server jabberd/sm[9324]: id: day-server.local
    Mar 2 14:31:00 day-server jabberd/router[9325]: [127.0.0.1, port=50974] connect
    Mar 2 14:31:00 day-server jabberd/sm[9324]: initialised storage driver 'sqlite'
    Mar 2 14:31:00 day-server jabberd/sm[9324]: modules search path: /var/jabberd/modules/jabberd2
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'iq-last' added to chain 'sess-end' (order 0 index 0 seq 0)
    Mar 2 14:31:00 day-server jabberd/router[9325]: [127.0.0.1, port=50974] authenticated as conference.day-server.applesales.com
    Mar 2 14:31:00 day-server jabberd/router[9325]: [conference.day-server.applesales.com] online (bound to 127.0.0.1, port 50974)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'validate' added to chain 'in-sess' (order 0 index 1 seq 0)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'privacy' added to chain 'in-sess' (order 1 index 2 seq 0)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'roster' added to chain 'in-sess' (order 2 index 3 seq 0)
    Mar 2 14:31:00 day-server jabberd/s2s[9328]: starting up (interval=60, queue=60, keepalive=0, idle=86400)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'vacation' added to chain 'in-sess' (order 3 index 4 seq 0)
    Mar 2 14:31:00 day-server jabberd/resolver[9323]: starting up
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'iq-vcard' added to chain 'in-sess' (order 4 index 5 seq 0)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'iq-ping' added to chain 'in-sess' (order 5 index 6 seq 0)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'iq-private' added to chain 'in-sess' (order 6 index 7 seq 0)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'disco' added to chain 'in-sess' (order 7 index 8 seq 0)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'amp' added to chain 'in-sess' (order 8 index 9 seq 0)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'offline' added to chain 'in-sess' (order 9 index 10 seq 0)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'announce' added to chain 'in-sess' (order 10 index 11 seq 0)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'presence' added to chain 'in-sess' (order 11 index 12 seq 0)
    Mar 2 14:31:00 day-server jabberd/c2s[9326]: starting up
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'deliver' added to chain 'in-sess' (order 12 index 13 seq 0)
    Mar 2 14:31:00 day-server jabberd/c2s[9326]: modules search path: /var/jabberd/modules/jabberd2
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'session' added to chain 'in-router' (order 0 index 14 seq 0)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'validate' added to chain 'in-router' (order 1 index 1 seq 1)
    Mar 2 14:31:00 day-server jabberd/c2s[9326]: initialized auth module 'sqlite'
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'presence' added to chain 'in-router' (order 2 index 12 seq 1)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'privacy' added to chain 'in-router' (order 3 index 2 seq 1)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'privacy' added to chain 'out-router' (order 0 index 2 seq 2)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'iq-last' added to chain 'pkt-sm' (order 0 index 0 seq 1)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'iq-ping' added to chain 'pkt-sm' (order 1 index 6 seq 1)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'iq-time' added to chain 'pkt-sm' (order 2 index 15 seq 0)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'iq-version' added to chain 'pkt-sm' (order 3 index 16 seq 0)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'amp' added to chain 'pkt-sm' (order 4 index 9 seq 1)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'disco' added to chain 'pkt-sm' (order 5 index 8 seq 1)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'announce' added to chain 'pkt-sm' (order 6 index 11 seq 1)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'help' added to chain 'pkt-sm' (order 7 index 17 seq 0)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'echo' added to chain 'pkt-sm' (order 8 index 18 seq 0)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'roster' added to chain 'pkt-user' (order 0 index 3 seq 1)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'presence' added to chain 'pkt-user' (order 1 index 12 seq 2)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'iq-vcard' added to chain 'pkt-user' (order 2 index 5 seq 1)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'amp' added to chain 'pkt-user' (order 3 index 9 seq 2)
    Mar 2 14:31:00 day-server jabberd/resolver[9323]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'deliver' added to chain 'pkt-user' (order 4 index 13 seq 1)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'vacation' added to chain 'pkt-user' (order 5 index 4 seq 1)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'offline' added to chain 'pkt-user' (order 6 index 10 seq 1)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'disco-publish' added to chain 'pkt-user' (order 7 index 19 seq 0)
    Mar 2 14:31:00 day-server jabberd/router[9325]: [127.0.0.1, port=50975] connect
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'iq-last' added to chain 'pkt-user' (order 8 index 0 seq 2)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'session' added to chain 'pkt-router' (order 0 index 14 seq 1)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'disco' added to chain 'pkt-router' (order 1 index 8 seq 2)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'active' added to chain 'user-load' (order 0 index 20 seq 0)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'roster' added to chain 'user-load' (order 1 index 3 seq 2)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'roster-publish' added to chain 'user-load' (order 2 index 21 seq 0)
    Mar 2 14:31:00 day-server jabberd/s2s[9328]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'privacy' added to chain 'user-load' (order 3 index 2 seq 3)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'disco-publish' added to chain 'user-load' (order 4 index 19 seq 1)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'vacation' added to chain 'user-load' (order 5 index 4 seq 2)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'active' added to chain 'user-create' (order 0 index 20 seq 1)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'template-roster' added to chain 'user-create' (order 1 index 22 seq 0)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'active' added to chain 'user-delete' (order 0 index 20 seq 2)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'announce' added to chain 'user-delete' (order 1 index 11 seq 2)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'disco-publish' added to chain 'user-delete' (order 2 index 19 seq 2)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'offline' added to chain 'user-delete' (order 3 index 10 seq 2)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'privacy' added to chain 'user-delete' (order 4 index 2 seq 4)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'roster' added to chain 'user-delete' (order 5 index 3 seq 3)
    Mar 2 14:31:00 day-server jabberd/c2s[9326]: no local.id configured, aborting
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'vacation' added to chain 'user-delete' (order 6 index 4 seq 3)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'iq-last' added to chain 'user-delete' (order 7 index 0 seq 3)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'iq-private' added to chain 'user-delete' (order 8 index 7 seq 1)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: module 'iq-vcard' added to chain 'user-delete' (order 9 index 5 seq 2)
    Mar 2 14:31:00 day-server jabberd/sm[9324]: version: jabberd sm 2.1.24.1-326.1
    Mar 2 14:31:00 day-server jabberd/router[9325]: [127.0.0.1, port=50976] connect
    Mar 2 14:31:00 day-server jabberd/router[9325]: shutting down
    Mar 2 14:31:00 day-server jabberd/router[9325]: [127.0.0.1, port=50974] disconnect
    Mar 2 14:31:00 day-server jabberd/router[9325]: [conference.day-server.applesales.com] offline
    Mar 2 14:31:00 day-server jabberd/resolver[9323]: shutting down
    Mar 2 14:31:00 day-server jabberd/s2s[9328]: shutting down
    Mar 2 14:31:00 day-server jabberd/s2s[9328]: connection to router closed
    Mar 2 14:31:00 day-server jabberd/sm[9324]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:31:00 day-server jabberd/sm[9324]: shutting down
    Mar 2 14:31:01 day-server jabberd/router[9325]: [127.0.0.1, port=50975] disconnect
    Mar 2 14:31:02 day-server jabberd/router[9325]: [127.0.0.1, port=50976] disconnect
    Mar 2 14:31:05 day-server org.jabber.jabberd[9322]: ERROR: c2s died. Shutting down server.
    Mar 2 14:31:05 day-server com.apple.launchd[1] (org.jabber.jabberd): Throttling respawn: Will start in 5 seconds
    Mar 2 14:31:10 day-server jabberd/resolver[9331]: starting up
    Mar 2 14:31:10 day-server jabberd/router[9333]: starting up
    Mar 2 14:31:10 day-server jabberd/router[9333]: loaded user table (1 users)
    Mar 2 14:31:10 day-server jabberd/router[9333]: loaded filters (0 rules)
    Mar 2 14:31:10 day-server jabberd/resolver[9331]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:31:10 day-server jabberd/resolver[9331]: [4] [router] write error: Broken pipe (32)
    Mar 2 14:31:10 day-server jabberd/resolver[9331]: connection to router closed
    Mar 2 14:31:10 day-server jabberd/resolver[9331]: attempting reconnect (3 left)
    Mar 2 14:31:10 day-server jabberd/s2s[9336]: starting up (interval=60, queue=60, keepalive=0, idle=86400)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: starting up
    Mar 2 14:31:10 day-server jabberd/router[9333]: [127.0.0.1, port=5347] listening for incoming connections
    Mar 2 14:31:10 day-server jabberd/sm[9332]: id: day-server.local
    Mar 2 14:31:10 day-server jabberd/c2s[9334]: starting up
    Mar 2 14:31:10 day-server jabberd/c2s[9334]: modules search path: /var/jabberd/modules/jabberd2
    Mar 2 14:31:10 day-server jabberd/sm[9332]: initialised storage driver 'sqlite'
    Mar 2 14:31:10 day-server jabberd/sm[9332]: modules search path: /var/jabberd/modules/jabberd2
    Mar 2 14:31:10 day-server jabberd/c2s[9334]: initialized auth module 'sqlite'
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'iq-last' added to chain 'sess-end' (order 0 index 0 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'validate' added to chain 'in-sess' (order 0 index 1 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'privacy' added to chain 'in-sess' (order 1 index 2 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'roster' added to chain 'in-sess' (order 2 index 3 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'vacation' added to chain 'in-sess' (order 3 index 4 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'iq-vcard' added to chain 'in-sess' (order 4 index 5 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'iq-ping' added to chain 'in-sess' (order 5 index 6 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'iq-private' added to chain 'in-sess' (order 6 index 7 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'disco' added to chain 'in-sess' (order 7 index 8 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'amp' added to chain 'in-sess' (order 8 index 9 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'offline' added to chain 'in-sess' (order 9 index 10 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'announce' added to chain 'in-sess' (order 10 index 11 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'presence' added to chain 'in-sess' (order 11 index 12 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'deliver' added to chain 'in-sess' (order 12 index 13 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'session' added to chain 'in-router' (order 0 index 14 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'validate' added to chain 'in-router' (order 1 index 1 seq 1)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'presence' added to chain 'in-router' (order 2 index 12 seq 1)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'privacy' added to chain 'in-router' (order 3 index 2 seq 1)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'privacy' added to chain 'out-router' (order 0 index 2 seq 2)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'iq-last' added to chain 'pkt-sm' (order 0 index 0 seq 1)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'iq-ping' added to chain 'pkt-sm' (order 1 index 6 seq 1)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'iq-time' added to chain 'pkt-sm' (order 2 index 15 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'iq-version' added to chain 'pkt-sm' (order 3 index 16 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'amp' added to chain 'pkt-sm' (order 4 index 9 seq 1)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'disco' added to chain 'pkt-sm' (order 5 index 8 seq 1)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'announce' added to chain 'pkt-sm' (order 6 index 11 seq 1)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'help' added to chain 'pkt-sm' (order 7 index 17 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'echo' added to chain 'pkt-sm' (order 8 index 18 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'roster' added to chain 'pkt-user' (order 0 index 3 seq 1)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'presence' added to chain 'pkt-user' (order 1 index 12 seq 2)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'iq-vcard' added to chain 'pkt-user' (order 2 index 5 seq 1)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'amp' added to chain 'pkt-user' (order 3 index 9 seq 2)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'deliver' added to chain 'pkt-user' (order 4 index 13 seq 1)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'vacation' added to chain 'pkt-user' (order 5 index 4 seq 1)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'offline' added to chain 'pkt-user' (order 6 index 10 seq 1)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'disco-publish' added to chain 'pkt-user' (order 7 index 19 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'iq-last' added to chain 'pkt-user' (order 8 index 0 seq 2)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'session' added to chain 'pkt-router' (order 0 index 14 seq 1)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'disco' added to chain 'pkt-router' (order 1 index 8 seq 2)
    Mar 2 14:31:10 day-server jabberd/s2s[9336]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'active' added to chain 'user-load' (order 0 index 20 seq 0)
    Mar 2 14:31:10 day-server jabberd/router[9333]: [127.0.0.1, port=51007] connect
    Mar 2 14:31:10 day-server jabberd/c2s[9334]: no local.id configured, aborting
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'roster' added to chain 'user-load' (order 1 index 3 seq 2)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'roster-publish' added to chain 'user-load' (order 2 index 21 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'privacy' added to chain 'user-load' (order 3 index 2 seq 3)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'disco-publish' added to chain 'user-load' (order 4 index 19 seq 1)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'vacation' added to chain 'user-load' (order 5 index 4 seq 2)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'active' added to chain 'user-create' (order 0 index 20 seq 1)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'template-roster' added to chain 'user-create' (order 1 index 22 seq 0)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'active' added to chain 'user-delete' (order 0 index 20 seq 2)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'announce' added to chain 'user-delete' (order 1 index 11 seq 2)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'disco-publish' added to chain 'user-delete' (order 2 index 19 seq 2)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'offline' added to chain 'user-delete' (order 3 index 10 seq 2)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'privacy' added to chain 'user-delete' (order 4 index 2 seq 4)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'roster' added to chain 'user-delete' (order 5 index 3 seq 3)
    Mar 2 14:31:10 day-server jabberd/resolver[9331]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'vacation' added to chain 'user-delete' (order 6 index 4 seq 3)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'iq-last' added to chain 'user-delete' (order 7 index 0 seq 3)
    Mar 2 14:31:10 day-server jabberd/resolver[9331]: shutting down
    Mar 2 14:31:10 day-server jabberd/router[9333]: shutting down
    Mar 2 14:31:10 day-server jabberd/router[9333]: [127.0.0.1, port=51007] disconnect
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'iq-private' added to chain 'user-delete' (order 8 index 7 seq 1)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: module 'iq-vcard' added to chain 'user-delete' (order 9 index 5 seq 2)
    Mar 2 14:31:10 day-server jabberd/sm[9332]: version: jabberd sm 2.1.24.1-326.1
    Mar 2 14:31:10 day-server jabberd/s2s[9336]: shutting down
    Mar 2 14:31:10 day-server jabberd/s2s[9336]: connection to router closed
    Mar 2 14:31:10 day-server jabberd/sm[9332]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:31:10 day-server jabberd/sm[9332]: shutting down
    Mar 2 14:31:15 day-server org.jabber.jabberd[9330]: ERROR: c2s died. Shutting down server.
    Mar 2 14:31:15 day-server com.apple.launchd[1] (org.jabber.jabberd): Throttling respawn: Will start in 5 seconds
    Mar 2 14:31:20 day-server jabberd/resolver[9338]: starting up
    Mar 2 14:31:20 day-server jabberd/sm[9339]: starting up
    Mar 2 14:31:20 day-server jabberd/sm[9339]: id: day-server.local
    Mar 2 14:31:20 day-server jabberd/sm[9339]: initialised storage driver 'sqlite'
    Mar 2 14:31:20 day-server jabberd/sm[9339]: modules search path: /var/jabberd/modules/jabberd2
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'iq-last' added to chain 'sess-end' (order 0 index 0 seq 0)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'validate' added to chain 'in-sess' (order 0 index 1 seq 0)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'privacy' added to chain 'in-sess' (order 1 index 2 seq 0)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'roster' added to chain 'in-sess' (order 2 index 3 seq 0)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'vacation' added to chain 'in-sess' (order 3 index 4 seq 0)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'iq-vcard' added to chain 'in-sess' (order 4 index 5 seq 0)
    Mar 2 14:31:20 day-server jabberd/resolver[9338]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'iq-ping' added to chain 'in-sess' (order 5 index 6 seq 0)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'iq-private' added to chain 'in-sess' (order 6 index 7 seq 0)
    Mar 2 14:31:20 day-server jabberd/resolver[9338]: [4] [router] write error: Broken pipe (32)
    Mar 2 14:31:20 day-server jabberd/resolver[9338]: connection to router closed
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'disco' added to chain 'in-sess' (order 7 index 8 seq 0)
    Mar 2 14:31:20 day-server jabberd/resolver[9338]: attempting reconnect (3 left)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'amp' added to chain 'in-sess' (order 8 index 9 seq 0)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'offline' added to chain 'in-sess' (order 9 index 10 seq 0)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'announce' added to chain 'in-sess' (order 10 index 11 seq 0)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'presence' added to chain 'in-sess' (order 11 index 12 seq 0)
    Mar 2 14:31:20 day-server jabberd/c2s[9341]: starting up
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'deliver' added to chain 'in-sess' (order 12 index 13 seq 0)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'session' added to chain 'in-router' (order 0 index 14 seq 0)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'validate' added to chain 'in-router' (order 1 index 1 seq 1)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'presence' added to chain 'in-router' (order 2 index 12 seq 1)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'privacy' added to chain 'in-router' (order 3 index 2 seq 1)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'privacy' added to chain 'out-router' (order 0 index 2 seq 2)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'iq-last' added to chain 'pkt-sm' (order 0 index 0 seq 1)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'iq-ping' added to chain 'pkt-sm' (order 1 index 6 seq 1)
    Mar 2 14:31:20 day-server jabberd/router[9340]: starting up
    Mar 2 14:31:20 day-server jabberd/c2s[9341]: modules search path: /var/jabberd/modules/jabberd2
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'iq-time' added to chain 'pkt-sm' (order 2 index 15 seq 0)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'iq-version' added to chain 'pkt-sm' (order 3 index 16 seq 0)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'amp' added to chain 'pkt-sm' (order 4 index 9 seq 1)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'disco' added to chain 'pkt-sm' (order 5 index 8 seq 1)
    Mar 2 14:31:20 day-server jabberd/c2s[9341]: initialized auth module 'sqlite'
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'announce' added to chain 'pkt-sm' (order 6 index 11 seq 1)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'help' added to chain 'pkt-sm' (order 7 index 17 seq 0)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'echo' added to chain 'pkt-sm' (order 8 index 18 seq 0)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'roster' added to chain 'pkt-user' (order 0 index 3 seq 1)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'presence' added to chain 'pkt-user' (order 1 index 12 seq 2)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'iq-vcard' added to chain 'pkt-user' (order 2 index 5 seq 1)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'amp' added to chain 'pkt-user' (order 3 index 9 seq 2)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'deliver' added to chain 'pkt-user' (order 4 index 13 seq 1)
    Mar 2 14:31:20 day-server jabberd/router[9340]: loaded user table (1 users)
    Mar 2 14:31:20 day-server jabberd/router[9340]: loaded filters (0 rules)
    Mar 2 14:31:20 day-server jabberd/s2s[9343]: starting up (interval=60, queue=60, keepalive=0, idle=86400)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'vacation' added to chain 'pkt-user' (order 5 index 4 seq 1)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'offline' added to chain 'pkt-user' (order 6 index 10 seq 1)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'disco-publish' added to chain 'pkt-user' (order 7 index 19 seq 0)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'iq-last' added to chain 'pkt-user' (order 8 index 0 seq 2)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'session' added to chain 'pkt-router' (order 0 index 14 seq 1)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'disco' added to chain 'pkt-router' (order 1 index 8 seq 2)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'active' added to chain 'user-load' (order 0 index 20 seq 0)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'roster' added to chain 'user-load' (order 1 index 3 seq 2)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'roster-publish' added to chain 'user-load' (order 2 index 21 seq 0)
    Mar 2 14:31:20 day-server jabberd/router[9340]: [127.0.0.1, port=5347] listening for incoming connections
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'privacy' added to chain 'user-load' (order 3 index 2 seq 3)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'disco-publish' added to chain 'user-load' (order 4 index 19 seq 1)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'vacation' added to chain 'user-load' (order 5 index 4 seq 2)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'active' added to chain 'user-create' (order 0 index 20 seq 1)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'template-roster' added to chain 'user-create' (order 1 index 22 seq 0)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'active' added to chain 'user-delete' (order 0 index 20 seq 2)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'announce' added to chain 'user-delete' (order 1 index 11 seq 2)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'disco-publish' added to chain 'user-delete' (order 2 index 19 seq 2)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'offline' added to chain 'user-delete' (order 3 index 10 seq 2)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'privacy' added to chain 'user-delete' (order 4 index 2 seq 4)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'roster' added to chain 'user-delete' (order 5 index 3 seq 3)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'vacation' added to chain 'user-delete' (order 6 index 4 seq 3)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'iq-last' added to chain 'user-delete' (order 7 index 0 seq 3)
    Mar 2 14:31:20 day-server jabberd/c2s[9341]: no local.id configured, aborting
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'iq-private' added to chain 'user-delete' (order 8 index 7 seq 1)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: module 'iq-vcard' added to chain 'user-delete' (order 9 index 5 seq 2)
    Mar 2 14:31:20 day-server jabberd/sm[9339]: version: jabberd sm 2.1.24.1-326.1
    Mar 2 14:31:20 day-server jabberd/s2s[9343]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:31:20 day-server jabberd/s2s[9343]: shutting down
    Mar 2 14:31:20 day-server jabberd/router[9340]: shutting down
    Mar 2 14:31:20 day-server jabberd/s2s[9343]: connection to router closed
    Mar 2 14:31:20 day-server jabberd/resolver[9338]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:31:20 day-server jabberd/resolver[9338]: shutting down
    Mar 2 14:31:20 day-server jabberd/sm[9339]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:31:20 day-server jabberd/sm[9339]: shutting down
    Mar 2 14:31:29 day-server org.jabber.jabberd[9337]: ERROR: c2s died. Shutting down server.
    Mar 2 14:31:29 day-server com.apple.launchd[1] (org.jabber.jabberd): Throttling respawn: Will start in 1 seconds
    Mar 2 14:31:30 day-server jabberd/router[9359]: starting up
    Mar 2 14:31:30 day-server jabberd/router[9359]: loaded user table (1 users)
    Mar 2 14:31:30 day-server jabberd/router[9359]: loaded filters (0 rules)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: starting up
    Mar 2 14:31:30 day-server jabberd/c2s[9360]: starting up
    Mar 2 14:31:30 day-server jabberd/sm[9358]: id: day-server.local
    Mar 2 14:31:30 day-server jabberd/c2s[9360]: modules search path: /var/jabberd/modules/jabberd2
    Mar 2 14:31:30 day-server jabberd/c2s[9360]: initialized auth module 'sqlite'
    Mar 2 14:31:30 day-server jabberd/resolver[9357]: starting up
    Mar 2 14:31:30 day-server jabberd/sm[9358]: initialised storage driver 'sqlite'
    Mar 2 14:31:30 day-server jabberd/sm[9358]: modules search path: /var/jabberd/modules/jabberd2
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'iq-last' added to chain 'sess-end' (order 0 index 0 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'validate' added to chain 'in-sess' (order 0 index 1 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'privacy' added to chain 'in-sess' (order 1 index 2 seq 0)
    Mar 2 14:31:30 day-server jabberd/s2s[9362]: starting up (interval=60, queue=60, keepalive=0, idle=86400)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'roster' added to chain 'in-sess' (order 2 index 3 seq 0)
    Mar 2 14:31:30 day-server jabberd/router[9359]: [127.0.0.1, port=5347] listening for incoming connections
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'vacation' added to chain 'in-sess' (order 3 index 4 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'iq-vcard' added to chain 'in-sess' (order 4 index 5 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'iq-ping' added to chain 'in-sess' (order 5 index 6 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'iq-private' added to chain 'in-sess' (order 6 index 7 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'disco' added to chain 'in-sess' (order 7 index 8 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'amp' added to chain 'in-sess' (order 8 index 9 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'offline' added to chain 'in-sess' (order 9 index 10 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'announce' added to chain 'in-sess' (order 10 index 11 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'presence' added to chain 'in-sess' (order 11 index 12 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'deliver' added to chain 'in-sess' (order 12 index 13 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'session' added to chain 'in-router' (order 0 index 14 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'validate' added to chain 'in-router' (order 1 index 1 seq 1)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'presence' added to chain 'in-router' (order 2 index 12 seq 1)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'privacy' added to chain 'in-router' (order 3 index 2 seq 1)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'privacy' added to chain 'out-router' (order 0 index 2 seq 2)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'iq-last' added to chain 'pkt-sm' (order 0 index 0 seq 1)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'iq-ping' added to chain 'pkt-sm' (order 1 index 6 seq 1)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'iq-time' added to chain 'pkt-sm' (order 2 index 15 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'iq-version' added to chain 'pkt-sm' (order 3 index 16 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'amp' added to chain 'pkt-sm' (order 4 index 9 seq 1)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'disco' added to chain 'pkt-sm' (order 5 index 8 seq 1)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'announce' added to chain 'pkt-sm' (order 6 index 11 seq 1)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'help' added to chain 'pkt-sm' (order 7 index 17 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'echo' added to chain 'pkt-sm' (order 8 index 18 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'roster' added to chain 'pkt-user' (order 0 index 3 seq 1)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'presence' added to chain 'pkt-user' (order 1 index 12 seq 2)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'iq-vcard' added to chain 'pkt-user' (order 2 index 5 seq 1)
    Mar 2 14:31:30 day-server jabberd/c2s[9360]: no local.id configured, aborting
    Mar 2 14:31:30 day-server jabberd/resolver[9357]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:31:30 day-server jabberd/router[9359]: [127.0.0.1, port=51029] connect
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'amp' added to chain 'pkt-user' (order 3 index 9 seq 2)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'deliver' added to chain 'pkt-user' (order 4 index 13 seq 1)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'vacation' added to chain 'pkt-user' (order 5 index 4 seq 1)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'offline' added to chain 'pkt-user' (order 6 index 10 seq 1)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'disco-publish' added to chain 'pkt-user' (order 7 index 19 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'iq-last' added to chain 'pkt-user' (order 8 index 0 seq 2)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'session' added to chain 'pkt-router' (order 0 index 14 seq 1)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'disco' added to chain 'pkt-router' (order 1 index 8 seq 2)
    Mar 2 14:31:30 day-server jabberd/s2s[9362]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'active' added to chain 'user-load' (order 0 index 20 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'roster' added to chain 'user-load' (order 1 index 3 seq 2)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'roster-publish' added to chain 'user-load' (order 2 index 21 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'privacy' added to chain 'user-load' (order 3 index 2 seq 3)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'disco-publish' added to chain 'user-load' (order 4 index 19 seq 1)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'vacation' added to chain 'user-load' (order 5 index 4 seq 2)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'active' added to chain 'user-create' (order 0 index 20 seq 1)
    Mar 2 14:31:30 day-server jabberd/s2s[9362]: shutting down
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'template-roster' added to chain 'user-create' (order 1 index 22 seq 0)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'active' added to chain 'user-delete' (order 0 index 20 seq 2)
    Mar 2 14:31:30 day-server jabberd/s2s[9362]: connection to router closed
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'announce' added to chain 'user-delete' (order 1 index 11 seq 2)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'disco-publish' added to chain 'user-delete' (order 2 index 19 seq 2)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'offline' added to chain 'user-delete' (order 3 index 10 seq 2)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'privacy' added to chain 'user-delete' (order 4 index 2 seq 4)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'roster' added to chain 'user-delete' (order 5 index 3 seq 3)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'vacation' added to chain 'user-delete' (order 6 index 4 seq 3)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'iq-last' added to chain 'user-delete' (order 7 index 0 seq 3)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'iq-private' added to chain 'user-delete' (order 8 index 7 seq 1)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: module 'iq-vcard' added to chain 'user-delete' (order 9 index 5 seq 2)
    Mar 2 14:31:30 day-server jabberd/sm[9358]: version: jabberd sm 2.1.24.1-326.1
    Mar 2 14:31:30 day-server jabberd/router[9359]: [127.0.0.1, port=51030] connect
    Mar 2 14:31:30 day-server jabberd/resolver[9357]: shutting down
    Mar 2 14:31:30 day-server jabberd/router[9359]: shutting down
    Mar 2 14:31:30 day-server jabberd/router[9359]: [127.0.0.1, port=51029] disconnect
    Mar 2 14:31:30 day-server jabberd/sm[9358]: attempting connection to router at 127.0.0.1, port=5347
    Mar 2 14:31:30 day-server jabberd/sm[9358]: shutting down
    Mar 2 14:31:31 day-server jabberd/router[9359]: [127.0.0.1, port=51030] disconnect
    Mar 2 14:31:35 day-server org.jabber.jabberd[9356]: ERROR: c2s died. Shutting down server.
    Mar 2 14:31:35 day-server com.apple.launchd[1] (org.jabber.jabberd): Throttling respawn: Will start in 5 seconds
    Mar 2 14:31:40 day-server servermgrd[83]: servermgr_jabber[E]: Error -- jabberd service failed to start
    Mar 2 14:31:40 day-server servermgrd[83]: servermgr_jabber[W]: some jabberd processes failed to start
    Mar 2 14:31:40 day-server servermgrd[83]: servermgr_jabber[N]: waiting for jabberd to finish shutdown...
    Mar 2 14:31:40 day-server servermgrd[83]: servermgr_jabber[N]: jabberd service shutdown completed.
    Mar 2 14:31:40 day-server servermgrd[83]: servermgr_jabber[E]: Error -- failed to start service: jabberd
    Mar 2 14:31:41 day-server servermgrd[83]: servermgr_info: markrunning_servicesconfigured(): marked running services configured: com.apple.ServerAdmin.DNS, com.apple.ServerAdmin.SWUpdate, com.apple.ServerAdmin.NetBoot, com.apple.ServerAdmin.Web, com.apple.ServerAdmin.NFS, com.apple.ServerAdmin.AppleFile, com.apple.ServerAdmin.IPFirewall, com.apple.ServerAdmin.DirectoryServices
    I'm particularly concerned about "jabberd/c2s[9309]: no local.id configured, aborting" messages. Neither a Google search nor a search of the Apple KB or these forums provides any insight into what that means. I suspect is may be related to the "Host Domains" setting in Server Admin, which shows that I have a host domain assigned.
    Any help is greatly appreciated.

    I solved my own problem.
    I was correct in assuming that the "no local.id configured, aborting" message was related to not having a "Host Domain" correctly assigned in Server Admin. Apparently sometime, somehow, and some way that I can't explain, the iChat server didn't have the host domain correctly set even though the correct setting shows in Server Admin. When I attempted to remove the existing host domain, leaving none, and save the result, Server Admin reacted by disabling the whole iChat service config screen, which is stupid. How about giving me an error instead, which reads something like, "You must set a host domain"?
    So I added a second host domain, temp.domain.com, and deleted the original. Saved the settings. Re-added the original domain, deleted the temp. Re-saved the settings. Now the iChat service starts and works.

Maybe you are looking for

  • How to open PDF file in new window as default

    I have .pdf documents into which I have inserted links to other .pdf documents using pdfEdit995 (I am a 77-year-old pensioner recording monumental inscriptions, not very computer literate and not able to afford expensive applications !)  The links in

  • My Macbook Pro will not boot up.  How can I get to the time machine back up?

    When I turn on my Macbook Pro, it gets to the gray screen with the Apple logo and the spinning beach ball and stays there.  I use Time Machine with a Seagate external harddrive to back up my files.  I at first thought recovery meant using Seagates's

  • How to propagate changes in RFC to XI....?

    Hi Guys, I changed parameter in one of the RFC..the RFC is already being used in XI. I know there is someway to refresh XI with the changes done in RFC, but I am unable to recall.. Can somebody please help in activating my sleeping neurons? Thanking

  • How can I get read only files out of the trash?

    Either by deleting them, or moving them out. I have to click continue about 170 times just to get through the files to empty the rest of my trash.

  • Creer une zone image dans adobe acrobat pro 9

    bonjour, voila je voudrais savoir comment inserer une zone image sur un fichier PDF, je m'explique : je suis en train de créer une feuille d'incription pour un concours en PDF j'ai reussi a inserer des zone texte, des zones a cocher, etc.. mais je vo