Search code examples
mysqlasteriskfreepbx

Freepbx settings storage


Where are freepbx extensions settings are stored? For example, "concurrency limit"

Can't find it in MySQL database. Maybe, this settings are stored in some kind of file storage?


Solution

  • This particular setting is stored in the Asterisk database, for easy access from dialplan. You can see it from the Asterisk CLI:

    database show AMPUSER/1234/concurrency_limit
    

    To see all settings that are stored in the Asterisk DB:

    database show AMPUSER 1234
    

    Other settings are in MySQL, try SELECT * FROM sip WHERE id=1234, SELECT * FROM users WHERE extension=1234, and SELECT * FROM devices WHERE id=1234.