Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Can you recreate a db with utf8, re import and try again?
Other fixes usually have to do with mysql config, but you don’t have access to it with a managed instance
Any News about this? I also cannot connect from my PHP application due to the same error “Server sent charset unknown to the client”. Recreation did not fixed it…
Actually you can’t change managed database server’s chartset. So here work around only to change your php script to connect with server using utfmb4.
If you can post your database connection code then we can help you.
Here is sample code to connect with server using utfmb8 in php with pdo.
self::$instance = new PDO('mysql:host=' . DB_HOST . ';port=' . DB_PORT . ';dbname=' . DATABASE . ';charset=utf8mb4', DB_USER, DB_PASS, $pdo_options);