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 userassword admin:admin Any ideas?
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>