Accesing XAMPP MySql Database from Another Computer

前端 未结 2 386
南旧
南旧 2020-12-10 07:39

So a friend of mine and I are using both xampp on ubuntu, if that helps, to connect between each other\'s website, We both created the same php file to connect, so we use de

2条回答
  •  猫巷女王i
    2020-12-10 08:19

    It looks like your MySQL database isn't allowing you to connect remotely with the credentials you provided. You will need to configure a remote user to connect. Try looking into MySQL Grants.

    For Example:

    GRANT SELECT, INSERT ON database.* TO 'someuser'@'somehost';
    

提交回复
热议问题