AstRecipes » Installing QueueMetrics from scratch
This recipe shows how to install QueueMetrics on a clean machine.Installing QueueMetrics comes in a number of steps:
Download the latest version of QueueMetrics from http://queuemetrics.loway.it/download.jsp
Download the user manual from that page too - the first part is a somehow longer guide to installing and choosing a server. Prerequisites: Java and Tomcat
Note that most Linuxes come with GCJ, but don't use that.
Install the Java SDK as - say - /usr/local/j2sdk1.5.0 (follow its instructions)
JAVA_HOME=/usr/local/j2sdk1.5.0
JAVA_OPTS="-Xms256M -Xmx512M"
export JAVA_HOME
export JAVA_OPTS
Configuring the MySQL database
You will need a MySQL database, either local or on another machine.
- Enter your MySQL shell as root typing:
mysql mysql
- Create the new database
CREATE DATABASE queuemetrics;
GRANT ALL PRIVILEGES ON queuemetrics.* TO 'queuemetrics’@'localhost' IDENTIFIED BY 'javadude';
- Exit the MySQL shell
- Load the database sample with something like
mysql --user=queuemetrics --password=javadude queuemetrics < queuemetrics_sample.sql
files are.
your database, setting user and password too
That's all there is for a basic install.
Softlinks:
Home Page - Installing QueueMetrics - Installing Queuemetrics on Debian - Utenti/Lenz73 - Installing the Asterisk GUI - QueueMetrics - Compiling Asterisk 1.4 beta - Peering two Asterisk servers using IAX - Script to convert music-on-hold to native formats - Compiling Asterisk 1.2 with TDM400 and H323 - Configuring a queue - Create an account - UPDATING - Compiling Asterisk 1.4 with TDM400 and H323 - Misc links - Utenti/walmass - Compressing recorded calls to MP3 - Compiling Asterisk with OH323 - Using a HT-488 with Asterisk - Add a recipe - Improving AstRecipes - Installing QueueMetrics on Fonality PBXtra - Upgrading QueueMetrics licences - Monitoring Zaptel Hardware - AddQueueMember and the queue_log file - SandBox - Manually updating QueueMetrics - Utenti/timlitw - Licences - asterisk - Managing agents that dynamically log-on - Generic QueueMetrics startup script - Recording all outgoing traffic for some extensions - User stats - QueueMetrics logs - Installing Queuemetrics on PBX-in-a-Flash - Connecting to FWD using IAX - Avoiding queue_log file rotation - Utenti/peter-dean - Compiling Asterisk on EPIA with VIA C3 - Optimizing QueueMetrics data access - Utenti/lostdave - Simple queue and agent debug monitoring - Installing the Linksys PAP2-NA port adapter - Installing XC-AST under Jetty - Utenti/bg - Installing QueueMetrics using Yum - Administering QueueMetrics using Tomcat - Connecting to Squillo using SIP - Installing XC-AST
Home Page - Installing QueueMetrics - Installing Queuemetrics on Debian - Utenti/Lenz73 - Installing the Asterisk GUI - QueueMetrics - Compiling Asterisk 1.4 beta - Peering two Asterisk servers using IAX - Script to convert music-on-hold to native formats - Compiling Asterisk 1.2 with TDM400 and H323 - Configuring a queue - Create an account - UPDATING - Compiling Asterisk 1.4 with TDM400 and H323 - Misc links - Utenti/walmass - Compressing recorded calls to MP3 - Compiling Asterisk with OH323 - Using a HT-488 with Asterisk - Add a recipe - Improving AstRecipes - Installing QueueMetrics on Fonality PBXtra - Upgrading QueueMetrics licences - Monitoring Zaptel Hardware - AddQueueMember and the queue_log file - SandBox - Manually updating QueueMetrics - Utenti/timlitw - Licences - asterisk - Managing agents that dynamically log-on - Generic QueueMetrics startup script - Recording all outgoing traffic for some extensions - User stats - QueueMetrics logs - Installing Queuemetrics on PBX-in-a-Flash - Connecting to FWD using IAX - Avoiding queue_log file rotation - Utenti/peter-dean - Compiling Asterisk on EPIA with VIA C3 - Optimizing QueueMetrics data access - Utenti/lostdave - Simple queue and agent debug monitoring - Installing the Linksys PAP2-NA port adapter - Installing XC-AST under Jetty - Utenti/bg - Installing QueueMetrics using Yum - Administering QueueMetrics using Tomcat - Connecting to Squillo using SIP - Installing XC-AST



