How Do I View All IP Addresses Connected to a Database?
You can run the following SQL statement on the database to query the number of connected IP addresses:
SELECT substring_index(host, ':',1) AS host_name,state,count(*) FROM information_schema.processlist GROUP BY state,host_name;
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.