QueueMetrics forum
QueueMetrics => QueueMetrics installation => Topic started by: mudcow007 on April 15, 2008, 17:18:56
-
hello all
im trying to install queuemetrics on our asterisk server (1.4) we are running ubuntu an i have been following the guides on http://astrecipes.net/index.php?from=227&q=astrecipes/installing+queuemetrics+from+scratch
i have compleated all the points (i think!) now when i point my browser at http://127.0.0.1:8180/queuemetrics
i get HTTP Status 404 /queuemetrics
the 404 page is provided by tomcat (so i know that bit is working)
any ideas?
thanks all
-
Well, if Tomcat is up and running, you're at 90% :)
are you sure that the webapp you installed QM is "queuemetrics" and not "queuemetrics-1.4.3" for example?
-
sorry my fault!
yes i was reading one guide which told me to go to http:\\myserver:8081\queuemetrics
but i needed the version number on the end!
sorry :)
Resolved!!
-
That's cool :)
-
From th error, looks like the thirdlane repository server is not responding (maybe they are upgrading it....).
You could temporarily disable it from /etc/yum.repos.d/ by commenting all lines with a # and then re-enable it when you're done....
-
Looks like port 8080 is being used by Apache on your box - so try the following (for a test):
/etc/ini.d/httpd stop
/etc/init.d/queuemetrics restart
And see if you can connect,....
-
Try and restart QM and see if this happens again....
-
If so: look for the file called server.xml in Tomcat.
Look for a section that says (like):
<!-- Define a non-SSL Coyote HTTP/1.1 Connector on port 8080 -->
<Connector port="8080"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" redirectPort="8443" acceptCount="100"
debug="0" connectionTimeout="20000"
disableUploadTimeout="true" />
And change the port from 8080 to what you need for QM (like 9090).
Then restart everything....