Hello-
It looks like Jetty might be having issues:
2014-09-30 22:49:57.130:WARN:oejuc.AbstractLifeCycle:FAILED SelectChannelConnector@0.0.0.0:80: java.net.BindException: Address already in use: bind
java.net.BindException: Address already in use: bind
Did you install IIS or anything else that is using port 80 on the server? I ran into issues when using SQL 2012 as it requires IIS for a few features that are not used by QM.
If you run 'netstat -ano' you should be able to see the process ID that that port 80 is bound to.
H:\>netstat -ano
Active Connections
Proto Local Address Foreign Address State PID
TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 656
Next look at Task Manager to determine the application. (you will need to add PID to your view of Task Manager.) If it's not Jetty, that may be at least part of the issue.
DJ