We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
java代码: DriverManager.getConnection("jdbc:mysql://127.0.0.1:33060/ssdb?verifyServerCertificate=false&useSSL=false", "root", "root");
golang代码
func main() { logrus.SetLevel(logrus.DebugLevel) l, _ := net.Listen("tcp", ":33060") for true { c, error := l.Accept() if error != nil { logrus.Errorf("accept error, %v", error) } conn, error := server.NewConn(c, "root", "root", pkg.NewHandler()) if error != nil { logrus.Errorf("server.NewConn error, %v", error) continue } go handlerConn(conn) } }
这样会报错 Access denied for user 'root'@'127.0.0.1:3306' (using password: Yes)
The text was updated successfully, but these errors were encountered:
嗨,你这个问题解决了吗,我遇到了同样的问题!
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
java代码:
DriverManager.getConnection("jdbc:mysql://127.0.0.1:33060/ssdb?verifyServerCertificate=false&useSSL=false", "root", "root");
golang代码
func main() { logrus.SetLevel(logrus.DebugLevel) l, _ := net.Listen("tcp", ":33060") for true { c, error := l.Accept() if error != nil { logrus.Errorf("accept error, %v", error) } conn, error := server.NewConn(c, "root", "root", pkg.NewHandler()) if error != nil { logrus.Errorf("server.NewConn error, %v", error) continue } go handlerConn(conn) } }
这样会报错 Access denied for user 'root'@'127.0.0.1:3306' (using password: Yes)
The text was updated successfully, but these errors were encountered: