Profilemanager website not responding (10.10 Server)

I can not reach the profile manager website.
I think it is an apache problem.
I installed Yosemite Server with Open Directory and network accounts.
I was able to add all my clients to profile manager and set them up to show the list of users in the login window of the clients.
When I tried to set up a profile to submit settings for contacts and calendar it did not work so i removed the settings from the profile.
No I don't get into the profile manager website any more.
Logs:
system.log (every ten seconds):
Mar 16 09:48:46 myserver.domain.tld certadmin[36571]: BundleManager(non-plugin calling servermgr_certs): doCommand finished reply = {
     passphraseForExportedPrivateKey = "\\U2022\\U2022\\U2022\\U2022\\U2022\\U2022\\U2022\\U2022";
Mar 16 09:48:46 myserver com.apple.xpc.launchd[1] (org.apache.httpd[36569]): Service exited with abnormal code: 1
Mar 16 09:48:46 myserver com.apple.xpc.launchd[1] (org.apache.httpd): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
apache error log:
[Mon Mar 16 09:50:32.128319 2015] [:emerg] [pid 36698] AH00020: Configuration Failed, exiting
[Mon Mar 16 09:50:42.615399 2015] [so:warn] [pid 36712] AH01574: module proxy_fcgi_module is already loaded, skipping
[Mon Mar 16 09:50:42.641304 2015] [slotmem_shm:error] [pid 36712] (28)No space left on device: AH02611: create: apr_shm_create(/private/var/run/slotmem-shm-p81db1a97--235335757_balancer_group _webapp_com_apple_webapp_auth__auth.shm) failed
[Mon Mar 16 09:50:42.641324 2015] [proxy_balancer:emerg] [pid 36712] (28)No space left on device: AH01185: worker slotmem_create failed
[Mon Mar 16 09:50:42.641330 2015] [:emerg] [pid 36712] AH00020: Configuration Failed, exiting
I dont understand, why it says, there is no space left on device an which device it means.
There ist lots of space on the disk.
I have not set up websharing until now
What can I do to solve this?

I have/had the same issue with a client server. The server was upgraded from 10.7 -> 10.8 ->10.10 Maybe that was it. I don't know.
That calendar uses the apache load balancer. The issue was that apache can not start with the load balancer loaded. The load balancer can not start because it's files in the /var/run/ directory already exits. So when you cold boot, calendar work the first time. But if you try to restart the calendar, it can't and it can't run apache for the websites etc either. What a pain! It will try to restart every 10 seconds. When it tries to do this, you see the myserver.domain.tld certadmin check the certificate in the system log. (I think that is OK, it is just verifying it)
So this is what I did. I build a server from scratch in my office and compared the /Library/Server/Web/Config/apache2/ between the two servers. I did not replace the bad one as the certificates are different.
This is what I found.
servermgr_web_apache2_config.plist loads httpd_webdavsharing.conf with com.apple.webapp.webdavsharing  in the upgraded version. In the new version it does not. It also createRedirectToSSLVirtualHost with the bad version. We no longer need that.
I also noted that my migrated version has workers.properties files . I renamed them. I don't think that did much.
Finally I had to 'sudo reboot' the whole server to clear out the /var/run/ directory of the old slotmem-shm-p81db1a97--235335757_balancer files.
So
Backup servermgr_web_apache2_config.plist
mv Backup servermgr_web_apache2_config.plist Backup servermgr_web_apache2_config.plist_myBackup
This is the output of the diff statement. I hope that helps you. If you make a mistake, the system log will show you that it can not load servermgr_web_apache2_config.plist (and a whole lot more) so that is helpful.
Start with changing line 8 and 10. I did that last, and that might just do it. On the old upgraded (bad) server these pointed to the old directories.
< Means lines in the good file (from the new server)
> Means lines in the bad file so edits these lines. (from the upgraded server)
8c8 mean line 8 changes 8 chars
======
diff /Volumes/GystMedia/apache2/servermgr_web_apache2_config.plist /Users/wgnb/Downloads/apache2/servermgr_web_apache2_config.plist
8c8
< <string>/Library/Server/Web/Config/apache2/sites_disabled</string>
> <string>/etc/apache2/sites_disabled</string>
10c10
< <string>/Library/Server/Web/Config/apache2/sites</string>
> <string>/etc/apache2/sites</string>
12c12,14
< <array/>
> <array>
> <string>com.apple.webapp.php</string>
> </array>
[Show a differences in certificates here... don't touch]
82a85,119
> <dict>
> <key>displayName</key>
> <string></string>
> <key>includeFiles</key>
> <array>
> <string>/Library/Server/Web/Config/apache2/httpd_webdavsharing.conf</string>
> </array>
> <key>launchKeys</key>
> <array/>
> <key>name</key>
> <string>com.apple.webapp.webdavsharing</string>
> <key>preflightCommand</key>
> <string></string>
> <key>proxies</key>
> <dict/>
> <key>requiredByWebAppNames</key>
> <array>
> <string>com.apple.webapp.webdavsharing</string>
> </array>
> <key>requiredModuleNames</key>
> <array>
> <string>rewrite_module</string>
> <string>bonjour_module</string>
> </array>
> <key>requiredWebAppNames</key>
> <array/>
> <key>requiresSSL</key>
> <false/>
> <key>sslPolicy</key>
> <integer>0</integer>
> <key>startCommand</key>
> <string></string>
> <key>stopCommand</key>
> <string></string>
> </dict>
152a190,224
> <dict>
> <key>displayName</key>
> <string></string>
> <key>includeFiles</key>
> <array>
> <string>/Library/Server/Web/Config/apache2/httpd_webdavsharing.conf</string>
> </array>
> <key>launchKeys</key>
> <array/>
> <key>name</key>
> <string>com.apple.webapp.webdavsharing</string>
> <key>preflightCommand</key>
> <string></string>
> <key>proxies</key>
> <dict/>
> <key>requiredByWebAppNames</key>
> <array>
> <string>com.apple.webapp.webdavsharing</string>
> </array>
> <key>requiredModuleNames</key>
> <array>
> <string>rewrite_module</string>
> <string>bonjour_module</string>
> </array>
> <key>requiredWebAppNames</key>
> <array/>
> <key>requiresSSL</key>
> <false/>
> <key>sslPolicy</key>
> <integer>0</integer>
> <key>startCommand</key>
> <string></string>
> <key>stopCommand</key>
> <string></string>
> </dict>
155a228,229
> <key>createRedirectToSSLVirtualHost</key>
> <true/>

Similar Messages

  • Website not responding errors

    Hello... I feel like since I upgraded to Lion, Safari hasn't been the same. I've never had a problem with websites freezing on me and now, it seems like I often have to force reload a website because the website is not responding. This happens both at home and at work so I don't feel it is the internet connection. Anyone else having this problem? Thanks!

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this exercise is to determine whether the problem is localized to your user account, or is system-wide. Enable guest logins and log in as Guest. For instructions, launch the System Preferences application, select “Help” from the menu bar, and enter “Set up a guest account” (without the quotes) in the search box.
    While logged in as Guest, you won’t have access to any of your personal files or settings. Any application you run will behave as if you were running it for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    As Guest, launch Safari and test. Same problem(s)?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.

  • Website not responding

    Please help!
    I have an AirPort Extreme (4th Gen). 
    I have my laptop, iPad, iPhone hooked up to it. 
    On all three devices, when I go to Twitter, or try to use the iPad/iPhone Twitter apps, my devices say "not responding."  My devices also say "sending request" but then they time out and say it is not reponding. 
    ALL OTHER websites work.  I don't get it. 
    I have done a hard reset, and still no luck.  Do I need a new IP address?
    Thanks,
    B

    After a few hours of work, it appears Twitter is blocking an IP address that starts with:
    174.34.
    Now, I have to try to get a new IP address.

  • Citrix Client M/c Not Responding - Windows 2000 Server

    Hi all,
    I have Windows 2000 Server with Terminal Services and Citrix Metaframe 1.8 for Windows 2000 running on it. We are using Oracle Apps 11i and Oracle 8i on Sun Solaris 8.
    The Citrix Clients are Win 95/98 m/c running ICA32. The ERP Application is run by the clients through Citrix Server using IE5.0
    Some of the forms are not responding always when client is using citrix technology but the same client(s) can run the application when he is using his own IE5.0
    Can somebody help us out. Is it supported by Oracle Apps 11i or not. Or some fine tuning is to done or some patches are required to be downloaded.
    Thanks in advance.
    Dinesh Yadav
    null

    Is this a true Apps 11i environment? Why do you need to go through Citrix instead of direct browser access?

  • Websites not responding after I pull them up.

    When I am web browsing and pull up a site after a few minutes I get a message that the site is not responding. Windows Internet Explorer checks for cause and I click at the bottom of the page to restore the website. It does it almost every time I pull up an internet address and is getting worse.

    Hello , Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More. I have read your post on how your Internet Explorer browser does not respond when browsing on your desktop computer, and I would be happy to assist you in this matter! To correct this issue, I recommend following the steps in this document on Resolving issues in Internet Explorer (Windows 8). This should help correct the non-responsive behaviour of browsing the Internet, using Internet Explorer. I also recommend browsing Firefox or Google Chrome to see if the issue is isolated to Internet Explorer or not. Please re-post with the results of your troubleshooting, and I look forward to your reply!
    Regards

  • Websites not responding and takes to long to connect

    When i go on the browser at FireFox it is saying not responding and sometimes it says it has timed out or took too long to respond, What should i do to fix it?

    Actually it will happen again, you can wait for it. It usually takes a few months and the entire cycle starts again. Apple knows perfectly well that mail is not working as it should for many years, especially in combination with Mobile Me synchronization. Don't be mistaken in the end nothing will help not vacuum your mailbox except removing your plist file and rebuilding it. With the Mobile Me that is not even able to alphabetically order your mail accounts it would be fun when you have numerous email accounts. Good luck. If I had the possibility to switch to another emailer I would have done so many years ago. However I am stuck with DMI from Marketcircle.

  • RH 6 a website not responding - missing whver.js file

    This is usually caused by the whver.js not being copied over on the server during the publishing process.  A fix is to manually copy it to the correct directory.  Once this file is copied to the correct directory all is well.  Does anyone know why this is occuring.  It is not an every day thing but does occur occassionally.  Can anything be done to prevent this from happening?

    Hi all
    An observation if I may. Sometimes folks severely confuse the act of Generating with Publishing. Generating should occur on the local PC and is similar to baking up a batch of cookies. You pop the doughballs in the oven and out come baked cookies. Publishing copies that content from the local PC (typically from the ProjectFolder\!SSL!\WebHelp folder) to the Web Server.
    I've seen it occur where folks simply try to save a step by specifying the Web Server location as the output folder when you generate. And if you have done this, files WILL be deleted as the process begins. RoboHelp normally clears the folder in preparation for placing the new build. It's like clearing the cookie sheet in preparation for the new batch.
    Food for thought when investigating what is happening.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • SCOM 2012 Console not responding when the server to be connected is down.

    SCOM 2012 Console hangs when the server to be connected is down or gone (e.g. lease replaced).  How to change the 'connection server' to point to a valid server without re-installing SCOM Console? Thx

    To enable high availability for your Operations Manager Data Access service, you can use Network Load Balancing (NLB)
    PLz refer: http://blog.coretech.dk/kra/how-to-make-operations-manager-2012-rc-scom-2012-fault-tolerance/
    Faizan

  • The update server is not responding. The Server might be offline temporarily, or the internet or fir

    I have tried everthing to get the updates to automatical update nothing seems to work has any got anything, miniport driver but windows 8 does not have this installed I have tried the logfile

    What and how exactly are you trying to update?

  • Seems like 90% of the time I'm getting the website not responding error message however everything I select refresh it will bring up the site why

    This consistently happens when clicking links from within other site, however it also happens when selecting from bookmarks or typing in the url.

    1. From the menu bar, select
     ▹ System Preferences ▹ Network ▹ Advanced ▹ TCP/IP
    On the line beginning with the word "Router" is a numerical address, such as "192.168.1.1".
    2. In the address bar of a web browser window, enter "http://" (without the quotes) and then the address you found in Step 1. The router's administration page will open. You will need to log in. If you don't know the password, and nobody else in the household knows it, reset the router to its factory defaults and then use the default password, which you should then change immediately. The default password can be found in the documentation (see the next step.) If you have to do this, you may also need to unlock the Network preference pane and then click the button marked Renew DHCP Lease.
    3. In another browser window, go to the Netgear website and find the documentation for your router. Search the documentation for the term "DNS". Follow the instructions to get to the DNS settings, then delete the addresses of the OpenDNS servers. Save your changes.
    4. Restart the router.

  • Adobe application manager update server not responding

    I have installed the Creative Suite 6 Master Collection from CDs,
    and activated the license. Now when I run Photoshop > Help >
    Updates, the Adobe Application Manager runs, but gives the error
    message "The update server is not responding. The server might be
    offline temporarily, or the Internet or firewal settings may be
    incorrect".
    Acrobat and Lightroom both updated no problem. I waited a day, but
    the problem persists. Any thoughts?
    Thanks, Bruce

    I found the answer in another post (https://forums.adobe.com/message/4484225#4484225):
    Go to creative.adobe.com, and download PhotoShop CC
    This downloads, installs, and runs Creative Cloud
    As soon as it comes up running, cancel the download of PS CC
    All of the CS 6 apps are ready to update
    Thanks, Bruce

  • Creative Cloud - The Update Server is not responding

    Hi there
    Am trying to update illustrator but the Adobe Application Manager (AAM) continually responds with the message:
    "The Update server is not responding. The server might be offline temporarily, or the internet or firewall settings maybe incorrect."
    I've tried switching off the firewall and downloading the 6.2 version of AAM with no success.
    What can I try next?

    Typical... Found the solution immediately after posting the question:
    http://forums.adobe.com/message/2692886#2692886

  • Linux issue: "server not responding" msgs starting to appear in DreamWeaver MX

    I have an Ubuntu Server on my small network that acts (among
    other things) as a Web page testing server. I have DreamWeaver set
    up to connect to our remote host for putting operations, and the
    testing server is our local Linux machine. It worked great, as
    testing a page was instantaneous over the LAN.
    Then something (I have no idea what, and I'm pretty much a
    Linux Noob) changed and now, when we test on server or try the
    “test” button on the site configuration menu, we get
    ten to fifteen seconds of “Server Not Responding / connecting
    to server,” then it connects fine.
    The server pings fine and I can connect via an OS (both Mac
    and PC) fine. It’s just that we went from instantaneous
    connection to an irritating delay. Any idea where I start
    diagnosing/fixing this?
    Here is a bit of background on the machine. I’m sorry
    I’m not sure what’s relevant — if I forgot
    something, please let me know, and ignore anything that’s
    superfluous.
    It recently upgraded to 2.6.24-21. The upgrade went fine, but
    I had to reinstall the LAN drivers. The Linbox is assigned an IP
    via the router’s (Linksys 310N) DHCP Reservation Table, based
    on the Linbox’s MAC address. I don’t believe I’ve
    set a static IP on the box (/etc/network/interfaces is generic and
    unmodified). I’m using ProFTPD and WebMin, but mostly with
    default settings.
    Thanks,
    Rhythm

    Problem solved:
    For the use of anyone who someday finds this thread, here is
    how things worked out:
    I went to the ProFTPD Server module of
    [url=http://www.webmin.com/]WebMin[/url], then to Networking
    Options. I changed two entries:
    Do reverse DNS lookups of client addresses? (From default to
    no)
    Lookup remote Ident username? (from default to no)
    I then restarted ProFTPD and voila, it worked like it did
    before!
    http://www.proftpd.org/docs/faq/faq_full.html#AEN341

  • IMAP server not responding.

    Hello,
    I have an iPhone 3G's and I can not configure the mail account,
    I still get the same message "IMAP server
    "impa.gmail.com" not responding.
    Check your network connection and the information entered into the fields "Server Recovery" "
    I am connected to 3G, I tested my card on another phone it works no problem.
    ko with the iphone.
    Ps: it works in wifi.

    "impa.gmail.com" not responding.
    The server address should be "imap.gmail.com"

  • Why do I keep getting (Not Responding). I am running 3.6.9 and i am not too computer savvy so please give me a list of simple steps

    most of the time (not all) when i am using Firefox, the little yellow light on my computer tower stays on (does not flash).
    at the same time i get a message on the color bar at the top of the screen that says "such and such website" (Not Responding).
    i have tried clearing the cache.

    most of the time (not all) when i am using Firefox, the little yellow light on my computer tower stays on (does not flash).
    at the same time i get a message on the color bar at the top of the screen that says "such and such website" (Not Responding).
    i have tried clearing the cache.

Maybe you are looking for

  • Accidentally took off quick time player and Itunes wont open now

    so I have a pentium 3 windows 2000 IBM laptop terrible i know i was trying to get more memory onto my computer by deleting programs i didnt need and a supposed "computer wiz" told me that i didnt need quick time player to run Itunes. so i took it off

  • One more try: inserting 5 rows of data at once in DB, using dataTable

    Defining the datatable columns in the JSF page itself, and not "binding" to any UIData element in a backing bean allows for an update to the list that the datatable points to, which is stored in a request scope bean. Defining the datatable columns th

  • Libraries lost-no longer exist

    Help, We have 2 5th generation Ipods and a Nano. No problems with my Nano but when I connect either 5th gen Ipods none of the libraries exist. I message "do not disconnect" is on both ipods and they are both frozen with that message. I did disconnect

  • Classpath in NetBeans

    How to set the classpath in NetBeans5.0 (i Need to set the class path, when trying to use packages with in 2-projects) project1 is General Java Application project2 is a web Application How can i access the variables in project1 from project2

  • GRID in forms6i

    Hi all, how can I create universal table browser in forms ? In other languages exists object Grid which contains as many text items as table to which it is linked. It is possible to do it simple ? I have made about 30 text items in block and I link t