Updated MySQL tips (markdown)

ghost-from-the-past 2021-04-21 22:14:21 +02:00
parent 4955d5bbf6
commit b3899308ea

@ -38,6 +38,15 @@ This tips were prepared for [[Install Tracks 2.5 on Ubuntu 20.10]]
<p>
<br/>
</p>
<h3>Launch the MySQL console</h3>
<p>from the Linux terminal console type</p>
<blockquote>
&gt;mysql -u root -p<br/>
</blockquote>
<p>or for a specific user</p>
<blockquote>
&gt;mysql -u <em> <strong>user_name</strong> </em> -p<br/>
</blockquote>
<h3>MySQL - change the default of default_authentication_plugin</h3>
<p>since Mysql version 8.0 the default values has been changed from mysql_native_password to caching_sha2_password</p>
<p>this needs to be reverted in the cnf file</p>