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....

Similar Messages

  • 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 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...

  • Profile 0SMD_PE not found

    Hi SAP Patrons,
    I am unable to retrieve the Workload analysis data for a solution manager system. When I checked the Extractor Framework, the workload analysis (introscope data) was in error and the error message is "Profile 0SMD_PE not found" in the dataloader phase. (please refer to the attached screen shot)
    I am unable to find the infoube 0SMD_PE in RSA1 transaction however infocubes like 0SMD_PED1, 0SMD_PE2D, 0SMD_PRH... etc are available.
    Can you please help me correct the error?
    Thanks in advance.

    Hi,
    make sure you completed solman_setup -> basis system  configuration -> Configure automatically.
    This actually creates all the needed cubes and data collection.
    Thanks
    Jansi

  • Web Service session manager not found.

    I'm trying to understand how to use the HTTP utilities, and I'm having trouble just creating a session.  I get a Web Service session manager not found error.  I've read where the client has to support cookies.  My eventual client will be a labview VI that talks to a web server.  I llooked at the Toolsptions, but don't see anything related to cookies.  Not sure if that's what's causing this anyway, but I'm just digging.  Also, I want to eventually send http messages across TCP/IP.  Do I need to use the TCP/IP VIs (i.e. open connection, etc) or do I use the http utilities alone.  If both are needed, how does the httpRequestID and the TCP/IP connection ID correlate.
    Attachments:
    htttGetSession.vi ‏9 KB
    WebServerError.PNG ‏13 KB

    Hi can you please let me know how you resolved this issue?

  • 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

  • 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

  • Profile Manager Not Loading - auth_token doesn't exit

    We've have an instance of Server 3.1.2 where the Profile Manager login is no longer working, so we are effectively locked out of profile manager for the time being :-(.
    On the front-end, visiting the /profilemanager login page redirects to (FQDN in place of our actual domain):
    auth?redirect=https://FQDN/devicemanagement/api/authentication/callback
    and the page then hangs forever and never gets to the login prompt. Occasionally the login prompt will display but nothing happens after the credentials are entered.
    On the back-end, the profile manager log shows the following entries that coincide with the hanging of the login pages:
    [91384] [2014/08/20 01:43:46.401] I: Processing MagicController#do_magic (for 10.XXX.XXX.XXX at 2014-08-20 01:43:46) [POST]
    [91384] [2014/08/20 01:43:46.402] I: auth_token doesn't exist
    [91384] [2014/08/20 01:43:46.402] I: Filter chain halted as [:verify_auth_token] rendered_or_redirected.
    Other services on the server (e.g., DNS and Open Directory) seem to be operating normally. On other threads I've seen a suggestion to replace the FQDN with the IP, but that's yields the same result for us.
    Any ideas? This one is driving us nuts!
    Thanks for any input.

    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...

  • 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?

  • ESS - Career and Job - Career Profile: Page not found

    Hello,
    we are facing a problem. When I try to open the Service "Career profile" in subarea "Career" of area "Career and Job" we are getting the error "Page not found or not available". The default-log of the java server lists the following error:
    #1#javax.naming.NameNotFoundException: Object not found: com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.area_career_job/com.sap.pct.erp.ess.career_service at portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess.roles/com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.area_career_job.  Root exception is javax.naming.NamingException: Object not found: com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.area_career_job/com.sap.pct.erp.ess.career_service at portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess.roles/com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.area_career_job
    I tried to find out, what item in the IMG has to be changed to solve the problem but I cannot identify a service or a resource where the path com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.area_career_job/com.sap.pct.erp.ess.career_service at portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess.roles/com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.area_career_job is listed.
    Can anyone give helpful hints?
    Thanks in advance,
    André
    Edited by: Andre Siegling on Jun 14, 2010 4:40 PM

    Hi,
    The Resource you need to change is  EMPLOYEE_CAREER_PAG and the URL location should be as below:
    ROLES://portal_content/com.sap.pct/every_user/com.sap.pct.ess.employee/com.sap.pct.ess.roles/com.sap.pct.ess.employee_self_service/com.sap.pct.ess.employee_self_service/com.sap.pct.ess.area_career_job/com.sap.pct.ess.area_career_job
    This should solve the issue.
    Cheers-
    Pramod

  • Microsoft ODBC data manager not found

    I created a Universe using Information Design Tool and published it to the repository. My data source was MS SQL server 2008. At this point I am able to view the result values in query in IDT.
    Now when I try to preview the query in SAP Dashboard Design, I am getting the below error while using Query Builder in SAP Bo XI4 Dashboard designer.
    Request processing failed. (XLS 000009)
    Request processing failed. (XLS 000009) []&lt;com.businessobjects.dsl.commons.exception.NestedException: [Microsoft][ODBC Driver Manager]Data source name not found and no default driver specified&gt
    My Specifications are :
    MS SQL Server 2008 in 64 bit OS
    BO 4.0
    I tried creating system DSN in odbcad32.exe in the PC but it didn't work. I still get the error.
    Any suggestion on how to resolve it.

    Forget the Federation server.  You need the Connection Servers up.
    This is a DSN problem.
    For this 1 SQL server connection, you need BOTH 32-bit and 64-bit DSN defined on the BI Processing Server,  with the same name.
    Good info here: https://websmp204.sap-ag.de/~sapidb/011000358700000018202011E/index.htm
    Regards,
    H
    p.s. lots of notes about this :
    1495318 - Error: Data source name not found and no default driver specified
    1543358 - Error: "A database error text is [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified.
       1396736 - " : [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified" error when testing connection in Universe Designer on 64-bit Windows OS

  • 2008R2 to 2012R2 = Failover Cluster Manager not found ..gray out feature.

    Hello everyone,
    I just upgraded from our Hyper-V host running Windows Server 2008R2 to 2012R2,
    I didn't get any errors during the upgrade and everything looked fine except that the failover cluster manager is no longer exist ..I went to add it from the server manager and found that the feature already exist but it is grayed out, I can not remove it and
    add it again!
    how to get the failover manager cluster working again ?
    Thanks
    Misbah

    ok, the fix seems simple,
    I needed to go from server manager and select remove role/features and then re-add it.
    going to add roles/feature will not allow me to remove any feature ..it is just for adding features.

  • Edi partner profile is not found!!!!

    Hi
    I have created an info package in development and i have transported to quality. And trying to load the data from flat file.
    And i have simulated it and it works fine.
    but after loading the data in the monitor it is still yellow. And i got the message.
    EDI : partner profile not found.
    can anyone help me on this!!!
    thanxs
    haritha

    in your bi system. run trans WE20. under Partner type LS you can see your Source System "partner profile". check the existence of your flat file soursystem - "partner profile".
    if it isn't existed you have to create one.
    in case you don't know how to create, freely to ask me.
    Regards,
    Chuong Hoang

  • 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.

  • 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?

