How to register users from register
(→Register users) |
(→Register users) |
||
Line 69: | Line 69: | ||
* [[Register|Register module]] - authenticate, register and route users from database. | * [[Register|Register module]] - authenticate, register and route users from database. | ||
* [[PostgreSQL]] | * [[PostgreSQL]] | ||
+ | * [[Routing]] |
Revision as of 16:20, 27 May 2013
Suppose that you have this scenario: you want to register users from a database using PostgreSQL.
Contents |
Startup configuration file
The main Yate startup configuration is stored in the file yate.conf.
Please notice that "yate.conf" under Windows has to be named "yate-service.conf" if you are running it as a service or "yate-console.conf" while running the console version. In other words it has to match the executable file name or the file would not be loaded and default configuration will be applied.
Note: By default in Yate all modules are loaded at startup. By setting parameter modload=no in section [default], you have to enable modules by hand to load them. This is done in section [modules] using parameter that contains the name of the module point yate (e.g pgsqldb.yate=true for using module pgsqldb).
File "yate.conf" controls the loading of modules in Yate. In your yate.conf these modules should be enabled by hand, only if you set modload=disable:
[default] modload=disable [modules] ;Module used to make the connection between Yate and the PostgreSQL database. pgsqldb.yate=true ;Module used do authenticate, register, route users in the database. register.yate=true
Configure database in Yate
There are 3 steps to accomplish this task:
- create your database with tables that you need for your configuration (here is an example of a database schema).
- put the credentials of the database of the database created in Yate's configuration file: pgsqldb.conf).
- 'tell' Yate which connection to use when users will be registered. This is done in register.conf file.
Set the connection information of database
In PostgreSQL configuration file: pgsqldb.conf we have to set the connection data for this database in a section that will have the same name as the account settled in register.conf:
[yateadmin] host=localhost port=5432 database=yateadmin user=postgres password=secret
After "=" you have to write your connection information.
Set the name of the database
In module used is register.conf, in section [default] the name of the database must be set:
[default] account=yateadmin
Register users
See an example of a database schema to keep the users data.
In register.conf in section [general] the user.register must be enabled.
[general] user.register=yes [user.register] query=UPDATE users SET location='${data}',expires=CURRENT_TIMESTAMP + INTERVAL '${expires} s' WHERE username='${username}'
See also
- Regfile module - authenticate, register and route users from a file.
- Register module - authenticate, register and route users from database.
- PostgreSQL
- Routing