Can I connect from the outside? If possible, it is recommended to query the mysql.user table to see if there is support for users allowed to connect from 127.0.0.1. If not, you can use the following statement to add
GRANT ALL PRIVILEGES ON *.* TO 'root'@'127.0.0.1'
IDENTIFIED BY 'some_pass' WITH GRANT OPTION;
Can I connect from the outside? If possible, it is recommended to query the mysql.user table to see if there is support for users allowed to connect from 127.0.0.1. If not, you can use the following statement to add
As mentioned above, if it is a remote connection, the database user needs to be granted permissions.