Activatable Servers and Remote References [RMI]

Hello everyone,
I'm wondering if there's a way to know, on an activatable server, how many clients have an active reference to that and their id. I need to know exactly who did not renew his lease with the server, and once I know it I can remove that client from a list of logged-in client..
example:
client "user1" gets a remote reference of the activatable server, that adds "user1" to a logged-in-list I made (like a online userlist in a forum). suddenly user1 crashes without invoking "logout" method (and for the userlist he's still online!).
Once the lease for user1 expires, the activatable servers decreases the remoteRef count.
I'd like to associate the client username with the remote reference or the lease in some way, so once a client lease is not renewed I know for sure who I've to remove with the server from the online userlist..
Hope you can understand my problem, thanks in advance
Edited by: Guguz on 28-dic-2010 6.44

Each time a client connects to the login server, I give him a new activatable server.A new server. Making it activatable is pointless: you're creating it dynamically per client. Only the login server needs to be activatable. It goes something like this, modulo typos:
public interface Login extends Remote
  Session login(String username, char[] password) throws RemoteException;
public class LoginImpl extends Activatable implements Login
public interface Session extends Remote
  // your session API here
  void logout() throws RemoteException; // explicit logout
public class Session extends UnicastRemoteObject implements Session, Unreferenced
  // ... implementation of your session API
  // Unreferenced.unreferenced()
  public void unreferenced()
    // Log the enforced logout via unreferenced()
    logout();
  // logout()
  public void logout()
    // Log the logout
    // call UnicastRemoteObject.unexportObject(this, true);
    // and do whatever else you have to do when a client logs out
In the activatable unreferenced methodIn the Unreferenced.unreferenced() method
then I can put the "logout user".And wherever else it should go.
And this should prevent crashes right ?Wrong. It won't prevent crashes. It will detect them.

Similar Messages

  • Remote reference to an RMI server

    I was going through some of the posts here and somebody mentioned : -
    "The Registry is a client that
    holds a reference to your remote object. If the remote object
    terminates, the reference remains, (as it would with any other
    client). You must manually purge the reference, (possibly with
    an unbind()).
    This is contrary to what I thought "the remote reference to an RMI server not implementing activatable remains valid as long as the server itself remains running and no longer. Is it a misunderstanding on my part?

    hi Ayesha,
    You are right
    "the remote reference to an RMI server not implementing activatable remains valid as long as the server itself remains running and no longer".

  • Rmi remote reference lookup very slow in web start application

    I have a little problem with the RMI communication in a web start test application.
    It is a very simple program in which the client calls a remote object that returns a String.
    Everything seems to be working fine when i'm running/debugging the client app in eclipse, but when i package my client project into a jar file and run it as a web start application (i'm providing the jnlp on a local webserver) the remote reference lookup takes about 15 seconds.
    basically, what my client does is this:
    Registry registry = LocateRegistry.getRegistry(address);
    ServerTransaction st= (ServerTransaction) registry.lookup(name);
    String result = st.test();
    The server code looks like this:
    String name = "ServerTransaction";
    ServerTransaction engine = new DefaultServerTransaction();
    ServerTransaction stub = (ServerTransaction) UnicastRemoteObject.exportObject(engine, 0);
    Registry registry = LocateRegistry.createRegistry(Registry.REGISTRY_PORT);
    registry.rebind(name, stub);
    The server runs as a normal stand alone java application on my local machine as well.
    And here the content of the jnlp file for the client application:
    <resources>
         <jar href="WSTest.jar"/>
         <jar href="WSTestServer.jar"/>
         <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
         <property name="serverAddress" value="127.0.0.1" />
    </resources>
    <security>
         <all-permissions/>
    </security>
    <application-desc main-class="test.WSTest"/>
    As i said, the whole thing works when run as a normal java application as well as with web start, with the difference that the remote reference lookup takes about 15 seconds with web start.
    Can anyone tell me how i could go about this?

    Meanwhile, i tried the same thing at home on my xp machine (i use vista at work), and even though my test at home basically does the same thing (invoking a simple remote method that just returns "hello world") it worked pretty fast, contary to the 15 second hang on vista.
    So i can't really say where the problem is...
    I also found these two rmi properties
    sun.rmi.transport.connectionTimeout (1.1.6 and later)
    The value of this property represents the period (in milliseconds) for which socket connections may reside in an "unused" state, before the Java RMI runtime will allow those connections to be freed (closed). The default value is 15000 milliseconds (15 seconds).
    and
    sun.rmi.transport.proxy.connectTimeout (1.1 and later)
    The value of this property represents the maximum length of time (in milliseconds) that the Java RMI runtime will wait for a connection attempt (createSocket) to complete, before attempting to contact the server using HTTP. This property is only used when the http.proxyHost property is set and the value of java.rmi.server.disableHttp is false. The default value is 15000 milliseconds (15 seconds).
    Hoping it would help (totally clueless) i tried to set these as system properties via System.setProperty(...) to a lower value (if that even works this was - please correct me if i am totally wrong here) but it didn't help.

  • How to use the same services-config for the local and remote servers.

    My flex project works fine using the below but when I upload my flash file to the server I doesn't work, all the relative paths and files are the same execpt the remote one is a linux server.
    <?xml version="1.0" encoding="UTF-8"?>
    <services-config>
        <services>
            <service id="amfphp-flashremoting-service"
                class="flex.messaging.services.RemotingService"
                messageTypes="flex.messaging.messages.RemotingMessage">
                <destination id="amfphp">
                    <channels>
                        <channel ref="my-amfphp"/>
                    </channels>
                    <properties>
                        <source>*</source>
                    </properties>
                </destination>
            </service>
        </services>
        <channels>
        <channel-definition id="my-amfphp" class="mx.messaging.channels.AMFChannel">
            <endpoint uri="http://localhost/domainn.org/amfphp/gateway.php" class="flex.messaging.endpoints.AMFEndpoint"/>
        </channel-definition>
        </channels>
    </services-config>
    I think the problem  is the line
            <endpoint uri="http://localhost/domainn.org/amfphp/gateway.php" class="flex.messaging.endpoints.AMFEndpoint"/>
    but I'm not sure how to use the same services-config for the local and remote servers.

    paul.williams wrote:
    You are confusing "served from a web-server" with "compiled on a web-server". Served from a web-server means you are downloading a file from the web-server, it does not necessarily mean that the files has been generated / compiled on the server.
    The server.name and server.port tokens are replaced at runtime (ie. on the client when the swf has been downloaded and is running) not compile time (ie. while mxmlc / ant / wet-tier compiler is running). You do not need to compile on the server to take advantage of this.
    Hi Paul,
    In Flex, there is feature that lets developer to put all service-config.xml file configuration information into swf file. with
    -services=path/to/services-config.xml
    IF
    services-config.xml
    have tokens in it and user have not specified additional
    -context-root
    and this swf file is not served from web-app-server (like tomcat for example) than it will not work,
    Flash player have no possible way to replace token values of service-config.xml file durring runtime if that service-config.xml file have been baked into swf file during compilation,
    for example during development you can launch your swf file from your browser with file// protocol and still be able to access blazeDS services if
    -services=path/to/services-config.xml
    have been specified durring compilation.
    I dont know any better way to exmplain this, but in summary there is two places that you can tell swf  about service confogiration,
    1) pass -services=path/to/services-config.xml  parameter to compiler this way you tell swf file up front about all that good stuff,
    or 2) you put that file on the webserver( in this case, yes you should have replacement tokens in that file) and they will be repaced at runtime .

  • Communication Error with Host and Remote Object

    Hi,
    I was executing my RMI program in a Linux Grid Network environment and the communication was no problem and the code did work.
    However I have switched to the same code to another network with linux machines and when try to execute the code I get the Error:
    java.rmi.ConnectIOException: Exception creating connection to: 136.186.14.96; nested exception is: java.net.NoRouteToHostException: No route to host
    136.186.14.96 is the place where the registry is running and Server Object is bound
    Client Locate the Registry as below
    LocateRegistry.getRegistry("136.186.14.96",1099);
    ACTUAL CODE:
    +//Pass The Remote Reference+
    +try {+
    oClient.registry = LocateRegistry.getRegistry(oClient.o_RegistryReference,oClient.i_Port);
    oClient.server = (ART_Interface) oClient.registry.lookup("Server_Obj");
    oClient.server.clientRegister(oClient.i_ClientID, oClient);
    System.out.println("SEQUENCE <1>  Client [" iID + "] Request to Register");+
    +} catch (Exception e) {+
    System.out.println("Client [" oClient.i_ClientID + "]Registration Error: " + e);+
    +}+
    Client Code Execution....
    +#ART_CLIENT <HOST> <PORT> <Client ID> <slavesPerClient>+
    java -cp /home/research/mbcooray/network/mercury/GRID/ -Djava.rmi.server.codebase=file:/home/research/mbcooray/network/mercury/GRID/ -Djava.security.policy=/home/research/mbcooray/network/mercury/GRID/Policy.txt ART_Client 136.186.14.96 1099 0 1 &

    No for multiple instances of clients communicating (Reporting) to Server, wouldn't server have a dedicated port for them?No. A remote object is exported on port X, the client forms an inbound (from the server's point of view) connection to it, an accepted-socket is created, also on X. netstat -an will show you that: X LISTENING and zero or more X ESTABLISHED. A TCP connection consists of the tuple {TCP, client-address, client-port, server-address, server-port}. Here 'server-port' is X, 'client-port' is allocated by the system. So there can exist multiple inbound connections to X, and the server-port number is always X.
    For Call backs I guess JVM gets hold of a random free portFor all outbound connections, TCP gets hold of a random free port.
    as it is running on a separate thread (I assume)Threads have nothing to do with it.
    Is this done by using socketfactory? Forget it. You don't want to do this, for the reasons I have. You probably don't need to do it, and if you do need to do it you should shoot the netadmin instead.
    Yes, the server exports the object and binds it in the local registryThat's not the same thing as exporting it on port 1099. You can specify a port number when exporting, or when calling super() if your remote objects extend UnicastRemoteObject. If you are using LocateRegistry.createRegistry(), port 1099 will get reused automatically for all subsequently-exported remote objects unless you are using a socket factory, which you aren't. If you are using a separate Registry you should specify the export port number yourself, and you can't re-use 1099.
    The background to this is that firewalls often contain rule configurations about what remote port numbers may be connected to, which corresponds to the reality that Internet services have fixed port numbers, so you can decide e.g. to allow your users to connect to HTTP servers (80,443,8080,8443) and SSH (22) but not for example Telnet (23). However by symmetry they often also allow similar rules for outbound port numbers, which are completely useless as they do not correspond to any reality whatsoever. If you have a netadmin who is enforcing outbound port number rules, just tell him to stop it.

  • Remote references

    Hi all,
    We have our product (RMI Client) that has references to objects that belong to various RMI servers running in different systems. This seem to spawn many RMIRenewClean and RMI ConnectionExpiration threads for each end point and they seem to still hang around for a long time.
    Obviously, there must be still some references I am holding to, which I am not aware of. Is there a way to find out which reference objects these threads are waiting to be released? Is there some RMI properties I need to set so as to get these logged somewhere?
    Thanks in advance
    Anand

    The home stub does know which host/port it was connected to, and I
    believe by default will attempt to reconnect. As long as you restarted
    the server on the same host/port, it can reconnect.
    That being said, it's probably a good practice to redo the JNDI lookup.
    -- Rob
    Emma wrote:
    I am currently investigating a problem with the reconnection of a client to the weblogic server after a server crash.
    We have a stateful session bean which provides functionality for logon and session management of the client. When the client first performs a logon, a lookup to the JNDI is done to get a remote reference to this bean's home object. Then the create method on the home interface is called to create the bean instance. If the server crashes then the reconnection code is called. This currently only contains the call to the create method and doesn't peform any JNDI lookups. I was expecting all references to be lost when the server crashed and therefore thought that this reconnection wouldn't work but it does! (The weblogic instance is not clustered) Does anyone have an explanation as to why this might happen?

  • SharePoint Foundation 2013 - Search Configuration Issue - 2 App Servers and 2 Front-End Servers

    Hi, 
    We have a SharePoint Foundation 2013 with SP1 Environment. 
    In that, we have 2 Front-End Servers and 2 App Servers. In the Front-End Servers, the Search Service is stopped and is in Disabled state and in the 2 App Servers in One App Server, Search is Online and in another Search is Starting but goes to Stopped sooon
    after.
    Originally, we had only 1 App Server and we were running our Search Service and Search Service Application in that. Now since the index location became full and we were unable to increase the drive there, we added one more App Server and now the issue is
    Search is not properly getting configured in either of these App servers. What we want to do is run Search only in the new App Server, because we have a lot of storage space for Index locations here, but in the older App Server, not run Search at all.  We
    tried keeping the Search Service disabled and ran the below PowerShell Scripts, but none of the ones are working. These scripts are creating the Search Service Application, but the error of "Admin Component is not Online", "Could not connect
    to the machine hosting SharePoint 2013 admin component" is coming up. 
    http://www.funwithsharepoint.com/provision-search-for-sharepoint-foundation-2013-using-powershell-with-clean-db-names/
    http://blog.falchionconsulting.com/index.php/2013/02/provisioning-search-on-sharepoint-2013-foundation-using-powershell/
    http://blog.ciaops.com/2012/12/search-service-on-foundation-2013.html
    Can I get some help please?
    Karthick S

    Hi Karthick,
    For your issue, could you provide the
    detail error message of ULS log  to determine the exact cause of the error?
    For SharePoint 2013, by default, ULS log is at      
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS
    For troubleshooting your issue,  you can try to run the SharePoint Products Configuration Wizard on your WFE servers and run the script for configuring the search service on SharePoint
    Foundation:
    [string]$farmAcct = "DOMAIN\service_Account"
    [string]$serviceAppName = "Search Service Application"
    Function WriteLine
    Write-Host -ForegroundColor White "--------------------------------------------------------------"
    Function ActivateAndConfigureSearchService
    Try
    # Based on this script : http://blog.falchionconsulting.com/index.php/2013/02/provisioning-search-on-sharepoint-2013-foundation-using-powershell/
    Write-Host -ForegroundColor White " --> Configure the SharePoint Foundation Search Service -", $env:computername
    Start-SPEnterpriseSearchServiceInstance $env:computername
    Start-SPEnterpriseSearchQueryAndSiteSettingsServiceInstance $env:computername
    $appPool = Get-SPManagedAccount -Identity $farmAcct
    New-SPServiceApplicationPool -Name SeachApplication_AppPool -Account $appPool -Verbose
    $saAppPool = Get-SPServiceApplicationPool -Identity SeachApplication_AppPool
    $svcPool = $saAppPool
    $adminPool = $saAppPool
    $searchServiceInstance = Get-SPEnterpriseSearchServiceInstance $env:computername
    $searchService = $searchServiceInstance.Service
    $bindings = @("InvokeMethod", "NonPublic", "Instance")
    $types = @([string],
    [Type],
    [Microsoft.SharePoint.Administration.SPIisWebServiceApplicationPool],
    [Microsoft.SharePoint.Administration.SPIisWebServiceApplicationPool])
    $values = @($serviceAppName,
    [Microsoft.Office.Server.Search.Administration.SearchServiceApplication],
    [Microsoft.SharePoint.Administration.SPIisWebServiceApplicationPool]$svcPool,
    [Microsoft.SharePoint.Administration.SPIisWebServiceApplicationPool]$adminPool)
    $methodInfo = $searchService.GetType().GetMethod("CreateApplicationWithDefaultTopology", $bindings, $null, $types, $null)
    $searchServiceApp = $methodInfo.Invoke($searchService, $values)
    $searchProxy = New-SPEnterpriseSearchServiceApplicationProxy -Name "$serviceAppName - Proxy" -SearchApplication $searchServiceApp
    $searchServiceApp.Provision()
    catch [system.exception]
    Write-Host -ForegroundColor Yellow " ->> Activate And Configure Search Service caught a system exception"
    Write-Host -ForegroundColor Red "Exception Message:", $_.Exception.ToString()
    finally
    WriteLine
    ActivateAndConfigureSearchService
    Reference:
    https://sharepointpsscripts.codeplex.com/releases/view/112556
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected].
    Eric Tao
    TechNet Community Support

  • Looking up Identical EJB both locally and remotely

    prior to posting this request, i have read and
    attempted multiple solutions to this problem
    suggested in the forums to no avail.
    if i have the same EAR, which contains both
    an EJB Component and a WAR, deployed to multiple
    servers, is it possible to look up an EJB both
    locally and remotely?
    for instance, on the server performing the lookup,
    EJB A is deployed. i successfully look it up
    via the following call:
    InitialContext context = new InitialContext();
    Object ref = context.lookup(name);
    return javax.rmi.PortableRemoteObject.narrow("EJBA", EJBAClass.class);
    subsequently, i try to lookup the same ejb
    on a remote server by performing the following
    calls:
    Properties environment = new Properties();
    environment.put("java.naming.factory.initial", "com.evermind.server.rmi.RMIInitialContextFactory");
    environment.put("java.naming.provider.url",
         "ormi://remoteserver:23791/application");
    environment.put( "java.naming.security.principal", "user");
    environment.put( "java.naming.security.credential", "password");
    jndiContext = new InitialContext(environment);
    Object ref = context.lookup(name);
    return javax.rmi.PortableRemoteObject.narrow("EJBA", EJBAClass.class);
    however, i either receive an authentican exception, saying "user"
    doesnt have access to allication "application", or a null pointer
    exception int the RMIInitialContext.
    on my local application, i have defined my ejbs in the web.xml
    as defined by the spec. the ejb component is marked as remote="false"
    in my orion-application.xml as well.
    the version of oc4j is 1.0.2.2.1.
    any directinon on this would be greatly appreciated.
    thanks,
    ted rice

    as a follow up to my own question, using a application
    client, outisde of the web application i can
    successfully look up my ejbs locally and remotely.
    however, from within the web application, i constantly
    receive a ClassCastException.
    if no one can tell me how to resolve this, could someone
    let me know if they have in fact looked up the
    same EJB, both deployed locally and remotely, from the
    same web application.
    thanks,
    ted

  • Remote reference is getting garbase collected

    Hi,
    I'm using Weblogic 5.1, on Windows NT.
    I have RMI remote object on the server side, and my client is an applet.
    In the applet I use JNDI to get the reference of the server object, and
    use it. The problem is after sometime ( like 10 min or so) I get
    weblogic.rmi.NoSuchObjectException
    and at the WLServer console I see
    ' <DGCServer> tried to renew lease for 1 lost reference'.
    At the server side, I bind the object using JNDI.
    I want thsi reference to be available all the time in the applet.
    any help is appreciated.
    thanks,
    Abdul.

    thanks, I will try and let you know by tomorrow.
    I tried both methods, you suggested, but i didn't get any errors. I still
    have to test the client connections and see whether they are gc'd or not.
    i gave a idletime of 1000.
    - Sam Jacob
    Iconixx Corp.
    Wei Guan <[email protected]> wrote in message
    news:[email protected]...
    set
    weblogic.rmi.dgc.idlePeriodsUntilTimeout=xxx
    in your weblogic.properties file.
    If it didn't work (I haven't tested),
    use -Dweblogic.rmi.dgc.idlePeriodsUntilTimeout=xxx in your startup script.
    Give a try and let me know.
    Cheers - Wei
    Sam <[email protected]> wrote in message
    news:[email protected]...
    how do you set this property.I think i have the same issue.
    Sam Jacob
    Iconixx Corp.
    Wei Guan <[email protected]> wrote in message
    news:[email protected]...
    You can tune up this property:
    weblogic.rmi.dgc.idlePeriodsUntilTimeout
    The default is 2. WebLogic will dereference a remote object referece
    if
    that
    reference hasn't been referenced for a period of time. The timeout
    value
    is
    determined by this property and other properties. The default idle
    timeout
    is 360 secs when idlePeriodsUntilTimeout=2. Use this formula to figurethe
    timeout: 60 x (4 + idlePeriodsUntilTimeout).
    Use at your own risk. If you set up this value too high, there will be
    unused remote reference on WebLogic server for cleaning up, which inturn
    degrade WeLogic performance.
    My 2 cents.
    Cheers - Wei
    aroshan <@cisco.com> wrote in message
    news:[email protected]...
    Hi,
    I'm using Weblogic 5.1, on Windows NT.
    I have RMI remote object on the server side, and my client is anapplet.
    In the applet I use JNDI to get the reference of the server object,and
    use it. The problem is after sometime ( like 10 min or so) I get
    weblogic.rmi.NoSuchObjectException
    and at the WLServer console I see
    ' <DGCServer> tried to renew lease for 1 lost reference'.
    At the server side, I bind the object using JNDI.
    I want thsi reference to be available all the time in the applet.
    any help is appreciated.
    thanks,
    Abdul.

  • Multiple servers and multiple clients on one machine

    Hi,
    I was hoping someone could give me some direction as to how to go about creating multiple servers and muliple clients on the one computer using RMI and threads. I intend to have say 4 servents (able to perform both client and server methods) running on the one computer, with the clients being able to connect to each of the servers. (I'm doing this to emulate using 4 computers, which I don't have!). I know I have to use different ports to do this. How do I go about the following using RMI - start up a server (port number as argument from command line?), which starts a thread listening for connections from the other clients.. when a new connection is established between server and client, then start a new thread which 'handles' that connection.
    The examples I've seen of RMI only deal with single server and single client... I'd appreciate any suggestions as to how to go about this problem!!

    Hi,
    I suggest not to use the rmiregistry program at all
    but to start the registry in a program of your own.
    Then you can specify all you need (url, port, even
    client and server socket) as command line argument.
    You need something like this:
    Registry registry = null;
    Remote server = null;
    try
    { // this succeeds if the registry already runs
      registry = LocateRegistry.getRegistry(yourRegistry);
      server = registry.rebind( yourServer );     
    }catch( RemoteException )
    { // no registry reachable, create one
      registry = LocateRegistry.createRegistry(yourRegistry);                 
      server = registry.rebind( yourServer );     
    }Have fun,
    wiedkla

  • Search for [Remote Key] and [Remote System] in Data Manager

    Hello all
    I would like to be able to search on the remote key and the remote system in the MDM Data Manager is that not possible? I thought I remembered seeing that possibility under the Free-Form Search but now I can't find it.
    I have, however, found this in the Data Manager reference guide:
    REMOTE SYSTEM AND REMOTE KEY FIELDS
    MDM uses the remote systems defined in the Remote Systems table
    within the MDM Console to store and maintain key mapping information
    for each record or text attribute. It does this using a virtual “key
    mapping” field that you never see in the MDM Client.
    This virtual key mapping field is very much like a qualified lookup field
    into a virtual key mapping qualified lookup table.
    Key Mapping information stored in virtual lookup field
    The Remote System and Remote Key fields are normally not visible;
    however, they do appear in several places in the MDM Client.
    Specifically, both fields: (1) appear in the File > Export dialogs in Record
    mode for exporting value pairs; (2) are recognized by the File > Import
    dialog in Record mode for importing value pairs; and (3) appear in the
    Edit Key Mappings dialogs in both Record mode and Taxonomy mode,
    for viewing and editing value pairs.
    Is there any way to search on the value in the remote key from the Data Manager?

    Not sure search i think not possible.
    But you can see keys as mentioned:
    Enable Key mapping in Console.
    MDM Client maens MDM Data Manager.
    They do appear in several places in the MDM Client or Data Manager. Three different methods to see in DM are given already below:
    Specifically, both fields: (1) appear in the File > Export dialogs in Record mode for exporting value pairs; (2) are recognized by the File > Import dialog in Record mode for importing value pairs; and (3) appear in the Edit Key Mappings dialogs in both Record mode and Taxonomy mode, for viewing and editing value pairs.
    BR,
    Alok

  • Took on new servers and one is burdened with many issues any suggestions

    Apologize for the obscenely large post searched past posts and failed to find anything that would help.
    Below is the server log that looking back occurs daily any suggestions on where to begin and what are my next steps would be?
    Greatly appreciated.
    5856 0
    Mar 10 00:44:33 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[55]: Login Window Application Started -- Threaded auth
    Mar 10 00:44:33 localhost watchdogtimerd[44]: Automatic reboot timer enabled.
    Mar 10 00:44:34 localhost emond[63]: SetUpLogs: uid = 0 gid = 0
    Mar 10 00:44:34 localhost emond[63]: SetUpLogs: opening /Library/Logs/EventMonitor/EventMonitor.error.log
    Mar 10 00:44:35 localhost kextd[25]: writing kernel link data to /var/run/mach.sym
    Mar 10 00:44:35 localhost com.apple.usbmuxd[45]: usbmuxd-176 built for iTunesNine on Jul 20 2009 at 13:06:53, running 32 bit
    Mar 10 00:44:36 localhost com.apple.HeadlessStartup[60]: 65:6e:30:00:0d:93
    Mar 10 00:44:36 xrdsx1 configd[29]: setting hostname to "xrdsx1.sbschools.org"
    Mar 10 00:44:37 xrdsx1 loginwindow[55]: Login Window Started Security Agent
    Mar 10 00:44:47 xrdsx1 servermgrd[50]: servermgr_calendar: created default calendar virtual host
    Mar 10 00:44:47 xrdsx1 servermgrd[50]: servermgr_ipfilter:ipfw config:Notice:Flushed IPv4 rules
    Mar 10 00:44:47 xrdsx1 servermgrd[50]: servermgr_ipfilter:ipfw config:Notice:Flushed IPv6 rules
    Mar 10 00:44:48 xrdsx1 com.apple.autofsd[70]: automount: dir Faculty Share must start with '/'
    Mar 10 00:44:48 xrdsx1 com.apple.KerberosAutoConfig[140]: Kerberos configuration is up to date
    Mar 10 00:44:50 xrdsx1 com.apple.KerberosAutoConfig[142]: Kerberos configuration is up to date
    Mar 10 00:44:55 xrdsx1 com.apple.autofsd[70]: automount: dir Faculty Share must start with '/'
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-Air-C105.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-Air-Main\032Office.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(XRDS\032Read\032180-9-B102.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-Air-1-D103.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-Air-B111\032Prep.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-Air-5-F101.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-Air-MDF.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-Air-A114.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-Air-6thgradeTower.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-AirX-B111IDF._airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-AirX-AHall\032IDF.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-Airx-D103-ARRA.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-Air-Cow5.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-AirExpress-Cow.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-AirX-MDF.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(Tech\032Ed\032Room.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-Air-D106.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-Air-A120.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-AirX-B106\.5.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-AirExpress-Cow2.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:46:59 xrdsx1 Unknown[31]: Client application bug: DNSServiceResolve(SBXS-AirX-A100ceiling.airport.tcp.local.) active for over two minutes. This places considerable burden on the network.
    Mar 10 00:51:30 xrdsx1 mdworker[115]: -[ABAddressBook sharedAddressBook] Can't ABACQUIREFILELOCK /SourceCache/AddressBook/AddressBook-702/Framework/AddressBook/ABAddressBook.m: 3187
    Mar 10 01:09:44 xrdsx1 mdworker[115]: GCGetStrikeMetrics failed: error 3.
    Mar 10 01:10:14: --- last message repeated 11 times ---
    Mar 10 01:19:21 xrdsx1 kernel[0]: serialnumberd 247 FSWRITEDATA SBF /dev/dtracehelper 13 (seatbelt)
    Mar 10 01:19:21 xrdsx1 /usr/sbin/serialnumberd[247]: serialnumberd started as /usr/sbin/serialnumberd.
    Mar 10 01:19:21 xrdsx1 kernel[0]: serialnumberd 247 FSREADDATA SBF /dev/autofs_nowait 13 (seatbelt)
    Mar 10 01:19:21 xrdsx1 kernel[0]: serialnumberd 247 FSREADDATA SBF /usr/sbin 13 (seatbelt)
    Mar 10 01:19:21 xrdsx1 /usr/sbin/serialnumberd[247]: SN_Register(): New persistent, network record [tag=xsvr, extra=xrdsx1.sbschools.org] registered successfully by pid 247.
    Mar 10 01:19:27 xrdsx1 /usr/sbin/serialnumberd[247]: launchd did not pass version 1 Mach port (bad launchd plist?)
    Mar 10 01:49:37 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 01:50:07: --- last message repeated 5 times ---
    Mar 10 01:51:33 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 01:52:03: --- last message repeated 5 times ---
    Mar 10 01:57:10 xrdsx1 mdworker[115]: Unexpected EOF, returning last token as fallback
    Mar 10 01:57:40: --- last message repeated 2 times ---
    Mar 10 02:19:13 xrdsx1 com.apple.launchd[1] (com.apple.automountd): Throttling respawn: Will start in 7 seconds
    Mar 10 02:19:16 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 02:19:46: --- last message repeated 5 times ---
    Mar 10 03:10:44 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 03:11:14: --- last message repeated 15 times ---
    Mar 10 03:11:15 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 03:11:45: --- last message repeated 1 time ---
    Mar 10 03:37:52 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 03:38:22: --- last message repeated 7 times ---
    Mar 10 03:39:51 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 03:40:21: --- last message repeated 1 time ---
    Mar 10 04:07:32 xrdsx1 com.apple.launchd[1] (com.apple.automountd): Throttling respawn: Will start in 9 seconds
    Mar 10 04:07:33 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 04:08:03: --- last message repeated 8 times ---
    Mar 10 05:26:11 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 05:26:41: --- last message repeated 8 times ---
    Mar 10 05:28:05 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 05:28:35: --- last message repeated 3 times ---
    Mar 10 05:55:50 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 05:56:20: --- last message repeated 5 times ---
    Mar 10 06:12:08 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 06:12:38: --- last message repeated 23 times ---
    Mar 10 06:12:40 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 06:13:10: --- last message repeated 1 time ---
    Mar 10 07:14:29 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 07:14:59: --- last message repeated 10 times ---
    Mar 10 07:16:21 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 07:16:51: --- last message repeated 5 times ---
    Mar 10 07:30:10 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 07:30:40: --- last message repeated 28 times ---
    Mar 10 07:30:40 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 07:31:10: --- last message repeated 7 times ---
    Mar 10 07:32:32 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 07:33:02: --- last message repeated 13 times ---
    Mar 10 07:33:03 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 07:33:33: --- last message repeated 2 times ---
    Mar 10 07:35:11 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 07:35:41: --- last message repeated 30 times ---
    Mar 10 07:35:51 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 07:57:54 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 07:58:24: --- last message repeated 12 times ---
    Mar 10 07:58:25 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 07:58:55: --- last message repeated 1 time ---
    Mar 10 08:04:26 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 08:04:56: --- last message repeated 8 times ---
    Mar 10 08:06:47 xrdsx1 com.apple.launchd[1] (org.samba.smbd[1370]): Stray process with PGID equal to this dead job: PID 1372 PPID 1 smbd
    Mar 10 08:15:33 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 08:16:03: --- last message repeated 29 times ---
    Mar 10 08:16:18 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 08:16:48: --- last message repeated 7 times ---
    Mar 10 08:17:22 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 08:17:52: --- last message repeated 13 times ---
    Mar 10 08:17:58 xrdsx1 mDNSResponder[31]: ERROR: getOptRdata - unknown opt 4
    Mar 10 08:20:28 xrdsx1 authorizationhost[107]: MechanismInvoke 0x12cde0 retainCount 2
    Mar 10 08:20:28 xrdsx1 SecurityAgent[110]: MechanismInvoke 0x19ee20 retainCount 1
    Mar 10 08:20:31 xrdsx1 SecurityAgent[110]: NSSecureTextFieldCell detected a field editor ((null)) that is not a NSTextView subclass designed to work with the cell. Ignoring...
    Mar 10 08:20:31 xrdsx1 SecurityAgent[110]: NSExceptionHandler has recorded the following exception:\nNSRangeException -- * -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)\nStack trace: 0x39dbc 0x9004b4ec 0x9400fc00 0x9400fc38 0x91f51180 0x709c8 0x5bee4 0x6edd8 0x637b4 0x68368 0x774a4 0xe068 0x14200 0x13f64 0xdb58 0x91f888f0 0x93f8026c 0x93fa2634 0x91f85c60 0x94015620 0x94015748 0x20a9700 0xe068 0x14200 0x13f64 0xdb58 0x91f888f0 0x93f8026c 0x93fa2634 0x96732b18 0x9673293c 0x9673277c 0x93371248 0x93370c00 0x9336a8a0 0x11e14 0x2db0
    Mar 10 08:20:32 xrdsx1 loginwindow[55]: Login Window - Returned from Security Agent
    Mar 10 08:20:32 xrdsx1 authorizationhost[107]: MechanismDestroy 0x12cde0 retainCount 2
    Mar 10 08:20:32 xrdsx1 SecurityAgent[110]: MechanismDestroy 0x19ee20 retainCount 1
    Mar 10 08:20:33 xrdsx1 loginwindow[55]: USER_PROCESS: 55 console
    Mar 10 08:20:33 xrdsx1 com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[100]): Exited: Terminated
    Mar 10 08:20:33 xrdsx1 com.apple.launchd[1473] (com.apple.AirPortBaseStationAgent): Unknown key for boolean: EnableTransactions
    Mar 10 08:20:33 xrdsx1 com.apple.launchd[1473] (org.x.startx): Unknown key for boolean: EnableTransactions
    Mar 10 08:20:33 xrdsx1 com.apple.launchd[1] (com.apple.aslmanager): Throttling respawn: Will start in 5 seconds
    Mar 10 08:20:33 xrdsx1 com.apple.launchctl.Aqua[1483]: com.bjango.istatlocal: Already loaded
    Mar 10 08:20:33 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1484]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:20:33 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1484]): Exited with exit code: 1
    Mar 10 08:20:33 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:20:41 xrdsx1 /System/Library/CoreServices/coreservicesd[73]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(HomeDirs) returned -14135
    Mar 10 08:20:41 xrdsx1 /System/Library/CoreServices/coreservicesd[73]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Public) returned -14135
    Mar 10 08:20:41 xrdsx1 /System/Library/CoreServices/coreservicesd[73]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Images) returned -14135
    Mar 10 08:20:41 xrdsx1 /System/Library/CoreServices/coreservicesd[73]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Users) returned -14135
    Mar 10 08:20:41 xrdsx1 /System/Library/CoreServices/coreservicesd[73]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Administrator's Public Folder) returned -14135
    Mar 10 08:20:41 xrdsx1 /System/Library/CoreServices/coreservicesd[73]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(rodakisa) returned -14135
    Mar 10 08:20:41 xrdsx1 /System/Library/CoreServices/coreservicesd[73]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Faculty) returned -14135
    Mar 10 08:20:41 xrdsx1 /System/Library/CoreServices/coreservicesd[73]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Groups) returned -14135
    Mar 10 08:20:43 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1511]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:20:43 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1511]): Exited with exit code: 1
    Mar 10 08:20:43 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:20:53 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1523]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:20:53 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1523]): Exited with exit code: 1
    Mar 10 08:20:53 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:21:04 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1524]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:21:04 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1524]): Exited with exit code: 1
    Mar 10 08:21:04 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:21:14 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1527]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:21:14 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1527]): Exited with exit code: 1
    Mar 10 08:21:14 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:21:24 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1528]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:21:24 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1528]): Exited with exit code: 1
    Mar 10 08:21:24 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:21:34 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1529]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:21:34 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1529]): Exited with exit code: 1
    Mar 10 08:21:34 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:21:44 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1531]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:21:44 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1531]): Exited with exit code: 1
    Mar 10 08:21:44 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:21:54 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1534]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:21:54 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1534]): Exited with exit code: 1
    Mar 10 08:21:54 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:22:04 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1535]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:22:04 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1535]): Exited with exit code: 1
    Mar 10 08:22:04 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:22:14 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1536]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:22:14 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1536]): Exited with exit code: 1
    Mar 10 08:22:14 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:22:24 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1537]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:22:24 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1537]): Exited with exit code: 1
    Mar 10 08:22:24 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:22:34 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1538]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:22:34 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1538]): Exited with exit code: 1
    Mar 10 08:22:34 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:22:44 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1543]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:22:44 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1543]): Exited with exit code: 1
    Mar 10 08:22:44 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:22:54 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1556]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:22:54 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1556]): Exited with exit code: 1
    Mar 10 08:22:54 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:23:04 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1567]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:23:04 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1567]): Exited with exit code: 1
    Mar 10 08:23:04 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:23:14 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1579]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:23:14 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1579]): Exited with exit code: 1
    Mar 10 08:23:14 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:23:24 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1590]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:23:24 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1590]): Exited with exit code: 1
    Mar 10 08:23:24 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:23:34 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1601]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:23:34 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1601]): Exited with exit code: 1
    Mar 10 08:23:34 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:23:44 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1612]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:23:44 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1612]): Exited with exit code: 1
    Mar 10 08:23:44 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:23:54 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1631]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:23:54 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1631]): Exited with exit code: 1
    Mar 10 08:23:54 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:24:04 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1642]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:24:04 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1642]): Exited with exit code: 1
    Mar 10 08:24:04 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:24:14 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1653]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:24:14 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1653]): Exited with exit code: 1
    Mar 10 08:24:14 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:24:24 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1664]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:24:24 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1664]): Exited with exit code: 1
    Mar 10 08:24:24 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:24:34 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1675]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:24:34 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1675]): Exited with exit code: 1
    Mar 10 08:24:34 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:24:44 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1686]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:24:44 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1686]): Exited with exit code: 1
    Mar 10 08:24:44 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:24:54 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1699]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:24:54 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1699]): Exited with exit code: 1
    Mar 10 08:24:54 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:25:04 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1710]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:25:04 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1710]): Exited with exit code: 1
    Mar 10 08:25:04 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:25:14 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1721]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:25:14 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1721]): Exited with exit code: 1
    Mar 10 08:25:14 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:25:24 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1730]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:25:24 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal[1730]): Exited with exit code: 1
    Mar 10 08:25:25 xrdsx1 loginwindow[55]: DEAD_PROCESS: 0 console
    Mar 10 08:25:25 xrdsx1 ARDAgent[1488]: CGSShutdownServerConnections: Detaching application from window server
    Mar 10 08:25:25 xrdsx1 ARDAgent[1488]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Mar 10 08:25:25 xrdsx1 AppleVNCServer[1503]: CGSShutdownServerConnections: Detaching application from window server
    Mar 10 08:25:25 xrdsx1 AppleVNCServer[1503]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Mar 10 08:25:25 xrdsx1 loginwindow[55]: CGSShutdownServerConnections: Detaching application from window server
    Mar 10 08:25:25 xrdsx1 AppleVNCServer[1503]: CGSGetNextEventRecord err 1002
    Mar 10 08:25:25 xrdsx1 com.apple.RemoteDesktop.agent[1488]: Thu Mar 10 08:25:25 xrdsx1.sbschools.org ARDAgent[1488] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    Mar 10 08:25:25 xrdsx1 com.apple.RemoteDesktop.agent[1488]: Thu Mar 10 08:25:25 xrdsx1.sbschools.org ARDAgent[1488] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Mar 10 08:25:25 xrdsx1 com.apple.RemoteDesktop.agent[1488]: Thu Mar 10 08:25:25 xrdsx1.sbschools.org AppleVNCServer[1503] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    Mar 10 08:25:25 xrdsx1 com.apple.RemoteDesktop.agent[1488]: Thu Mar 10 08:25:25 xrdsx1.sbschools.org AppleVNCServer[1503] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Mar 10 08:25:25 xrdsx1 com.apple.loginwindow[55]: Thu Mar 10 08:25:25 xrdsx1.sbschools.org loginwindow[55] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    Mar 10 08:25:26 xrdsx1 com.apple.WindowServer[88]: Name ATY,BlueStar matches IOService:/MacRISC4PE/ht@0,f2000000/AppleMacRiscHT/pci@1/IOPCI2PCIBridge/ATY,Bl ueStar@3, new version 010080fb, current version 010080e9
    Mar 10 08:25:26 xrdsx1 com.apple.WindowServer[88]: Installing ndrv (00000000)
    Mar 10 08:25:26 xrdsx1 com.apple.loginwindow[55]: Thu Mar 10 08:25:26 xrdsx1.sbschools.org loginwindow[55] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Mar 10 08:25:26 xrdsx1 loginwindow[55]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Mar 10 08:25:26 xrdsx1 com.apple.launchd[1473] (com.bjango.istatlocal): Throttling respawn: Will start in 8 seconds
    Mar 10 08:25:26 xrdsx1 com.apple.launchd[1473] (com.apple.Spotlight[1735]): Could not setup Mach task special port 7: (ipc/send) invalid destination port
    Mar 10 08:25:26 xrdsx1 com.apple.launchd[1473] (com.apple.Spotlight[1735]): Could not setup Mach task special port 8: (ipc/send) invalid destination port
    Mar 10 08:25:26 xrdsx1 com.apple.launchd[1473] (com.apple.AirPortBaseStationAgent[1736]): Could not setup Mach task special port 7: (os/kern) invalid argument
    Mar 10 08:25:26 xrdsx1 com.apple.launchd[1473] (com.apple.AirPortBaseStationAgent[1736]): Could not setup Mach task special port 8: (os/kern) invalid argument
    Mar 10 08:25:26 xrdsx1 com.apple.launchd[1473] (com.apple.Spotlight[1735]): Exited: Terminated
    Mar 10 08:25:26 xrdsx1 com.apple.launchd[1473] (com.apple.UserEventAgent-Aqua[1491]): Exited: Terminated
    Mar 10 08:25:26 xrdsx1 com.apple.launchd[1473] (com.apple.pboard[1494]): Exited: Terminated
    Mar 10 08:25:26 xrdsx1 com.apple.launchd[1473] (com.apple.AirPortBaseStationAgent[1736]): Exited: Terminated
    Mar 10 08:25:26 xrdsx1 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[1737]: Login Window Application Started -- Threaded auth
    Mar 10 08:25:27 xrdsx1 loginwindow[1737]: Login Window Started Security Agent
    Mar 10 08:25:38 xrdsx1 authorizationhost[1747]: MechanismInvoke 0x12cde0 retainCount 2
    Mar 10 08:25:38 xrdsx1 SecurityAgent[1751]: MechanismInvoke 0x105a70 retainCount 1
    Mar 10 08:25:38 xrdsx1 SecurityAgent[1751]: NSSecureTextFieldCell detected a field editor ((null)) that is not a NSTextView subclass designed to work with the cell. Ignoring...
    Mar 10 08:25:39 xrdsx1 loginwindow[1737]: Login Window - Returned from Security Agent
    Mar 10 08:25:39 xrdsx1 authorizationhost[1747]: MechanismDestroy 0x12cde0 retainCount 2
    Mar 10 08:25:39 xrdsx1 SecurityAgent[1751]: MechanismDestroy 0x105a70 retainCount 1
    Mar 10 08:25:39 xrdsx1 loginwindow[1737]: USER_PROCESS: 1737 console
    Mar 10 08:25:39 xrdsx1 loginwindow[1737]: ERROR | -[Login1 setupEnvironment] | Unable to unlock the keychain, SecKeychainLogin returned -2147413984
    Mar 10 08:25:39 xrdsx1 com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[1742]): Exited: Terminated
    Mar 10 08:25:39 xrdsx1 com.apple.launchd[1] (0x10d8d0.loginwindow[1737]): Could not setup Mach task special port 9: (os/kern) no access
    Mar 10 08:25:39 xrdsx1 com.apple.launchd[1] (com.apple.AirPortBaseStationAgent): Unknown key for boolean: EnableTransactions
    Mar 10 08:25:39 xrdsx1 com.apple.launchd[1] (org.x.startx): Unknown key for boolean: EnableTransactions
    Mar 10 08:25:39 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1769]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:25:39 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1769]): Exited with exit code: 1
    Mar 10 08:25:39 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:25:39 xrdsx1 com.apple.launchctl.Aqua[1768]: com.apple.ATSServer: Already loaded
    Mar 10 08:25:39 xrdsx1 com.apple.launchctl.Aqua[1768]: com.apple.ReportCrash: Already loaded
    Mar 10 08:25:39 xrdsx1 com.apple.launchctl.Aqua[1768]: com.apple.ReportCrash.SafetyNet: Already loaded
    Mar 10 08:25:42 xrdsx1 /System/Library/CoreServices/coreservicesd[73]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(HomeDirs) returned -14135
    Mar 10 08:25:42 xrdsx1 /System/Library/CoreServices/coreservicesd[73]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Public) returned -14135
    Mar 10 08:25:42 xrdsx1 /System/Library/CoreServices/coreservicesd[73]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Images) returned -14135
    Mar 10 08:25:42 xrdsx1 /System/Library/CoreServices/coreservicesd[73]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Users) returned -14135
    Mar 10 08:25:42 xrdsx1 /System/Library/CoreServices/coreservicesd[73]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Administrator's Public Folder) returned -14135
    Mar 10 08:25:42 xrdsx1 /System/Library/CoreServices/coreservicesd[73]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(rodakisa) returned -14135
    Mar 10 08:25:42 xrdsx1 /System/Library/CoreServices/coreservicesd[73]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Faculty) returned -14135
    Mar 10 08:25:42 xrdsx1 /System/Library/CoreServices/coreservicesd[73]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Groups) returned -14135
    Mar 10 08:25:49 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1806]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:25:49 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1806]): Exited with exit code: 1
    Mar 10 08:25:49 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:25:59 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1808]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:25:59 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1808]): Exited with exit code: 1
    Mar 10 08:25:59 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:26:09 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1809]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:26:09 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1809]): Exited with exit code: 1
    Mar 10 08:26:09 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:26:19 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1810]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:26:19 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1810]): Exited with exit code: 1
    Mar 10 08:26:19 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:26:29 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1811]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:26:29 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1811]): Exited with exit code: 1
    Mar 10 08:26:29 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:26:34 xrdsx1 com.apple.launchd[1] (0x113860.login[1813]): Could not setup Mach task special port 9: (os/kern) no access
    Mar 10 08:26:34 xrdsx1 login[1813]: USER_PROCESS: 1813 ttys000
    Mar 10 08:26:39 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1823]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:26:39 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1823]): Exited with exit code: 1
    Mar 10 08:26:39 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:26:45 xrdsx1 /usr/sbin/PasswordService[53]: client response doesn't match what we generated
    Mar 10 08:26:49 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1828]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:26:49 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1828]): Exited with exit code: 1
    Mar 10 08:26:49 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:26:59 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1829]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:26:59 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1829]): Exited with exit code: 1
    Mar 10 08:26:59 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:27:09 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1836]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:27:09 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1836]): Exited with exit code: 1
    Mar 10 08:27:09 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:27:19 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1838]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:27:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1838]): Exited with exit code: 1
    Mar 10 08:27:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:27:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1840]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:27:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1840]): Exited with exit code: 1
    Mar 10 08:27:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:27:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1847]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:27:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1847]): Exited with exit code: 1
    Mar 10 08:27:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:27:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1853]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:27:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1853]): Exited with exit code: 1
    Mar 10 08:27:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:28:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1855]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:28:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1855]): Exited with exit code: 1
    Mar 10 08:28:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:28:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1857]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:28:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1857]): Exited with exit code: 1
    Mar 10 08:28:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:28:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1858]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:28:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1858]): Exited with exit code: 1
    Mar 10 08:28:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:28:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1859]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:28:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1859]): Exited with exit code: 1
    Mar 10 08:28:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:28:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1861]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:28:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1861]): Exited with exit code: 1
    Mar 10 08:28:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:28:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1868]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:28:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1868]): Exited with exit code: 1
    Mar 10 08:28:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:29:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1871]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:29:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1871]): Exited with exit code: 1
    Mar 10 08:29:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:29:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1872]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:29:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1872]): Exited with exit code: 1
    Mar 10 08:29:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:29:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1873]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:29:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1873]): Exited with exit code: 1
    Mar 10 08:29:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:29:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1875]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:29:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1875]): Exited with exit code: 1
    Mar 10 08:29:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:29:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1876]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:29:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1876]): Exited with exit code: 1
    Mar 10 08:29:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:29:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1879]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:29:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1879]): Exited with exit code: 1
    Mar 10 08:29:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:30:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1880]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:30:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1880]): Exited with exit code: 1
    Mar 10 08:30:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:30:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1881]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:30:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1881]): Exited with exit code: 1
    Mar 10 08:30:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:30:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1882]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:30:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1882]): Exited with exit code: 1
    Mar 10 08:30:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:30:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1883]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:30:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1883]): Exited with exit code: 1
    Mar 10 08:30:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:30:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1884]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:30:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1884]): Exited with exit code: 1
    Mar 10 08:30:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:30:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1890]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:30:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1890]): Exited with exit code: 1
    Mar 10 08:30:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:31:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1891]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:31:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1891]): Exited with exit code: 1
    Mar 10 08:31:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:31:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1892]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:31:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1892]): Exited with exit code: 1
    Mar 10 08:31:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:31:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1893]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:31:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1893]): Exited with exit code: 1
    Mar 10 08:31:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:31:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1895]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:31:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1895]): Exited with exit code: 1
    Mar 10 08:31:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:31:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1896]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:31:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1896]): Exited with exit code: 1
    Mar 10 08:31:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:31:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1905]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:31:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1905]): Exited with exit code: 1
    Mar 10 08:31:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:32:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1906]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:32:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1906]): Exited with exit code: 1
    Mar 10 08:32:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:32:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1907]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:32:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1907]): Exited with exit code: 1
    Mar 10 08:32:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:32:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1908]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:32:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1908]): Exited with exit code: 1
    Mar 10 08:32:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:32:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1909]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:32:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1909]): Exited with exit code: 1
    Mar 10 08:32:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:32:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1910]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:32:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1910]): Exited with exit code: 1
    Mar 10 08:32:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:32:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1913]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:32:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1913]): Exited with exit code: 1
    Mar 10 08:32:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:33:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1914]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:33:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1914]): Exited with exit code: 1
    Mar 10 08:33:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:33:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1915]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:33:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1915]): Exited with exit code: 1
    Mar 10 08:33:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:33:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1916]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:33:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1916]): Exited with exit code: 1
    Mar 10 08:33:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:33:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1917]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:33:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1917]): Exited with exit code: 1
    Mar 10 08:33:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:33:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1918]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:33:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1918]): Exited with exit code: 1
    Mar 10 08:33:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:33:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1921]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:33:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1921]): Exited with exit code: 1
    Mar 10 08:33:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:34:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1922]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:34:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1922]): Exited with exit code: 1
    Mar 10 08:34:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:34:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1923]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:34:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1923]): Exited with exit code: 1
    Mar 10 08:34:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:34:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1924]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:34:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1924]): Exited with exit code: 1
    Mar 10 08:34:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:34:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1925]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:34:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1925]): Exited with exit code: 1
    Mar 10 08:34:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:34:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1926]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:34:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1926]): Exited with exit code: 1
    Mar 10 08:34:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:34:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1935]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:34:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1935]): Exited with exit code: 1
    Mar 10 08:34:50 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:35:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1936]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:35:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1936]): Exited with exit code: 1
    Mar 10 08:35:00 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:35:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1937]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:35:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1937]): Exited with exit code: 1
    Mar 10 08:35:10 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:35:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1938]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:35:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1938]): Exited with exit code: 1
    Mar 10 08:35:20 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:35:29 xrdsx1 /usr/sbin/PasswordService[53]: client response doesn't match what we generated
    Mar 10 08:35:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1941]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:35:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1941]): Exited with exit code: 1
    Mar 10 08:35:30 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds
    Mar 10 08:35:30 xrdsx1 /usr/sbin/PasswordService[53]: client response doesn't match what we generated
    Mar 10 08:35:40: --- last message repeated 2 times ---
    Mar 10 08:35:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1948]): posix_spawn("/Library/Application Support/iStat local/iStatLocal", ...): No such file or directory
    Mar 10 08:35:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal[1948]): Exited with exit code: 1
    Mar 10 08:35:40 xrdsx1 com.apple.launchd[1] (com.bjango.istatlocal): Throttling respawn: Will start in 10 seconds

    My first problem is that istat in no longer installed on the machine but somewher there is a file trying to activate it and it keeps erroring out.
    Looking at the server through server admin graphs the CPU is maxxed out and through activity monitor CPU usage is 119% on AFP services 40% on kernel_task 50% mds other services chime in but are not at these levels. I cannot determine what is causing these services to utilize so many resources.
    More server info: this is an auth server with some homedirs, there are approximately 300 client machines looking to it with 80-100 of which are connected for home directories similar connections are made with 2 other homedir replica servers for other clients.

  • Exchange Server 2013 and Remote Access VPN on a single server running Windows Server 2012?

    Just by way of background, I have been installing and administering network servers, e-mail systems, VPN servers, and the like for many years.  However, my involvement with Exchange and Windows Server has been mostly on the forensics and data recovery
    level, or as a (sophisticated) user.  I have never tried to deploy either from scratch before.  My deployment experiences have been mostly with Linux in recent years, and with small private or personal "servers" running such cutting edge
    software as Windows XP back when it was new.  And even NetWare once.
    When a client asked me if I could set up a server for his business, running Exchange Server (since they really want Outlook with all of its bells and whistles to work, particularly calendars) and providing VPN access for a shared file store, I figured it
    could not be too difficult given that its a small business, with only a few users, and nothing sophisticated in the way of requirements.  For reasons that don't bear explaining here, he was not willing to use a vendor hosting Exchange services or cloud
    storage.  There is no internal network behind the server; it is intended to be a stand-alone server, hanging off a static IP address on the Internet, providing the entirely mobile work-force of about 10 people with Exchange-hosted e-mail for their computers
    and phones, a secure file store, and not much else.  If Exchange didn't need it, I would not need to install Active Directory, for example.  We have no direct need for its services.
    So I did the research and it appears, more by implication than outright assertion, that I should be able to run Windows Server 2012 with Exchange Server 2013 on a server that also hosts Remote Access (VPN only) and does nothing else.  And it appears
    I ought to be able to do it without virtualizing any of it.  However, I have spent the last three or four days fighting one mysterious issue after another.  I had Remote Access VPN working and fairly stable very quickly (although it takes a very
    long time to become available after the server boots), and it has mostly remained reliable throughout although at times while installing Exchange it seems to have dropped out on me.  But I've always been able to get it back after scrounging through the
    logs to find out what is bothering it.  I have occasionally, for a few minutes at a time, had Exchange Server willing to do everything it should do (although not always everything at the same time).  At one point I even received a number of e-mails
    on my BlackBerry that had been sent to my test account on the Exchange Server, and was able to send an e-mail from my BlackBerry to an outside account.
    But then Exchange Server just stopped.  There are messages stuck in the queues, among other issues, but the Exchange Administration Center refuses now to display anything (after I enter my Administrator password, I just get a blank screen, whether on
    the server or remotely).
    So, I am trying to avoid bothering all of you any more than I have to, but let me just begin with the basic question posed in the title: Can I run Exchange Server (and therefore Active Directory and all of its components) and Remote Access (VPN only) on
    a single Windows Server 2012 server?  And if so, do I have to run virtual machines (which will require adding more memory to the server, since I did not plan for it when I purchased it)?  If it can be done, can anyone provide any pointers on what
    the pitfalls are that may be causing my problems?  I am happy to provide whatever additional information anyone might like to help figure it out.
    Thanks!

    An old thread but I ran into this issue and thought I share my solution since I ran into the same issue. Configuring VPN removes the HTTPS 443 binding on the Default Site in IIS for some strange reason; just go and editing the bindings, add HTTPS and things
    should be back to normal.

  • Win 7 Pro 64 occasionally fails to connect using IKEV2 to Win2008R2 Routing and Remote Access server

    I'm a networking guy and having this troubling VPM issue that I can't find.
    I have a number of VPN connections from my Win7Pro 64 PC to various customers.  Their end points are all Windows Routing and Remote Access on Windows 2008R2 STD servers.
    Every once and a while I will hang at Verifying User ID and Password and eventually get  ERROR 809. Change the security type on my VPN connection from IKEV2 to PPTP - never an issue, connects in right away.
    I can also try from another PC (at the same or alternate location) to get into that same server using the same credentials and access - no issue using either IKEV2 or PPTP.
    This has happened at various times to various customers. Here is what I know it is not:
    - Not the local or remote routers or Firewalls since I can always get in from other PC's going through the same network. Even so, tried rebooting all several times
    - Not an ISP issue at either end since I can always get into other IKEV2 servers from the same PC and from other PC's to the server I can't from my PC.
    This leads to the only logical conclusion.  It is something to do with my Win7Pro 64 PC but for the life of my I can not find it.
    I have obviously tried rebooting the Win7Pro PC. I have also tried recreating the VPN connection several times. Nothing.
    Help!

    Hi,
    I know that you've mentioned that it is not a issue about firewall or router settings, but this error usually comes when some firewall between client and server is blocking the ports used by VPN tunnel.
    so to allow IKEv2 traffic, please make sure to configure the network firewall to open UDP ports 500 and 4500, and to allow IP protocol 50.
    If that is not possible, deploy SSTP based VPN tunnel on both VPN server and VPN client – that allows VPN connection across firewalls, web proxies and NAT
    You can refer to this blog
    http://blogs.technet.com/b/rrasblog/archive/2006/06/14/which-ports-to-unblock-for-vpn-traffic-to-pass-through.aspx
    Regards
    Yolanda
    TechNet Community Support

  • Remote Desktop cannot verify the identity of the computer because there is a time or date diffrence between your computer and remote computer

    Hello.....
    I'm not able to log into Windows Server 2008 r2 server thorugh Remote Desktop connection, receiving below error message.
    This issue is with only three servers in the environment
    "Remote Desktop cannot verify the identity of the computer because there is a time or date diffrence between your computer and remote computer......"
    The date/time is correct on the server when i checked in the console session of the server
    Can see below messages in event logs
    Event ID 1014:
    "Name resolution for the name XYZdomain.com timed out after none of the configured DNS servers responded."
    Event ID 1053:
    The processing of Group Policy failed. Windows could not resolve the user name. This could be caused by one of more of the following:
    a) Name Resolution failure on the current domain controller.
    b) Active Directory Replication Latency (an account created on another domain controller has not replicated to the current domain controller).
    Any thoughts ....

    Hi,
    Have you tried to connect these three servers with IP address instead of computer name or DNS name?
    Check Remote Desktop Connection settings: Option-->Advanced-->Connect from anywhere-->Settings-->Connection Settings-->Select “Do not user an RD Gateway server”
    For more information please refer to following MS articles:
    Remote Desktop cannot verify the identity of the remote computer because there is a time or date difference between your computer and the remote computer
    http://social.technet.microsoft.com/Forums/en-US/w7itpronetworking/thread/c1f64836-5606-49b0-82eb-56be7f696520
    Cannot connect via Remote Desktop
    http://social.technet.microsoft.com/Forums/en-US/windowsserver2008r2general/thread/5087e897-8313-468c-ad37-ef18b87d4dd6
    Lawrence
    TechNet Community Support

Maybe you are looking for