Using the JTS3ServerMod Web Interface with MySQL 8+

Started by Stefan1200, April 14, 2019, 08:22:46 PM

Previous topic - Next topic

Stefan1200

EN: It seems that the MySQL implementation of PHP have problems with the default configuration of MySQL 8 and newer. Make sure, that you have set the following settings in the MySQL configuration file and restart the MySQL server after saving the changes:
DE: Es scheint, als habe die MySQL Implementation von PHP verschiedene Probleme mit der Standard Konfiguration von MySQL 8 und neuer. Bitte sicherstellen, das in der MySQL Konfiguration folgende Werte gesetzt sind und starte den MySQL Server nach dem Speichern der Änderungen neu:
default_authentication_plugin=mysql_native_password
character-set-server=utf8


EN: Maybe the MySQL user needs a valid password set for this authentication method. In this case use the MySQL tool to fire the following SQL command (replace the username and password):
DE: Eventuell muss beim MySQL Benutzer auch noch das Passwort für diese Authentifizierungsmethode gesetzt werden. Ggf. muss man dafür mit dem MySQL Programm folgenden SQL Befehl absetzen (den Benutzernamen und das Passwort entsprechend ersetzen):
ALTER USER username@host IDENTIFIED WITH mysql_native_password BY 'password';