Bug #96656 | Telnet to 8.0.16 shows version 8.0.11 | ||
---|---|---|---|
Submitted: | 26 Aug 2019 13:23 | Modified: | 26 Aug 2019 16:12 |
Reporter: | Fredrik Stridfeldt | Email Updates: | |
Status: | Not a Bug | Impact on me: | |
Category: | MySQL Server | Severity: | S3 (Non-critical) |
Version: | 8.0.16 | OS: | Red Hat |
Assigned to: | CPU Architecture: | x86 | |
Tags: | telnet, version |
[26 Aug 2019 13:23]
Fredrik Stridfeldt
[26 Aug 2019 16:12]
MySQL Verification Team
I truly doubt this is a bug. Can you kindly confirm which mysqld is listening on the tcp/ip port using tools like lsof, netstat, ps auxxx You've probably got another 8.0.11 running there. Try login using mysql client and run: SELECT VERSION();
[26 Aug 2019 16:16]
MySQL Verification Team
Check output of: netstat -p | grep -i mysqld for pid in $(pidof mysqld) ; do echo "lsof for pid = ${pid}"; echo "========================"; echo; lsof -s -p${pid}; echo; echo; done ps auxfww | grep -E 'mysqld'