Profile Manager not sending invites

Hi,
I've got my server setup with SMTP, and can foward the email to my exchange server without issue, but now when in profile manager I click to send the invite, I don't get anything. I checked the SMTP out log and nothing there. If I go to the service log for profile manager in the Server.app, I constantly get:
[237] [2014/03/13 19:00:19.564] I: Unable to read server organization (File /Library/Preferences/com.apple.servermgr_info.plist not readable!)
I have checked in /Library/Preferences and I do not have a "com.apple.servermgr_info.plist" file at all. Maybe this is why?
Any help would be greatly appricated!

Yes actually. I was able to get Apple Enterprise support on the phone and the first thing we did was use changeip to verify all DNS was setup correct. It was.
My problem was related to the fact I was trying to use Profile Manager to ONLY assign apps from my VPP. I never went through the entire process to setup Device Management. After doing that and re-setting up the assignment part, the emails started to send.
Let me know if that helps.

Similar Messages

  • Profile Manager not quite loading...

    Hi all,
    I have a question about Profile Manager not loading on a fresh install. I've got this working in the past, but don't ask me how as I don't know anymore, plus the conditions were different.
    Now when I go to https://server.example.com/profilemanager or /mydevices I can't even log in and it doesn't show anything. The status bar in Safari shows that 5 out of 7 items have been loaded and when I view the source, it shows:
    <!DOCTYPE html><html>  <head>    <script>    var _SC_performanceEvents = { headStart: new Date().getTime() };    </script>        <meta http-equiv="Content-type" content="text/html; charset=utf-8" />    <meta http-equiv="X-UA-Compatible" content="IE=8" />    <meta http-equiv="Content-Script-Type" content="text/javascript" />    <meta name="apple-mobile-web-app-capable" content="yes" />    <meta name="apple-mobile-web-app-status-bar-style" content="default" />    <meta name="viewport" content="initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />    <link rel="apple-touch-icon" href="/devicemanagement/console/sproutcore/foundation/en/b74a542f762e55107620d6f19465a 4ec3258c4df/images/sproutcore-logo.png" />  <link rel="apple-touch-startup-image" media="screen and (orientation:portrait)" href="/devicemanagement/console/sproutcore/foundation/en/b74a542f762e55107620d6f19465a 4ec3258c4df/images/sproutcore-startup-portrait.png" />        <link rel="apple-touch-startup-image" media="screen and (orientation:landscape)" href="/devicemanagement/console/sproutcore/foundation/en/b74a542f762e55107620d6f19465a 4ec3258c4df/images/sproutcore-startup-landscape.png" />  <link rel="shortcut icon" href="" type="image/x-icon" />        <title>Admin</title>  <script type="text/javascript">/* >>>>>>>>>> BEGIN source/core.js */// ==========================================================================// Project:   SproutCore - JavaScript Application Framework// Copyright: ©2006-2009 Sprout Systems, Inc. and contributors.//            Portions ©2008-2009 Apple Inc. All rights reserved.// License:   Licensed under MIT license (see license.js)// ==========================================================================
    /* >>>>>>>>>> BEGIN source/system/browser.js */// ==========================================================================// Project:   SproutCore - JavaScript Application Framework// Copyright: ©2006-2009 Sprout Systems, Inc. and contributors.//            Portions ©2008-2009 Apple Inc. All rights reserved.// License:   Licensed under MIT license (see license.js)// ==========================================================================
    var SC = SC || { BUNDLE_INFO: {}, LAZY_INSTANTIATION: {} };
    SC.browser = (function() {  var userAgent = navigator.userAgent.toLowerCase(),      version = (userAgent.match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [])[1] ;
      var browser = {    version: version,    safari: (/webkit/).test( userAgent ) ? version : 0,    opera: (/opera/).test( userAgent ) ? version : 0,    msie: (/msie/).test( userAgent ) && !(/opera/).test( userAgent ) ? version : 0,    mozilla: (/mozilla/).test( userAgent ) && !(/(compatible|webkit)/).test( userAgent ) ? version : 0,    mobileSafari: (/apple.*mobile.*safari/).test(userAgent) ? version : 0,    chrome: (/chrome/).test( userAgent ) ? version : 0,    windows: !!(/(windows)/).test(userAgent),    mac: !!((/(macintosh)/).test(userAgent) || (/(mac os x)/).test(userAgent)),    language: (navigator.language || navigator.browserLanguage).split('-', 1)[0]  };      browser.current = browser.msie ? 'msie' : browser.mozilla ? 'mozilla' : browser.safari ? 'safari' : browser.opera ? 'opera' : 'unknown' ;  return browser ;})();
    /* >>>>>>>>>> BEGIN source/system/bench.js */// ==========================================================================// Project:   SproutCore - JavaScript Application Framework// Copyright: ©2006-2010 Sprout Systems, Inc. and contributors.//            Portions ©2008-2010 Apple Inc. All rights reserved.// License:   Licensed under MIT license (see license.js)// ==========================================================================
    // sc_require("system/browser")if (typeof _SC_performanceEvents !== "undefined") {  SC._performanceEvents = _SC_performanceEvents;  _SC_performanceEvents = undefined;} else {  SC._performanceEvents = { headStart: new Date().getTime() };}/* >>>>>>>>>> BEGIN source/system/loader.js */// ==========================================================================// Project:   SproutCore - JavaScript Application Framework// Copyright: ©2006-2009 Sprout Systems, Inc. and contributors.//            Portions ©2008-2009 Apple Inc. All rights reserved.// License:   Licensed under MIT license (see license.js)// ==========================================================================
    // sc_require("system/browser");
    SC.bundleDidLoad = function(bundle) {  var info = this.BUNDLE_INFO[bundle] ;  if (!info) info = this.BUNDLE_INFO[bundle] = {} ;  info.loaded = true ;};
    SC.bundleIsLoaded = function(bundle) {  var info = this.BUNDLE_INFO[bundle] ;  return info ? !!info.loaded : false ;};
    SC.loadBundle = function() { throw "SC.loadBundle(): SproutCore is not loaded."; };
    SC.setupBodyClassNames = function() {  var el = document.body ;  if (!el) return ;  var browser, platform, shadows, borderRad, classNames, style;  browser = SC.browser.current ;  platform = SC.browser.windows ? 'windows' : SC.browser.mac ? 'mac' : 'other-platform' ;  style = document.documentElement.style;  shadows = (style.MozBoxShadow !== undefined) ||                 (style.webkitBoxShadow !== undefined) ||                (style.oBoxShadow !== undefined) ||                (style.boxShadow !== undefined);    borderRad = (style.MozBorderRadius !== undefined) ||               (style.webkitBorderRadius !== undefined) ||              (style.oBorderRadius !== undefined) ||              (style.borderRadius !== undefined);    classNames = el.className ? el.className.split(' ') : [] ;  if(shadows) classNames.push('box-shadow');  if(borderRad) classNames.push('border-rad');  classNames.push(browser) ;  classNames.push(platform) ;  if (parseInt(SC.browser.msie,0)==7) classNames.push('ie7') ;  if (SC.browser.mobileSafari) classNames.push('mobile-safari') ;  if ('createTouch' in document) classNames.push('touch');  el.className = classNames.join(' ') ;} ;
    /* >>>>>>>>>> BEGIN bundle_loaded.js */; if ((typeof SC !== 'undefined') && SC && SC.bundleDidLoad) SC.bundleDidLoad('sproutcore/bootstrap');
    </script>
         <link href="/devicemanagement/console/sproutcore/en/a8b61437c15a278078f3fffb972489104026f783 /stylesheet-packed.css" rel="stylesheet" type="text/css" />  <link href="/devicemanagement/console/apple_theme_v2/en/63cd5f0fb706373f354a879d93bb4f0dc898 b2b2/stylesheet.css" rel="stylesheet" type="text/css" />  <link href="/devicemanagement/console/admin/en/0803f0af1163f6efa8d9d71f0cc7179d84da0f27/styl esheet.css" rel="stylesheet" type="text/css" />       <script>    SC._performanceEvents['headEnd'] = new Date().getTime();    </script>  </head>      <body class="apple-theme-v2 focus">      <script>    SC._performanceEvents['bodyStart'] = new Date().getTime();    </script><script type="text/javascript">/* >>>>>>>>>> BEGIN source/setup_body_class_names.js */// ==========================================================================// Project:   SproutCore - JavaScript Application Framework// Copyright: ©2006-2009 Sprout Systems, Inc. and contributors.//            Portions ©2008-2009 Apple Inc. All rights reserved.// License:   Licensed under MIT license (see license.js)// ==========================================================================
    // sc_resource('setup_body_class_names'); // publish into inline format
    if (SC.setupBodyClassNames) SC.setupBodyClassNames() ;
    </script>
      <script type="text/javascript" src="/devicemanagement/console/sproutcore/en/a8b61437c15a278078f3fffb972489104026f783 /javascript-packed.js"></script>  <script type="text/javascript" src="/devicemanagement/console/apple_theme_v2/en/63cd5f0fb706373f354a879d93bb4f0dc898 b2b2/javascript.js"></script>  <script type="text/javascript" src="/devicemanagement/console/admin/en/0803f0af1163f6efa8d9d71f0cc7179d84da0f27/java script.js"></script><script type="text/javascript">String.preferredLanguage = "en";</script>
      <script>  SC._performanceEvents['bodyEnd'] = new Date().getTime();  </script> </body></html>
    ...which looks fine to me. My question is: why doesn't the page show up at all (ultimately it fails)?
    I have included a screen print of my server's server.app below:
    Thanks in advance.

    I had multiple IP's set on my server, which randomly seemed to switch. It seems like there is an incompatibility still between Server Admin and server.app. Since Apple is pressing developers to test server admin and server.app I am confident those problems will resolve eventually, but for now I have deleted all-but-1 IPv4 and 1 IPv6 address (same interface), the networking interface overview for my server within Server Admin was updated and it looks like it works solid now, this was not by design I presume, so this must be another bug plaguing Lion...
    After upgrading Postgres to 9.1.3 and upgrading webmail (upgrade: usr/share/webmail) from www.roundcube.net, making a new site webmail.example.com with the files stored in /Library/Server/Web/Data/Sites/CustomSitesDefault/webmail/ I made a symbolic link from that 'directory' to the actual built in webmail facility found in /usr/share/webmail by entering the following in terminal.
    ln -s -i /usr/share/webmail/ /Library/Server/Web/Data/Sites/CustomSitesDefault/webmail/
    By doing this it will ask to remove a directory, if you didn't put any important files in there, which I presume you didn't, confirm with the letter y and press enter.
    Webmail now works every time the way I want it The same goes for Profile Manager, at least for now...

  • Calendar not sending invitations

    My calendar does not send meeting invitation once I press 'done'.

    My calendar does not send invitations when I add the attendees. According to the guide it should automatically send these invitations once I enter the contact details and press 'done'. I have tried it with both individual and multiple invitations.
    Please advice as this is a a key feature that I require.
    PS - I have also tried reinstalling the latest update.

  • Profile manager not working? iOS 6

    I have mac mini working as Mountain Lion Server 10.8.2, Server.app 2.1 (upgraded from 10.7.4 Server)
    (All services are using 3rd party ssl certificates)
    previously enrolled devices are getting push changes.
    I got a new iphone 4 (service upgrade) with ios6, and when i enroll it, it gets a name: New Device in profile manager
    Not the name that it has been named. And the push settings arent pushed. Other devices do get changes.
    I got the right name for the iphone to profile manager, by filling the data as a place holder device. Then it got the
    right name for the device. But push payloads are not working.

    the device logs gets 500 error code, you van see this in iphone configuration utility or in apple configurator.
    as follows in console:
    "US Desc: A transaction with the server at “https://server.com/devicemanagement/api/device/connect” has failed with the status “500”.
    Domain : MCHTTPTransactionErrorDomain
    Code   : 23001
    Type   : MCFatalError

  • Profile manager not work after restore

    Dear All,
    I am facing problem on my mac mini server.
    Because my mac mini server failure before (Harddisk issue) and i use Time machine to repair the server
    after i complete the restore process and try to use profile manager to send the app to enrolled ipad .
    It doesn't work.
    anythings i should do  after restored the server in order to make it work?
    Thanks

    essandess,
    Can you look for errors in the /Library/Logs/ProfileManager/migration_tool.log file? Paste any errors you see from the date/time of the upgrade in here.
    If you see "cannot drop function dm_current_timestamp()" in the error, then the solution is posted here:
    Server 4.1 Profile Manager Migration Failed

  • Users added to Profile Manager not showing up in everyone group

    So profile manager was working quite well until I made a change to the workgroup group.
    I removed the password policy from the workgroup group and added a new group for the password policy so we could essentially still manage non user assigned iOS devices.
    Now when I add a new user to the workgroup group on the server I have them login to the mydevices site so we can enroll the device and they can login but are immediately presented with:
    "You do not have permission to access the page you were looking for. Contact your system administrator."
    In troubleshooting the issue I noticed that new users being added are not showing up the in the everyone group which is preventing the users from having proper access. Prior to all this I could add a user and they would show up in everyone as intended.
    Any thoughts?

    I'm not sure if this is the same issue, but I have a user in Server.app that is not showing up in Users group. She is listed in her sub-group, but I cannot add devices to her account. When I click on the arrow next to her name in the sub-group, it takes me to the Users list to the top user.
    Any thoughts?

  • Profile Manager not starting anymore on Lion

    I recently had the bright idea to change my server's hostname and my admin password on the same day (don't ask) and things have been pretty wobbly since then. After going over each entry in the Keychain to change the password, I'm still having some issues with the Profile Manager. I had profiles created under the old hostname (with devices associated to it). I deleted the profiles from my various devices hoping to re-associate them with the new hostname but the Profile Manager won't start anymore, or rather will show as running but really, it timed out.
    I know people have been have been having issues with postgres but everything was working fine under the old hostname so I'm not sure that's the same problem. Thanks for the help.
    Aug 13 09:51:52 helios servermgrd[90]: servermgr_postgres: waiting for postgres to respond
    Aug 13 09:52:30 helios com.apple.devicemanager[16820]: DEBUG: Initializing DeviceManagerDaemon with ports 3320,3321,3322,3323,3324,3325 (physmem = 5GB)
    Aug 13 09:52:30 helios com.apple.devicemanager[16820]: DEBUG: Making sure Rails is configured properly
    Aug 13 09:52:30 helios com.apple.devicemanager[16820]: DEBUG: Running rake command: /usr/bin/rake db:migrate
    Aug 13 09:52:31 helios com.apple.launchd.peruser.70[16834]: Background: Bug: launchd_core_logic.c:3063 (24984):3
    Aug 13 09:52:31 helios com.apple.launchd.peruser.70[16834]: Background: job_mig_intran() was confused by PID 16750 UID 70 EUID 70 Mach Port 0x1a07:
    Aug 13 09:52:31 helios com.apple.launchd.peruser.70[16834]: Bug: launchd_core_logic.c:8528 (24984):3: j != NULL
    Aug 13 09:52:31 helios sandboxd[16830] ([16827]): ruby(16827) deny file-read-metadata /private/var/folders/zz/zyxvpxvq6csfxvn_n00000vm00006x
    Aug 13 09:52:32 helios servermgrd[90]: servermgr_devicemgr: response statusCode: 0
    Aug 13 09:52:32 helios servermgrd[90]: servermgr_devicemgr: waiting for devicemgr to respond
    Aug 13 09:52:34 helios servermgrd[90]: servermgr_devicemgr: response statusCode: 0
    Aug 13 09:52:34 helios servermgrd[90]: servermgr_devicemgr: waiting for devicemgr to respond
    Aug 13 09:52:34 helios sandboxd[16830] ([16827]): ruby(16827) deny mach-lookup com.apple.distributed_notifications@1v3
    Aug 13 09:52:36 helios servermgrd[90]: servermgr_devicemgr: response statusCode: 0
    Aug 13 09:52:36 helios servermgrd[90]: servermgr_devicemgr: waiting for devicemgr to respond
    Aug 13 09:52:38 helios servermgrd[90]: servermgr_devicemgr: response statusCode: 0
    Aug 13 09:52:38 helios servermgrd[90]: servermgr_devicemgr: waiting for devicemgr to respond
    Aug 13 09:52:40 helios servermgrd[90]: servermgr_devicemgr: response statusCode: 0
    Aug 13 09:52:40 helios servermgrd[90]: servermgr_devicemgr: waiting for devicemgr to respond
    Aug 13 09:52:42 helios servermgrd[90]: servermgr_devicemgr: response statusCode: 0
    Aug 13 09:52:42 helios servermgrd[90]: servermgr_devicemgr: waiting for devicemgr to respond
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateDevices (20100225003807)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateEmailKnobSets (20100226010444)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateUsers (20100303214947)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateWebClipKnobSets (20100303223617)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateRestrictionsKnobSets (20100303223810)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateLdapKnobSets (20100303223914)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateCalDavKnobSets (20100303224035)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateCalSubKnobSets (20100303224314)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateScepKnobSets (20100303235704)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateApnKnobSets (20100304000230)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateExchangeKnobSets (20100304000404)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateWifiKnobSets (20100304000926)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateCertificateKnobSets (20100304233616)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateVpnKnobSets (20100304234049)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateDockKnobSets (20100305002947)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateFinderKnobSets (20100305223616)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateUserGroups (20100317233008)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateTasks (20100322225845)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateDataFiles (20100422224508)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateProfiles (20100510203627)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateMembersProfiles (20100510220318)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateKnobSetsProfiles (20100510220334)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateDeviceGroups (20100510222436)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateGeneralKnobSets (20100518204147)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreatePasscodeKnobSets (20100518204156)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateProvisioningProfiles (20100609232301)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateMcxKnobSets (20100615210803)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateSettings (20100617233207)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateEnetAddresses (20100708220118)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateCardDavKnobSets (20100723165735)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateIchatKnobSets (20100804174836)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateDirectoryKnobSets (20100909181713)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateInterfaceKnobSets (20101022202242)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateSecurityKnobSets (20101022202251)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateSessions (20110120211636)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateSoftwareUpdateKnobSets (20110129135100)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreatePrintingKnobSets (20110129183610)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateApplicationsKnobSets (20110129183821)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateMediaAccessKnobSets (20110129183919)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateMobilityKnobSets (20110129184019)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateLabSessions (20110131082411)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreatePrinters (20110131153902)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateSystemApplications (20110132160137)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateLoginWindowKnobSets (20110202142954)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateWidgets (20110224125749)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateLoginItemKnobSets (20110228082620)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateAutoJoinProfiles (20110299999999)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateMacRestrictionsKnobSets (20110329155119)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateEnergySaverKnobSets (20110402120909)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateParentalControlsKnobSets (20110404133805)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to SettingsAddServerHostname (20110407154640)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to ProfilesAddIsSystemLevel (20110407155130)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to DropApplicationsKnobSets (20110407155300)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to DropMediaAccessKnobSets (20110407155330)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to DevicesAddEthernetmac (20110421100355)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to SettingsAddCodeSignCertRef (20110426131700)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreateCfprefsKnobSets (20110426150013)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to SettingsUpdateCodeSignCertRef (20110428103150)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to InterfacesAddSecurity (20110502140408)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to CreatePrivacyKnobSets (20110506085644)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to SettingsAddIsOdCaRooted (20110512141100)
    Aug 13 09:52:44 helios com.apple.devicemanager[16820]: Aug 13 09:52:44 myserver.mydomain.com ProfileManager[16831] <Info>: Migrating to LabSessionAddPendingOdUserGuid (20110520135430)
    Aug 13 09:52:44 helios servermgrd[90]: servermgr_devicemgr: response statusCode: 0
    Aug 13 09:52:44 helios servermgrd[90]: servermgr_devicemgr: waiting for devicemgr to respond
    Aug 13 09:52:45 helios com.apple.devicemanager[16820]: (in /usr/share/devicemgr/backend)
    Aug 13 09:52:46 helios servermgrd[90]: servermgr_devicemgr: response statusCode: 0
    Aug 13 09:52:46 helios servermgrd[90]: servermgr_devicemgr: waiting for devicemgr to respond
    Aug 13 09:52:48 helios servermgrd[90]: servermgr_devicemgr: response statusCode: 0
    Aug 13 09:52:48 helios servermgrd[90]: servermgr_devicemgr: waiting for devicemgr to respond
    Aug 13 09:52:50 helios servermgrd[90]: servermgr_devicemgr: response statusCode: 0
    Aug 13 09:52:50 helios servermgrd[90]: servermgr_devicemgr: waiting for devicemgr to respond
    Aug 13 09:52:52 helios servermgrd[90]: servermgr_devicemgr: response statusCode: 0
    Aug 13 09:52:52 helios servermgrd[90]: servermgr_devicemgr: waiting for devicemgr to respond
    Aug 13 09:52:54 helios servermgrd[90]: servermgr_devicemgr: response statusCode: 0
    Aug 13 09:52:54 helios servermgrd[90]: servermgr_devicemgr: waiting for devicemgr to respond
    Aug 13 09:52:56 helios servermgrd[90]: servermgr_devicemgr: response statusCode: 0
    Aug 13 09:52:56 helios servermgrd[90]: servermgr_devicemgr: waiting for devicemgr to respond
    Aug 13 09:52:58 helios servermgrd[90]: servermgr_devicemgr: response statusCode: 0
    Aug 13 09:52:58 helios servermgrd[90]: servermgr_devicemgr: waiting for devicemgr to respond
    Aug 13 09:53:00 helios servermgrd[90]: servermgr_devicemgr: response statusCode: 0
    Aug 13 09:53:00 helios servermgrd[90]: servermgr_devicemgr: waiting for devicemgr to respond
    Aug 13 09:53:02 helios servermgrd[90]: servermgr_devicemgr: Timed out trying to confirm devicemgr is responding.

    Try this in Terminal.app:
    cd /etc/apache2/sites
    sudo -s # become admin--you will have to enter your password here
    rm 0000_any_443_.conf
    cp 0000_any_80_.conf.default 0000_any_80_.conf
    cp virtual_host_global.conf.default virtual_host_global.conf
    exit # go back to being a normal user
    Then go back to Server.app and restart your services.

  • ICal not sending invites

    Hey,
    Is there anybody experienced tha problem when trying to send invite (meeting request) via iCal it sais:
    iCal could not send the invitation.
    To send invitations, create a card in Address Book.
    I've created Address Book card for that person but it didn't solve my problem.
    Any thoughts?

    Solution: just add yourself in Address Book and click "Card" -> "Make This My Card" for iCal to know whom to put in "From" field.

  • Profile Manager not working at all, psql cannot connect to server??

    Upgraded existing system to Mavericks. Everything was running fine with Mountain Lion, everything fine on my test server too. After upgrade to Server 3.0, Profile Manager does not work. It cannot be configured.
    After reading through posts here and trying their suggestions I find that psql cannot connect to the server and get this error at every turn.
    psql: could not connect to server: No such file or directory
              Is the server running locally and accepting
              connections on Unix domain socket "/Library/Server/ProfileManager/Config/var/PostgreSQL/.s.PGSQL.5432"?
    Activity monitor shows it's running, also checked network utility to make sure I could get a connection through 127.0.0.1 on port 5432. It's good too.
    Also in the migration_tool.log file the last entry backs up this error.
    STDERR  | psql: could not connect to server: No such file or directory
                |           Is the server running locally and accepting
                |           connections on Unix domain socket "/Library/Server/ProfileManager/Config/var/PostgreSQL/.s.PGSQL.5432"?
    Where do I start? I think getting psql working is a big first step....

    Thanks Tim,
    I manage several different systems so I started comparing the one that doesn't work to one that does work.
    On the one that's malfunctioning, this is a message I see often:
    Is the server running locally and accepting
              connections on Unix domain socket "/Library/Server/ProfileManager/Config/var/PostgreSQL/.s.PGSQL.5432"?
    So I checked to see what's in the directory /Library/Server/ProfileManager/Config/var/PostgreSQL/ and got this result.
    sudo ls -la /Library/Server/ProfileManager/Config/var/PostgreSQL/
    total 0
    drwxr-xr-x  2 _devicemgr  _devicemgr   68 Dec  4 09:31 .
    drwxr-xr-x  3 _devicemgr  _devicemgr  102 Nov 13 06:13 ..
    An Obviously empty directory.
    Now on the server that's working this is what I get.
    sudo ls -la /Library/Server/ProfileManager/Config/var/PostgreSQL/
    Password:
    total 16
    drwxr-xr-x  6 _devicemgr  _devicemgr  204 Nov 22 17:47 .
    drwxr-xr-x  8 _devicemgr  _devicemgr  272 Nov 22 17:48 ..
    srwxrwx---  1 _devicemgr  _devicemgr    0 Dec  4 09:20 .s.PGSQL.5432
    -rw-------  1 _devicemgr  _devicemgr  139 Dec  4 09:20 .s.PGSQL.5432.lock
    srw-rw-rw-  1 _devicemgr  _devicemgr    0 Nov 22 17:47 .xpg.skt
    lrwxr-xr-x  1 _devicemgr  _devicemgr    3 Nov 22 17:47 .xpg.skt.lock -> 164
    Obviously something is missing on the one that's malfunctioning.
    I think that pgsql isn't running correctly and like you said Apple moved some things and we don't know where all of them went.
    Any suggestions anybody?

  • Devices in profile manager not showing

    I have profile manager set up and I have tried to enroll the device, but it does not show in the devices panel.  I want to use profile manager to manage the devices, not so much the users.  These macs are on a cart and they are bound to active directory and many students login to them on any given day.  I also set up a default user so that they all get the same look and cannot change any settings.  I am stumped.  I was trying to  find a log to look at but not sure where to start to trouble shoot.  Suggestions would be appreciated  I am running os x 10.7.4 lion server. Thanks

    You should probably move this post to The OS X Server part of Apple Discussions.
    https://discussions.apple.com/community/servers_enterprise_software/os_x_server
    I don't have the clearance to actually move the post.

  • Mac calendar does not send invites

    won't do it from mac calendar or icloud calendar
    SM

    iCloud calendar doesn't send invitations to Gmail users...
    FIX: iCloud Calendar Invites Not Sending

  • Calendar not sending invites

    Hello All,
    We are using a Snow Leopard Server for our iCal server and since we upgraded to Mavericks our Calendar application will now not send out the invited to people we add to the calendar events. Any ideas?
    Thanks,
    Rich

    I have been doing quite some search and tried multiple things like resetting daemons etc. but nothing there. Then I tried to use another calendar app and sync to that app using the CalDAV server I have at home on my Synology disk station .... I soon as I have activated my CalDAV account - oh magic - invites sending was suddenly back. Morale of the story: if you activate a CalDAV/iCloud/Google account -- even without publishing anything there -- this seems to reactivate notifications. And yes this seems a beautiful bug (or feature ) in Calendar code and I hope that Apple will fix it. But for now this workaround solved my problem and hope it can help.
    All the best.

  • Profile Manager - Not Found  The requested URL /wiki was not found on this server.

    I have installed Lion Server with Web and Profile Manager services. When I log into the profile manager web page I receive the message "Not Found  The requested URL /wiki was not found on this server."  I followed the guide here for install http://krypted.com/iphone/setting-up-profile-manager-in-lion-server/.

    This was the fixed I found
    Fixing profile manager has been solved by someone else:
    1.  Turn off all services under Server app.
    2.  Under Hardware, settings, change SSL certificate to "none"
    3.  Under Hardware, network, reset host name again.
    4.  Under Hardware, settings, change SSL certificate back to correct one
    5.  Turn Web service ON.
    It may still say /var/empty.
    6.  Turn Wiki service ON
    7.  Recheck Web service.  It should be changed to /Library/Server/Web/Data/Sites/Default.

  • Profile manager not found

    everytime i try opening profile manager it says it is not found and when i try opening the portal it says its not running but it is running....one thing i did do is change the host name after i started messing around with the server...any ideas whats wrong or what i could do?

    bump..bueller...bueller....

  • Mountain Lion Server Profile Manager not accessible externally

    What do I need to be checking if I can't access our Mountain Lion server's Profile Manager externally.  From a test iPad on a carrier's 3G network, I get a "server not found" error when using http://fqdn/.  I can bring up the server page if I use https://publicipaddress. but not https://publicipaddress/profilemanager.  Apple tried accessing the server with the same findings.  We're a state agency behind tight firewall and security and we're told that all Profile manager needed ports are open...  Thanks.

    Nelson -
    Pretty much everything boiled down to DNS, firewalls and ports.  Unfortunately, I was never able to acertain which of the three items were causing this problem because we have a separate group who manages the network and firewall (plus a separate security team).  If I recall, once they focused on what it was I was trying to accomplish, most of the problems "magically" went away. 
    Is your reverse DNS working the way it's supposed to?  Ex:
    yourserver:~ login$ hostname
    yourserver.yourdomainname
    yourserver:~ login$ host yourserver.yourdomainname
    yourserver.yourdomainname has address 10.x.x.x
    yourserver:~ login$ host 10.x.x.x
    3.34.2.10.in-addr.arpa domain name pointer yourserver.yourdomainname
    yourserver:~ login$
    Also be sure to follow "burton11234's" posts.  https://discussions.apple.com/people/burton11234?view=overview

