MySQL

From Yate Documentation
(Difference between revisions)
Jump to: navigation, search
(Check if module is loaded)
 
(22 intermediate revisions by one user not shown)
Line 1: Line 1:
  
This module is used to make the connection between Yate and a MySQL database.
+
Module mysqldb is used to make the connection between Yate and one or more MySQL databases.
 +
 
 +
This module supports connection pool and maintains connection to database alive.
  
 
When using this module for storing CDRs, also read [call.cdr] section in [[Register|Register]].
 
When using this module for storing CDRs, also read [call.cdr] section in [[Register|Register]].
 +
 +
===Requirements===
 +
 +
Module mysqldb needs devel packages installed. When Yate is installed at configuration step, normally the libraries needed for MySQL will be corrected detected by Yate, if the MySQL packages were installed.<br>
 +
Yate will detect them only if they are installed in the distribution's default location. If you change the location then you have to specify the path like this:
 +
 +
./configure --with-mysql=/path/to/DIR
 +
make
 +
./run -vvvvv -CDo
 +
 +
After starting Yate check if module mysqldb is loaded.
  
 
===Check if module is loaded===
 
===Check if module is loaded===
  
  '''Note:''' Check if module MySQL is loaded. It is required to be loaded so that Yate can connect to the database defined in mysqldb.conf.
+
  '''Note:''' Check if module '''mysqldb''' is loaded. It is required to be loaded so that Yate can connect to the database defined in mysqldb.conf.
 +
 
 +
There are two ways of checking if module is loaded:
  
====Verify module loading when starting Yate====
+
* Verify module loading when starting Yate
  
 
When Yate starts you can see a list of modules that are loaded. If MySQL does not appear, you must install the devel packages for MySQL.
 
When Yate starts you can see a list of modules that are loaded. If MySQL does not appear, you must install the devel packages for MySQL.
Line 17: Line 32:
 
  .......
 
  .......
  
====Verify module loading from [[rmanager]]====
+
* Verify module loading from [[rmanager]]
  
 
Another way to check if module is loaded is from telnet, use command '''status''' check if mysqldb is in the list:
 
Another way to check if module is loaded is from telnet, use command '''status''' check if mysqldb is in the list:
Line 26: Line 41:
 
  ............
 
  ............
 
  %%-status
 
  %%-status
 +
 +
Or simply type after command status the name of the module like this:
 +
 +
status mysqldb
 +
%%+status:mysqldb
 +
name=mysqldb,type=database,format=Total|Failed|Errors|AvgExecTime;conns=0,failed=0
 +
%%-status
 +
 +
If line name=mysqldb,type=database.... don't appear in the list that means that module is not loaded.
 +
 +
===Solutions if module is not loaded===
 +
 +
* A reason that the module is not loaded may be that you don't have the devel packages installed.
 +
Install devel packages. Then run '''./configure''' and '''make''' in Yate's sources.
 +
 +
* Another reason could be that the module is not listed in file '''yate.conf'''. If parameter '''modload''' is disabled, then you have to check in [modules] section that module is enabled.
 +
'''yate.conf'''
 +
[general]
 +
modload=no
 +
 +
[modules]
 +
mysqldb.yate=yes
  
 
===Configuration file===
 
===Configuration file===
  
The mysqldb.conf is found in directory conf.d where Yate sources are.<br>
+
The configuration file is '''mysqldb.conf'''. It is found in directory conf.d where Yate sources are.<br>
The file must be renamed from mysqldb.conf.sample into mysqldb.conf.<br>
+
The file must be renamed from '''mysqldb.conf.sample''' into '''mysqldb.conf'''.<br>
  
This file has the general section that holds the common settings to all connections.
+
This file has the general section that holds the common settings to all connections.<br>
The other sections in this file describes a database connection. The section name is the account name of the connection that can be used in other configuration files.
+
The other sections in this file will describe each database connection.<br>
 +
The section name written between [], is the account name of the connection that can be used in other configuration files.
  
There can be multiple connections to different databases.<br>
+
There can be multiple connections to different databases.
The name written between [] will be used in other configuration files to mark the account used in the proper sections.
+
  
mysqldb.conf
+
'''mysqldb.conf'''
  
 
  [general]
 
  [general]
Line 96: Line 133:
 
   
 
   
 
  [yatetest]
 
  [yatetest]
 +
host=1.2.3.4
 +
port=3306
 
  database=yate
 
  database=yate
 
  user=mysql
 
  user=mysql
 
  password=yate
 
  password=yate
  
If we need to store CDRs, we will have to use [[Register|register.conf]] file.
+
To use this connection from another module the account must be set in another file.
  
In this file, we are going to set into general section the account name of the database so that Yate will know which connection to make.
+
* If we need to store CDRs, we will have to use [[Register|register.conf]] file.
 +
 
 +
In this file, we are going to set into [general] section the account name of the database so that Yate will know which connection to make.
  
 
'''register.conf'''
 
