Wednesday, 11 December 2024

Config Mysql in Laragon

* config in my.ini

Example allow user root access from any IP

UPDATE mysql.user SET host='%' WHERE user='root';
FLUSH PRIVILEGES;

ALTER USER 'root'@'%' IDENTIFIED BY 'root';

Update my.ini

bind-address=0.0.0.0

Thank you.

No comments:

Post a Comment

Golang Advanced Interview Q&A