Maybe you are looking for

  • Problems adding native extensions from linked resources in Flash Builder 4.7

    While adding native extensions (.ane files) from linked source folder in a Actionscript Mobile Project on Flash Builder 4.7, a java.lang.NullPointerException is thrown. Below is the stacktrace. Any help would be appreciated. Also, what is the link/si

  • Get most recent backup completed within last week

    Hi.  I need your help with this... I want to get a list of the most recent .bak files created in the last week.  I need to select [database_name] and [backup_finish_date] from msdb..backupset and [physical_device_name] from msdb..backupmediafamily ta

  • How to change power state in a Service Profile Template

    I'd like to change the setting "Power State" in a Service Profile Template. While I can change nearly every other aspect of the template, I can't find this in the UCS Manager GUI. Is this an immutable decision while creating the template? Can I chang

  • Bad idea to create new folders at the root level?

    I have several clients who have been Mac user's since OS 8 and even earlier. When they transitioned to OS X they did not learn to use their local home folder properly and they continue to maintain a very cluttered folder structure at the root level o

  • Process Chains Performance

    Hi Experts, We have some Process Chains that require in total  a running time 6h30min (Data Loading, DSO activation, ... etc). We enhanced our system with patchs and support Packages, the time of running time was reduced to approximatively 6h00. For