QueueMetrics forum

QueueMetrics => QueueMetrics installation => Topic started by: mudcow007 on April 15, 2008, 17:18:56

Title: failed installation
Post 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
Title: Re: failed installation
Post by: QueueMetrics on April 16, 2008, 10:12:33
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?

Title: Re: failed installation
Post by: mudcow007 on April 18, 2008, 12:36:27
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!!
Title: Re: failed installation
Post by: QueueMetrics on April 18, 2008, 16:25:12
That's cool :)
Title: Re: failed installation
Post by: QueueMetrics on November 17, 2009, 16:54:53
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....
Title: Re: failed installation
Post by: QueueMetrics on November 26, 2009, 15:50:31
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,....

Title: Re: failed installation
Post by: QueueMetrics on November 27, 2009, 12:03:24
Try and restart QM and see if this happens again....
Title: Re: failed installation
Post by: QueueMetrics on December 01, 2009, 14:49:12
If so: look for the file called server.xml in Tomcat.

Look for a section that says (like):

Code: [Select]
    <!-- 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....