I am installing a Typo3 CMS version 9.5.5 on a MacOs Mojave system using MySql database.
Details of environment: MySql database : Ver 8.0.16 for osx10.14 on x86_64 (installed with Homebrew) OS: MacOs Mojave 10.14.4 Typo 3 Version: 9.5.5
Installation gets error in second step when trying to establish a connection against the database: "Database connect not successful Connecting to the database with given settings failed: An exception occurred in driver: The server requested authentication method unknown to the client"
1) I verified the user/password combination by using the mysql shell command mysql -u -p and I can successfully connect to Mysql
2) I did installation step 2 using TCP/IP connection and also MySql socket connection modes, but error message is same on both modes
3) As recommended by Database connect not successful TYPO3 I did set the skip-networking option in /usr/local/ etc/my.cnf to 0 but this did not help.
4) Current configured database connectivity in Typo3 LocalConfiguration file is using the following settings
'charset' => 'utf8mb4',
'driver' => 'mysqli',
'host' => '127.0.0.1',
'password' => '***',
'port' => 3306,
'tableoptions' => [
'charset' => 'utf8mb4',
'collate' => 'utf8mb4_unicode_ci',
],
'user' => 'root',
],
],
I expect to pass step 2 in Typo3 installation with successful connectivity to MySql database but get error message see above.