Skip to main content

Apple OS X 10.4 Server Monitor "waiting for response"

So you have reinstalled or installed Apple OS X 10.4 server. And you have noticed that no matter what you do you can’t get the Apple OS X Server to talk to your Server Monitor application all that you see is “Waiting for response” where you should be seeing other info like the Drives Temperatures Fan Speeds etc.

I have only noticed this on a 10.4 Server where I installed the Server in Target Disk Mode using Firewire. The Xserve is a G5 dual with no graphics card (also called a headless server) The server was installed via a G4 Powerbook.





Anyway When the system installs it seems to check the hardware now because you have mounted the OS X Server Hard drive onto your other Mac (non Xserve) my guess is that it does not / can not probe the correct hardware, and since the Apple Powerbook is not a G5 Xserve it can not configure the hardware monitor properly.

Anyway to get around this, first make sure that you are in fact connected to the IP address of the Apple Xserve and you don’t have and username password issues. So make sure that servermgrd is running you can open Apple’s Server Monitor and check to see that you can login and see to correct information listed there. Also you can check that the server is listening on port 311 a simple lsof – i | grep server
And you should see something like this in your Terminal

servermgr 656 root 16u IPv4 0x05776f98 0t0 TCP *:asip-webadmin (LISTEN)
servermgr 656 root 17u IPv4 0x0577677c 0t0 TCP *:asipregistry (LISTEN)
servermgr 664 root 16u IPv4 0x05776f98 0t0 TCP *:asip-webadmin (LISTEN)
servermgr 664 root 17u IPv4 0x0577677c 0t0 TCP *:asipregistry (LISTEN)

Now if all this is in place and you still get the “Waiting for response” in Apples Server Monitor you can simply sudo (or su to root but that’s not suggested) /System/Library/ServerSetup/SetupExtras/hwmondSetup
And then check your Server Monitor again.

You should now see all the data you would expect to.
As far as I know hwmondSetup is only available in 10.4 and I would guess 10.5 not that I have a 10.5 Server to play with. but from what I can tell hwmondSetup is not a part of 10.3 or below.

Comments

jeffjet24 said…
Hello, so if i don't get the same results as you have described from the grep, like "servermgr 656 root 16u IPv4 0x05776f98 0t0 TCP *:asip-webadmin (LISTEN)
servermgr 656 root 17u IPv4 0x0577677c 0t0 TCP *:asipregistry (LISTEN)
servermgr 664 root 16u IPv4 0x05776f98 0t0 TCP *:asip-webadmin (LISTEN)
servermgr 664 root 17u IPv4 0x0577677c 0t0 TCP *:asipregistry (LISTEN)" how would I get that to show up? Granted I have different services running on my server, but are those services that pop up a nesscisary to make server monitor work correctly?

Thanks,
Mack
The Help Guy said…
Hi Mack

Dont't expect the same results exactly.
What you are looking for at lease in OSX 10.4 and 10.5 is servermgr TCP *:asip*

Popular posts from this blog

Setting up and Installing Rancid on FreeBSD for Cisco Products

Setting up and Installing Rancid on FreeBSD for Cisco Products What is Rancid? Rancid is an application that monitors a devices configuration including software and hardware. The configuration is then stored in a Concurrent Version System or CVS. Most of the time it is used to back up router, switch and firewall configurations, as well as notify you when a configuration has changed, i.e a firewall rule or a routers IP address or access list change. here is an example of the output =================================================================== retrieving revision 1.29 diff -u -4 -r1.29 mpls-jhb-pe1 @@ -288,9 +288,9 @@ ! interface Serial0/0 description Link to Client X bandwidth 2048 - ip address 192.168.1.244 255.255.255.254 + ip address 192.168.1.234 255.255.255.254 ip route-cache flow ip tcp header-compression iphc-format ip tcp compression-connections 256 ! ip ospf message-digest-key 1 md5 the - symbol represents what was removed the + symbol represents what was added The abo...

Tacacs+ Install and Config Guide

Tacacs+ Install and Config Guide What is TACACS As per wikipedia Terminal access controller access control system (TACACS) is a remote authentication protocol that is used to communicate with an authentication server commonly used in UNIX networks. TACACS allows a remote access server to communicate with an authentication server in order to determine if the user has access to the network. Installing Tacacs on FreeBSD This guide is intended to be a basic implementation of TACACS+, so although there are may features I am just going to document what I generally use. Please note that tac_plus is also available from Shrubbery Networks if you would like to install and configure on another platform. You may also want to check out my Rancid How-To Once again its in your ports directory. cd to /usr/ports/net/tac_plus4/ run a "make install clean" Once installed vi /usr/local/etc/rc.d/tac_plus.sh Then Change the following line from NO to YES tac_plus_enable=$ Save the file, then vi /e...

Configuring FreeBSD Postfix Mailscanner and Mailwatch

Configuring Mailscanner Mailwatch and Postfix for FreeBSD The Install guide is here I have split the install guide and the configuration guide as they are pretty involved and might cause confusion if they where put together. I will start off with the easier stuff like clamav and then move on to spamassassin and postfix and then finally to mailscanner and mailwatch. if you have not already read the Install Guide Which might be helpful to newcomers here is a summery of what has been installed. Apache and php - this is for the Mailwatch web frontend. Mysql - This is where mailscanner will log info and where your black and white lists will live. Mailwatch - Mailwatch is the web front end to help monitor and manage Mailscanner. Spamassassin - This is the system that checks the mail content looking for spam. Clamav - the Antivirus scanner that Mailscaner will use Mailscanner - The server that uses all of the above to keep your mail clean and spam free. Ok now that that is over: Confi...