book
Article ID: KB0079104
calendar_today
Updated On:
Description
The error faced while creating a MySQL data source "Database Reported: Null message from the server. Host is blocked because of many connection errors. Unblock with mysqladmin flush hosts" is a database side error and occurs due to multiple connections created while connecting the database.
Issue/Introduction
While creating a MySQL data source in the Information designer, it fails with the following error. "Database Reported: Null message from server. Host is blocked because of many connection errors. Unblock with mysqladmin flush hosts"
Resolution
To resolve the above error, you need to execute "Flush hosts " command. You can execute the command as per below syntax.
If you have shell access to the server, you can log in on the database machine, and execute the following:
mysql -u root -p -e 'flush hosts'
OR
Login to database server and type the following command in the SQL console.
FLUSH HOSTS;