default password not working

Discussion in 'Installation/Configuration' started by unsichtbare, Aug 12, 2011.

  1. unsichtbare

    unsichtbare Member HowtoForge Supporter

    I just did a new build of ISPConfig (Perfect Setup, Ubuntu 10.04) and everything seemed to go smoothly, but I cant login to the admin with the default user:password admin:admin

    Any ideas?
     
  2. unsichtbare

    unsichtbare Member HowtoForge Supporter

    I reset the default user/password as follows, hope this helps someone:

    Code:
    root@main:~# mysql -u root -p
    
    mysql> show databases;
    +--------------------+
    | Database           |
    +--------------------+
    | information_schema |
    | db_ispconfig       |
    | mysql              |
    +--------------------+
    3 rows in set (0.00 sec)
    
    mysql> connect db_ispconfig
    Reading table information for completion of table and column names
    You can turn off this feature to get a quicker startup with -A
    
    Connection id:    96
    Current database: db_ispconfig
    
    mysql> update sys_user set passwort = md5('admin') WHERE username = 'admin';
    Query OK, 1 row affected (0.00 sec)
    Rows matched: 1  Changed: 1  Warnings: 0
    
    mysql>
     

Share This Page