jackk556 Posted September 25, 2019 Share Posted September 25, 2019 hello, so I keep getting an error when converting MySQLlite to My SQL DATABASE, Error - Can't connect to MySQL server on 'localhost' (10061): No connection could be made because the target machine actively refused it 127.0.0.1:3306 Link to comment Share on other sites More sharing options...
Rads Posted September 25, 2019 Share Posted September 25, 2019 probably a firewall issue maybe I've been up the port 3306 will help Generally restricting MySQL access to an ip address is a good idea. There can be some security concerns but a good firewall should mitigate some of them Link to comment Share on other sites More sharing options...
Dennis Posted September 25, 2019 Share Posted September 25, 2019 Are you sure MySQL is running? You'll need to manually install and configure a MySQL server. Link to comment Share on other sites More sharing options...
Davinel17 Posted September 28, 2019 Share Posted September 28, 2019 i can help you i got the same problem , the only way i found to succeed ( not found the support help me ) is to create your database with cmd line open mysql command line 5.7 Write this cmd: CREATE DATABASE tcadmin; CREATE USER 'tcadmin'@'%' IDENTIFIED WITH mysql_native_password BY 'PASSWORDHERE'; GRANT ALL PRIVILEGES ON tcadmin.* TO 'tcadmin'@'%'; Honestly i try alot of time and its the only way i succeed on win 10 ,windows server 2012 and 2019 Link to comment Share on other sites More sharing options...
Dennis Posted September 28, 2019 Share Posted September 28, 2019 the only way i found to succeed ( not found the support help me ) is to create your database with cmd line Because that is the only way to do it. You will need to create the database before you can use it :-) Link to comment Share on other sites More sharing options...
Davinel17 Posted September 28, 2019 Share Posted September 28, 2019 nha i mean , if i create it by mysql workbench it did't work Link to comment Share on other sites More sharing options...
Dennis Posted September 28, 2019 Share Posted September 28, 2019 It must mean that you've created the database user with the incorrect permissions to the database. Whether you setup the database and user through MySQL Workbench, phpMyAdmin or CLI is the same - it's just a matter of preference :-) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now