Author Topic: failed installation  (Read 8355 times)

mudcow007

  • Newbie
  • *
  • Posts: 32
  • Karma: 0
    • View Profile
    • Email
failed installation
« 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

QueueMetrics

  • Loway
  • Hero Member
  • *
  • Posts: 2999
  • Karma: 39
    • View Profile
    • QueueMetrics
Re: failed installation
« Reply #1 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?


mudcow007

  • Newbie
  • *
  • Posts: 32
  • Karma: 0
    • View Profile
    • Email
Re: failed installation
« Reply #2 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!!

QueueMetrics

  • Loway
  • Hero Member
  • *
  • Posts: 2999
  • Karma: 39
    • View Profile
    • QueueMetrics
Re: failed installation
« Reply #3 on: April 18, 2008, 16:25:12 »
That's cool :)

QueueMetrics

  • Loway
  • Hero Member
  • *
  • Posts: 2999
  • Karma: 39
    • View Profile
    • QueueMetrics
Re: failed installation
« Reply #4 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....

QueueMetrics

  • Loway
  • Hero Member
  • *
  • Posts: 2999
  • Karma: 39
    • View Profile
    • QueueMetrics
Re: failed installation
« Reply #5 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,....


QueueMetrics

  • Loway
  • Hero Member
  • *
  • Posts: 2999
  • Karma: 39
    • View Profile
    • QueueMetrics
Re: failed installation
« Reply #6 on: November 27, 2009, 12:03:24 »
Try and restart QM and see if this happens again....

QueueMetrics

  • Loway
  • Hero Member
  • *
  • Posts: 2999
  • Karma: 39
    • View Profile
    • QueueMetrics
Re: failed installation
« Reply #7 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....