1. Bicom Systems
  2. Solution home
  3. PBXware
  4. HOWTOs

General :: Changing Interface Password From mySQL

HOWTO Changing Interface Password From mySQL

To change the interface password from mySQL, proceed as follows:

  1. Navigate to the PBXware directory
 cd /opt/pbxware 
  1. Log in to mySQL shell
 sh/mysql 
  1. Select database and table
 mysql> use sitemanager_global;
 mysql> select * from users;
  1. 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