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 - Misc links - Compiling Asterisk 1.4 with TDM400 and H323 - Configuring a queue - Compressing recorded calls to MP3 - Utenti/walmass - Compiling Asterisk with OH323 - Installing Queuemetrics on Debian - UPDATING - Improving AstRecipes - AddQueueMember and the queue_log file - Using a HT-488 with Asterisk - Licences - Manually updating QueueMetrics - QueueMetrics logs - Add a recipe - Installing QueueMetrics on Fonality PBXtra - SandBox - Utenti/timlitw - Generic QueueMetrics startup script - Listening to recorded calls using XC-AST - asterisk - Managing agents that dynamically log-on - Connecting to FWD using IAX - Monitoring Zaptel Hardware - Utenti/peter-dean - Utenti/lostdave - User stats - Optimizing QueueMetrics data access - Recording all outgoing traffic for some extensions - Installing QueueMetrics using Yum - Debugging Qloaderd installation - Utenti/bg - Administering QueueMetrics using Tomcat - Rebuilding Fonality queue_log - Utenti/zebru - QueueMetrics user tracking - Utenti/rugendo - Installing QueueMetrics beta through RPM
Home Page - Installing QueueMetrics - Installing QueueMetrics from scratch - QueueMetrics - Upgrading QueueMetrics licences - Utenti/Lenz73 - Avoiding queue_log file rotation - Create an account - Misc links - Compiling Asterisk 1.4 with TDM400 and H323 - Configuring a queue - Compressing recorded calls to MP3 - Utenti/walmass - Compiling Asterisk with OH323 - Installing Queuemetrics on Debian - UPDATING - Improving AstRecipes - AddQueueMember and the queue_log file - Using a HT-488 with Asterisk - Licences - Manually updating QueueMetrics - QueueMetrics logs - Add a recipe - Installing QueueMetrics on Fonality PBXtra - SandBox - Utenti/timlitw - Generic QueueMetrics startup script - Listening to recorded calls using XC-AST - asterisk - Managing agents that dynamically log-on - Connecting to FWD using IAX - Monitoring Zaptel Hardware - Utenti/peter-dean - Utenti/lostdave - User stats - Optimizing QueueMetrics data access - Recording all outgoing traffic for some extensions - Installing QueueMetrics using Yum - Debugging Qloaderd installation - Utenti/bg - Administering QueueMetrics using Tomcat - Rebuilding Fonality queue_log - Utenti/zebru - QueueMetrics user tracking - Utenti/rugendo - Installing QueueMetrics beta through RPM



