I was getting alarms in vCenter for CPU usage on my view connection server, which I found out was caused by the mysqld service being at 100% CPU utilization. I rebooted the server and when it came back up, the https://server/admin page gave me a 404. After reviewing the logs, I found it to be (I think) caused by this:
2013-08-06T18:00:08.403Z FATAL (0CF0-0DB4) <Thread-1> [ICE] ICE Start com.vmware.vdi.ice.server.Ice.startServer(SourceFile:1167)java.net.BindException: Address already in use: JVM_BIND at....
and a bunch of java lines after that, but I'm pretty sure the relevant part is above. After a couple of searches, the only good lead I could find was to disable the IIS service if it is installed, or configure it to use a different port. The service isn't installed.
So I did a netstat -anob | FIND /n "443". The PID for the service that is listening to the port is 4, which corresponds to the SYSTEM service. I have no idea how to change that. So I am stuck.
Ideas?