Hi, It seems that default credentials to connect fresh ISPConfig 3.2.2 panel are not the followings anymore : login : admin password : admin Can someone please tell me what previous default credentials have been changed to ? Regards
Thanks Till. But I closed my terminal, so that I can't roll back to see what the installer showed as being my default credentials. I guess I have to reinstall whole OS and panel, and taking care not to miss collecting my credentials this time.... !
No need to reinstall, reset the password: https://www.faqforge.com/linux/cont...et-the-administrator-password-in-ispconfig-3/
I did it anyway ! And I observed that the installer still shows admin/admin as being default connexion credentials. But these are not recognized anymore : I am returned this ERROR MESSAGE when trying to connect: “Username or Password wrong“ Further more, although I alternatively attempted to set desired credentials from following this link, it resulted in the login page showing again the same ERROR MESSAGE (as above). Please view hereafter how I started and terminated the process to make such this change (MY-SERVER-NAME and MY-PASSWORD are replacing what they are really set to) : Last login: Tue Feb 9 20:33:49 2021 from 78.197.67.224 ubuntu@MY-SERVER-NAME:~$ sudo su - root@MY-SERVER-NAME:~# mysql -u root -p Enter password: XXXXXXXX Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 92 Server version: 10.1.47-MariaDB-0ubuntu0.18.04.1 Ubuntu 18.04 Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> use dbispconfig; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed MariaDB [dbispconfig]> UPDATE sys_user SET passwort = md5(‘MY-PASSWORD’) WHERE username = 'admin'; '> ************************************* Ctrl Z to quit ************************************* [1]+ Stopped mysql -u root -p root@MY-SERVER-NAME:~# exit PLEASE HELP !!!!!!!
The ISPConfig installer is not displaying this, which means you probably are using a third-party software to install ISPConfig that is not compatible with ISPConfig 3.2. As a test, I used the exact instructions from the password reset FAQ on an ISPConfig 3.2.2 system, and the password was set to 'admin' successfully, so there is nothing wrong with the instructions here. Did you notice that the quotes around your password are wrong? `password´ is not the same as 'password'
*** MY ENVIRONMENT *** Machine : Remote VPS OS distro : Unbuntu 18.04 LTS Server : Apache 2.4 None third-party software (see my environment above), and ISPConfig 3.2.2 installed from following this Howtoforge tutorial :https://www.howtoforge.com/tutorial/ubuntu-ispconfig-automated-install-script/ And to be precise, the same installer (link above) sometimes outputs admin/admin credentials, and sometimes not, as well as some other outputs are sometimes skipped (not showed). I am experiencing this since a long time..., whithout knowing why the installer behave so. But no connection problem with admin/admin until recently. Is this one 'password' correct ? Regards
That's not an installer from ISPconfig, it's from the company servisys and it works only for ISPConfig 3.1 and not with the current version 3.2. As mentioned above, this is not an installer from ISPconfig, the output that you get is not the output that the ispconfig install.php script is returning and it is not compatible with ISPConfig 3.2. If you have issues with that software, please contact it's author or file a bug report on his github page. Yes
I've added a warning notice to that third-party guide now to ensure everyone is aware that this is really for ISPConfig 3.1 only and not working anymore.
You can use the official autoinstaller: https://www.howtoforge.com/community/threads/ispconfig-3-autoinstaller.86078/
Thank U Just two last things : About changing Mysql default root password : UPDATE sys_user SET passwort = md5('admin') WHERE username = 'admin'; Can I customize both the password and username (no contraindication) ? Is there a better command line than “quit;“ (that does not work) to exit Mysql back to shell in terminal ? About ISPConfig and Ubuntu OS upgrade from 18.04 to 20.4 To your knowledge, is there any contraindication to instal ISPConfig 3.2 on a server running OS distro Ubuntu 20.04 ?
This changes the password for the ispconfig-admin, not for the mysql root account. Basicly you can change the root-password for mysql but you have to adjust some other configs. I don't see any reason why you want to change the root-user-password for mysql. you can not change the username in this query until you changed the admin-username in ispconfig
As Florian said, this is about the ISPConfig admin login, which you asked for in this thread, and not about MySQL root user. And you can't change the user in the sql query. The password can be changed of course, but it's easioer to not change it and change it in ISPConfig after first login instead. As you can see on ispconfig.org that there are official installation instructions for Ubuntu 20.04 and also Ubuntu 20.04 is listed as a supported OS.
Thank U You have both helped me to better comprehend web help pages that were not clear enough to me. Regards