Posts by Bruno Casarotti • 116 points
2 posts
-
0
votes1
answer166
viewsA: Problem raising API and making request via Postman
You must specify which controller is calling, you tried the following URL? http://localhost:5050/api/Usuario/CriarUsuario http://0.0.0.0:5050/api/Usuario/CriarUsuario The UserUrls serves to: Define…
-
0
votes1
answer265
viewsA: How to access mysql base from an external network
You can unlock remote access by root user in the following way: GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password'; Comment on the following line in your my.cnf #bind-address =…