<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: MySQL 8.0.34 Upgrade and tons of MY-013360 &#8216;mysql_native_password&#8217; is deprecated warnings	</title>
	<atom:link href="https://www.brandonchecketts.com/archives/mysql-8-0-34-upgrade-and-tons-of-mysql_native_password-is-deprecated-warnings/feed" rel="self" type="application/rss+xml" />
	<link>https://www.brandonchecketts.com/archives/mysql-8-0-34-upgrade-and-tons-of-mysql_native_password-is-deprecated-warnings</link>
	<description>Web Programming, Linux System Administation, and Entrepreneurship in Athens Georgia</description>
	<lastBuildDate>Fri, 28 Mar 2025 19:42:41 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>
	<item>
		<title>
		By: Brandon Checketts		</title>
		<link>https://www.brandonchecketts.com/archives/mysql-8-0-34-upgrade-and-tons-of-mysql_native_password-is-deprecated-warnings/comment-page-1#comment-217915</link>

		<dc:creator><![CDATA[Brandon Checketts]]></dc:creator>
		<pubDate>Fri, 28 Mar 2025 19:42:41 +0000</pubDate>
		<guid isPermaLink="false">https://www.brandonchecketts.com/?p=1058#comment-217915</guid>

					<description><![CDATA[For anybody still seeing this, upgrading to MySQL 8.0.38 effectively fixes this by only logging the warning once]]></description>
			<content:encoded><![CDATA[<p>For anybody still seeing this, upgrading to MySQL 8.0.38 effectively fixes this by only logging the warning once</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Anse		</title>
		<link>https://www.brandonchecketts.com/archives/mysql-8-0-34-upgrade-and-tons-of-mysql_native_password-is-deprecated-warnings/comment-page-1#comment-211145</link>

		<dc:creator><![CDATA[Anse]]></dc:creator>
		<pubDate>Fri, 14 Jun 2024 04:29:37 +0000</pubDate>
		<guid isPermaLink="false">https://www.brandonchecketts.com/?p=1058#comment-211145</guid>

					<description><![CDATA[@velloraposo, your users won&#039;t be able to connect when you just change the mysql.user.plugin field. Your mysql.user.authentication_string needs to be encrypted again, using the new plugin. The correct way is to pass both plugin and password per SQL, like Brandon wrote above:
ALTER user &#039;yourusername&#039;@&#039;hostname&#039; IDENTIFIED WITH caching_sha2_password BY &#039;yourpassword&#039;;]]></description>
			<content:encoded><![CDATA[<p>@velloraposo, your users won&#8217;t be able to connect when you just change the mysql.user.plugin field. Your mysql.user.authentication_string needs to be encrypted again, using the new plugin. The correct way is to pass both plugin and password per SQL, like Brandon wrote above:<br />
ALTER user &#8216;yourusername&#8217;@&#8217;hostname&#8217; IDENTIFIED WITH caching_sha2_password BY &#8216;yourpassword&#8217;;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: velloraposo		</title>
		<link>https://www.brandonchecketts.com/archives/mysql-8-0-34-upgrade-and-tons-of-mysql_native_password-is-deprecated-warnings/comment-page-1#comment-206654</link>

		<dc:creator><![CDATA[velloraposo]]></dc:creator>
		<pubDate>Tue, 06 Feb 2024 15:40:54 +0000</pubDate>
		<guid isPermaLink="false">https://www.brandonchecketts.com/?p=1058#comment-206654</guid>

					<description><![CDATA[Hi Brandon,

Thanks a lot for your post. I0ve the same issue.

My environment is: Wordpress 6.4.2 / php-fpm 8.2 and Mysql 8.0.35. 

I&#039;ve change the field &quot;plugin&quot; on users table from &quot;mysql_native_password&quot; to  &quot;caching_sha2_password&quot; and warning logs still reporting. 

Hope an AWS deploying for this log_error_suppression_list feature.]]></description>
			<content:encoded><![CDATA[<p>Hi Brandon,</p>
<p>Thanks a lot for your post. I0ve the same issue.</p>
<p>My environment is: WordPress 6.4.2 / php-fpm 8.2 and Mysql 8.0.35. </p>
<p>I&#8217;ve change the field &#8220;plugin&#8221; on users table from &#8220;mysql_native_password&#8221; to  &#8220;caching_sha2_password&#8221; and warning logs still reporting. </p>
<p>Hope an AWS deploying for this log_error_suppression_list feature.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Brandon		</title>
		<link>https://www.brandonchecketts.com/archives/mysql-8-0-34-upgrade-and-tons-of-mysql_native_password-is-deprecated-warnings/comment-page-1#comment-206107</link>

		<dc:creator><![CDATA[Brandon]]></dc:creator>
		<pubDate>Sun, 07 Jan 2024 01:48:28 +0000</pubDate>
		<guid isPermaLink="false">https://www.brandonchecketts.com/?p=1058#comment-206107</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.brandonchecketts.com/archives/mysql-8-0-34-upgrade-and-tons-of-mysql_native_password-is-deprecated-warnings/comment-page-1#comment-206081&quot;&gt;Tom Wijnroks&lt;/a&gt;.

Yes, that would be the desired way to prevent this error.  Since this instance is hosted on RDS, though, that setting is not currently modifiable. The link to AWS Repost is a request for Amazon to make this setting able to be configured by customers. It looks like it has attracted some attention and may happen soon.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.brandonchecketts.com/archives/mysql-8-0-34-upgrade-and-tons-of-mysql_native_password-is-deprecated-warnings/comment-page-1#comment-206081">Tom Wijnroks</a>.</p>
<p>Yes, that would be the desired way to prevent this error.  Since this instance is hosted on RDS, though, that setting is not currently modifiable. The link to AWS Repost is a request for Amazon to make this setting able to be configured by customers. It looks like it has attracted some attention and may happen soon.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Tom Wijnroks		</title>
		<link>https://www.brandonchecketts.com/archives/mysql-8-0-34-upgrade-and-tons-of-mysql_native_password-is-deprecated-warnings/comment-page-1#comment-206081</link>

		<dc:creator><![CDATA[Tom Wijnroks]]></dc:creator>
		<pubDate>Fri, 05 Jan 2024 12:13:37 +0000</pubDate>
		<guid isPermaLink="false">https://www.brandonchecketts.com/?p=1058#comment-206081</guid>

					<description><![CDATA[Have you tried to use &#039;log_error_suppression_list&#039; to supress the specific MY-013360 warning? I tested this on MySQL 8.0.35 by adding the following line in my.cnf (and restarted MySQL):

log_error_suppression_list = &quot;013360&quot;

After this I no longer get the MY-013360 warnings in the error logs. From the docs:

&quot;The log_error_suppression_list system variable applies to events intended for the error log and specifies which events to suppress when they occur with a priority of WARNING or INFORMATION. For example, if a particular type of warning is considered undesirable “noise” in the error log because it occurs frequently but is not of interest, it can be suppressed.&quot;

More information here: https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_log_error_suppression_list]]></description>
			<content:encoded><![CDATA[<p>Have you tried to use &#8216;log_error_suppression_list&#8217; to supress the specific MY-013360 warning? I tested this on MySQL 8.0.35 by adding the following line in my.cnf (and restarted MySQL):</p>
<p>log_error_suppression_list = &#8220;013360&#8221;</p>
<p>After this I no longer get the MY-013360 warnings in the error logs. From the docs:</p>
<p>&#8220;The log_error_suppression_list system variable applies to events intended for the error log and specifies which events to suppress when they occur with a priority of WARNING or INFORMATION. For example, if a particular type of warning is considered undesirable “noise” in the error log because it occurs frequently but is not of interest, it can be suppressed.&#8221;</p>
<p>More information here: <a href="https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_log_error_suppression_list" rel="nofollow ugc">https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_log_error_suppression_list</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Brandon		</title>
		<link>https://www.brandonchecketts.com/archives/mysql-8-0-34-upgrade-and-tons-of-mysql_native_password-is-deprecated-warnings/comment-page-1#comment-205501</link>

		<dc:creator><![CDATA[Brandon]]></dc:creator>
		<pubDate>Thu, 07 Dec 2023 17:19:40 +0000</pubDate>
		<guid isPermaLink="false">https://www.brandonchecketts.com/?p=1058#comment-205501</guid>

					<description><![CDATA[The AWS RePost topic has been upvoted a bit, but no word from the AWS team on if they will implement the proper fix for this.  In the mean time, I have logs suppressed and have not updated any other servers past 8.0.33.]]></description>
			<content:encoded><![CDATA[<p>The AWS RePost topic has been upvoted a bit, but no word from the AWS team on if they will implement the proper fix for this.  In the mean time, I have logs suppressed and have not updated any other servers past 8.0.33.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: cw		</title>
		<link>https://www.brandonchecketts.com/archives/mysql-8-0-34-upgrade-and-tons-of-mysql_native_password-is-deprecated-warnings/comment-page-1#comment-205494</link>

		<dc:creator><![CDATA[cw]]></dc:creator>
		<pubDate>Thu, 07 Dec 2023 06:12:12 +0000</pubDate>
		<guid isPermaLink="false">https://www.brandonchecketts.com/?p=1058#comment-205494</guid>

					<description><![CDATA[Thanks for your information,
This continues to happen with RDS MySQL 8.0.35.
did you solve the problem?]]></description>
			<content:encoded><![CDATA[<p>Thanks for your information,<br />
This continues to happen with RDS MySQL 8.0.35.<br />
did you solve the problem?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
