HOWTO Changing Interface Password From mySQL
To change the interface password from mySQL, proceed as follows:
- Navigate to the PBXware directory
cd /opt/pbxware
- Log in to mySQL shell
sh/mysql
- Select database and table
mysql> use sitemanager_global; mysql> select * from users;
- Change the interface password
mysql> update users set password = md5('$YOURNEW PASSWORD') where id = 1;
Replace $YOURNEWPASSWORD with your new password and try to log in with it.
WARNING: Any manual MySQL modifications are at your own risk and should be performed by a person familiar with MySQL. Eventual issues caused are not covered by Bicom Systems support