我在PC1中安装了一个xampp。我的项目在PC2中。我将连接字符串的服务器从localhost
更改为此:
<add name="VoteContext" providerName="MySql.Data.MySqlClient"
connectionString="server=192.168.0.124; database=votingdb; user id=root;password=;/>
但是当我调试我的项目时,它会显示:PC2 is not allowed to connect to this MariaDB server
我还在PC2中安装了具有相同数据库的xampp。当我使用此连接字符串时,
<add name="VoteContext" providerName="MySql.Data.MySqlClient"
connectionString="server=localhost; database=votingdb; user id=root;password=;"/>
一切正常。
但是当我将“ localhost”更改为PC2的ipaddress时,
<add name="VoteContext" providerName="MySql.Data.MySqlClient"
connectionString="server=192.168.0.123; database=votingdb; user id=root;password=;"/>
出现相同的错误消息。
我想将PC2项目连接到PC1数据库。
我已经配置了xampp设置httpd-xampp.conf
,并且可以使用PC2(192.168.0.124/phpmyadmin
)中的浏览器访问PC1的xampp,并且成功插入了一条记录,但是仍然无法通过以下方式连接到PC1服务器:我的视觉工作室项目。