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 - Installing the Asterisk GUI - Compiling Asterisk 1.4 beta - QueueMetrics - Utenti/Lenz73 - Peering two Asterisk servers using IAX - Script to convert music-on-hold to native formats - Compiling Asterisk 1.2 with TDM400 and H323 - Create an account - Licences - Configuring a queue - Compiling Asterisk 1.4 with TDM400 and H323 - UPDATING - AddQueueMember and the queue_log file - Upgrading QueueMetrics licences - Misc links - Improving AstRecipes - Utenti/walmass - Compiling Asterisk with OH323 - SandBox - Add a recipe - Compressing recorded calls to MP3 - Using a HT-488 with Asterisk - asterisk - Avoiding queue_log file rotation - Installing XC-AST - User stats - Managing agents that dynamically log-on - Manually updating QueueMetrics - Monitoring Zaptel Hardware - Installing QueueMetrics on Fonality PBXtra - Utenti/peter-dean - Simple queue and agent debug monitoring - Utenti/timlitw - QueueMetrics logs - Connecting to FWD using IAX - Installing QueueMetrics using Yum - Installing the Linksys PAP2-NA port adapter - Compiling Asterisk on EPIA with VIA C3 - Generic QueueMetrics startup script - Recording all outgoing traffic for some extensions - Installing Queuemetrics on PBX-in-a-Flash - Installing XC-AST under Jetty - Optimizing QueueMetrics data access - Administering QueueMetrics using Tomcat - Rebuilding Fonality queue_log - Connecting to Squillo using SIP - Utenti/lostdave
Home Page - Installing QueueMetrics - Installing Queuemetrics on Debian - Installing the Asterisk GUI - Compiling Asterisk 1.4 beta - QueueMetrics - Utenti/Lenz73 - Peering two Asterisk servers using IAX - Script to convert music-on-hold to native formats - Compiling Asterisk 1.2 with TDM400 and H323 - Create an account - Licences - Configuring a queue - Compiling Asterisk 1.4 with TDM400 and H323 - UPDATING - AddQueueMember and the queue_log file - Upgrading QueueMetrics licences - Misc links - Improving AstRecipes - Utenti/walmass - Compiling Asterisk with OH323 - SandBox - Add a recipe - Compressing recorded calls to MP3 - Using a HT-488 with Asterisk - asterisk - Avoiding queue_log file rotation - Installing XC-AST - User stats - Managing agents that dynamically log-on - Manually updating QueueMetrics - Monitoring Zaptel Hardware - Installing QueueMetrics on Fonality PBXtra - Utenti/peter-dean - Simple queue and agent debug monitoring - Utenti/timlitw - QueueMetrics logs - Connecting to FWD using IAX - Installing QueueMetrics using Yum - Installing the Linksys PAP2-NA port adapter - Compiling Asterisk on EPIA with VIA C3 - Generic QueueMetrics startup script - Recording all outgoing traffic for some extensions - Installing Queuemetrics on PBX-in-a-Flash - Installing XC-AST under Jetty - Optimizing QueueMetrics data access - Administering QueueMetrics using Tomcat - Rebuilding Fonality queue_log - Connecting to Squillo using SIP - Utenti/lostdave