Maybe you are looking for

  • Onlybalances on local currency - incorrect foreign currency valuation

    Dear all, I have the following problem: My customer created some manual accounts and did tick the box for only balances in local currency. Now my customer wanted to do foreign currency valuation on these accounts. I told the customer to make balance

  • Invoice line items - inconsistant data returned from RV_BILLING_PRINT_VIEW

    Hi there, We are using a modified version of SAP standard Print Program RVADIN01 for our invoices, for many years now. Everything works fine 99.9% of the time. Every now and again though, there is issue with the invoice, the root of which is data bro

  • Standard Texts (Tcode CA10 and SO10)

    Guys, Also posted [here|http://www.sapfans.com/forums/viewtopic.php?f=7&t=317636] Has anyone seen any decent SAP Help documentation on standard texts (TCode CA10 and SO10) These are the texts that are used in operations, paging and some action-box fu

  • My email is in my contacts?

    So, I random got notified that my email was online in Skype, despite not being added to contacts. I tried sending a message to the account, but it doesn't send. It's apparently being used by "messager." I don't know of anyone else that has this probl

  • Get Recordcount of last Query

    Hi,is it possible to get the number of records of the last SQL-Query inside a Stored Procedure. I´m trying to get my Stored Procedure faster and the problem is, that there are many code snippets like the following: --check if there are any records Se