'''register.conf'''
Line 108: Line 149:
 
  [general]
 
  [general]
 
  account=yatetest
 
  account=yatetest
 +
 +
* Another way to use the account created in mysqldb.conf is when using [[How_to_access_a_database_from_Yate's_Javascript_module|module javascript]] to make queries, we have to send a '''database''' message.
 +
Specify the connection to use by setting in parameter '''account''' the name of the database account created in mysqldb.conf.
  
  
Line 114: Line 158:
 
* [[Register]]
 
* [[Register]]
 
* [[PostgreSQL]]
 
* [[PostgreSQL]]
 +
 +
[[Category:MySQL]] [[Category:Database]]

Latest revision as of 14:18, 4 November 2013

Module mysqldb is used to make the connection between Yate and one or more MySQL databases.

This module supports connection pool and maintains connection to database alive.

When using this module for storing CDRs, also read [call.cdr] section in Register.

Contents

[edit] Requirements

Module mysqldb needs devel packages installed. When Yate is installed at configuration step, normally the libraries needed for MySQL will be corrected detected by Yate, if the MySQL packages were installed.
Yate will detect them only if they are installed in the distribution's default location. If you change the location then you have to specify the path like this:

./configure --with-mysql=/path/to/DIR
make
./run -vvvvv -CDo

After starting Yate check if module mysqldb is loaded.

[edit] Check if module is loaded

Note: Check if module mysqldb is loaded. It is required to be loaded so that Yate can connect to the database defined in mysqldb.conf.

There are two ways of checking if module is loaded:

  • Verify module loading when starting Yate

When Yate starts you can see a list of modules that are loaded. If MySQL does not appear, you must install the devel packages for MySQL.

./run -vvvvv -CDo
..........
Loaded module MySQL based on 5.1.42
.......

Another way to check if module is loaded is from telnet, use command status check if mysqldb is in the list:

 %%+status                                                             
 ...............
name=mysqldb,type=database,format=Total|Failed|Errors|AvgExecTime;conns=0,failed=0
............
%%-status

Or simply type after command status the name of the module like this:

status mysqldb
%%+status:mysqldb
name=mysqldb,type=database,format=Total|Failed|Errors|AvgExecTime;conns=0,failed=0
%%-status

If line name=mysqldb,type=database.... don't appear in the list that means that module is not loaded.

[edit] Solutions if module is not loaded

  • A reason that the module is not loaded may be that you don't have the devel packages installed.
Install devel packages. Then run ./configure and make in Yate's sources.
  • Another reason could be that the module is not listed in file yate.conf. If parameter modload is disabled, then you have to check in [modules] section that module is enabled.

yate.conf

[general]
modload=no

[modules]
mysqldb.yate=yes

[edit] Configuration file

The configuration file is mysqldb.conf. It is found in directory conf.d where Yate sources are.
The file must be renamed from mysqldb.conf.sample into mysqldb.conf.

This file has the general section that holds the common settings to all connections.
The other sections in this file will describe each database connection.
The section name written between [], is the account name of the connection that can be used in other configuration files.

There can be multiple connections to different databases.

mysqldb.conf

[general]
; This section is special - holds settings common to all connections

; priority: int: Handler priority
;priority=100


; Each other section in this file describes a database connection

;[default]
; The section name is used as the database connection name

; timeout: int: Query timeout in milliseconds - will be rounded to seconds
;timeout=10000

; initretry: int: Interval (in seconds) to retry creating failed connections. Setting it to 0 will disable retrying.
;initretry=10

; host: string: MySQL server to connect to, defaults to local
;host=

; port: int: Port on which the server is listening for connections
;port=0

; database: string: Name of the database to use in queries
;database=yate

; user: string: Username to use to access the database
;user=mysql

; password: string: Password to authenticate the user to the database server
;password=

; socket: string: UNIX socket to use for local connections
;socket=

; compress: bool: Enable use of compression protocol
;compress=disable 

; encoding: string: Character set encoding used to communicate with the server
; If not set or empty will use the default for your system
; This setting is not available on older MySQL client libraries
;encoding=

; poolsize: int: Number of connections to establish for this account
; If not set or empty, it will create only one connection
; Minimum number of connections is 1, maximum is 10
;poolsize=1

[edit] Example

This is how we create a new connection to a MySQL database.

mysqldb.conf

[yatetest]
host=1.2.3.4
port=3306
database=yate
user=mysql
password=yate

To use this connection from another module the account must be set in another file.

  • If we need to store CDRs, we will have to use register.conf file.

In this file, we are going to set into [general] section the account name of the database so that Yate will know which connection to make.

register.conf

[general]
account=yatetest
  • Another way to use the account created in mysqldb.conf is when using module javascript to make queries, we have to send a database message.

Specify the connection to use by setting in parameter account the name of the database account created in mysqldb.conf.


See also

Personal tools
Namespaces

Variants
Actions
Preface
Configuration
Administrators
Developers