new install admin login

Discussion in 'Installation/Configuration' started by bholt, Oct 31, 2012.

  1. bholt

    bholt New Member

    Fresh install of Debian 6 ISPconfig 3 with replication.
    Can't log in to either control panel with admin admin.:confused:
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    Which tutorial did you se to install your server?
     
  3. bholt

    bholt New Member

  4. bholt

    bholt New Member

    Problem solved

    Corrected problem:
    Get the password again:
    Code:
    grep -i db_password /usr/local/ispconfig/interface/lib/config.inc.php
    Set the password:
    Code:
    mysql -u root -p
    mysql> update mysql.user set password=PASSWORD("<PASSWORD>") where User='ispconfig';
    mysql> flush privileges;
    mysql> quit

    Thanks to: Mark_NL
     

Share This Page