AstRecipes » Installing Queuemetrics on PBX-in-a-Flash
PBX-in-a-Flash is Nerd Vittles ultra-cool version of a preconfigured Asterisk PBX based on CentOS 5. This makes installing QueueMetrics very easy, though the fact that the standard access port is already used by a different, preinstalled package makes a bit of hand-tweaking necessary. Basic installation
wget -P /etc/yum.repos.d http://yum.loway.ch/loway.repo
yum install queuemetrics
cd /usr/local/queuemetrics/webapps/queuemetrics-1.4.3/WEB-INF/
./installDb.sh
vi /usr/local/queuemetrics/tomcat/conf/server.xml and look for a place that looks like the following:
<!-- 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" />
/etc/init.d/queuemetrics restart Now we're almost ready but for one thing: the preconfigured firewall will block external access to port 8099. You can do two things:
Enter the following command:
vi /etc/sysconfig/iptables By the end of the file, before the final COMMIT statement, add the following lines:
# Allow connections to our QueueMetrics server
-A INPUT -p tcp -m tcp --dport 8099 -j ACCEPT
Softlinks:
Home Page - Installing QueueMetrics - Installing QueueMetrics from scratch - QueueMetrics - Upgrading QueueMetrics licences - Utenti/Lenz73 - Avoiding queue_log file rotation - Create an account - Installing Queuemetrics on Debian - Compressing recorded calls to MP3 - Misc links - AddQueueMember and the queue_log file - Compiling Asterisk 1.4 with TDM400 and H323 - Using a HT-488 with Asterisk - Compiling Asterisk with OH323 - Monitoring Zaptel Hardware - QueueMetrics logs - Configuring a queue - Licences - Improving AstRecipes - Utenti/walmass - Manually updating QueueMetrics - UPDATING - Add a recipe - asterisk - User stats - SandBox - Managing agents that dynamically log-on - Installing QueueMetrics on Fonality PBXtra - Utenti/timlitw - Connecting to FWD using IAX - Utenti/peter-dean - Listening to recorded calls using XC-AST - Optimizing QueueMetrics data access - Generic QueueMetrics startup script - Installing QueueMetrics using Yum - Administering QueueMetrics using Tomcat - Debugging Qloaderd installation - Utenti/lostdave - Recording all outgoing traffic for some extensions - Rebuilding Fonality queue_log - Utenti/bg - QueueMetrics user tracking - Utenti/zebru - Installing QueueMetrics beta through RPM - Utenti/rugendo
Home Page - Installing QueueMetrics - Installing QueueMetrics from scratch - QueueMetrics - Upgrading QueueMetrics licences - Utenti/Lenz73 - Avoiding queue_log file rotation - Create an account - Installing Queuemetrics on Debian - Compressing recorded calls to MP3 - Misc links - AddQueueMember and the queue_log file - Compiling Asterisk 1.4 with TDM400 and H323 - Using a HT-488 with Asterisk - Compiling Asterisk with OH323 - Monitoring Zaptel Hardware - QueueMetrics logs - Configuring a queue - Licences - Improving AstRecipes - Utenti/walmass - Manually updating QueueMetrics - UPDATING - Add a recipe - asterisk - User stats - SandBox - Managing agents that dynamically log-on - Installing QueueMetrics on Fonality PBXtra - Utenti/timlitw - Connecting to FWD using IAX - Utenti/peter-dean - Listening to recorded calls using XC-AST - Optimizing QueueMetrics data access - Generic QueueMetrics startup script - Installing QueueMetrics using Yum - Administering QueueMetrics using Tomcat - Debugging Qloaderd installation - Utenti/lostdave - Recording all outgoing traffic for some extensions - Rebuilding Fonality queue_log - Utenti/bg - QueueMetrics user tracking - Utenti/zebru - Installing QueueMetrics beta through RPM - Utenti/rugendo



