mysql_connect() :用户“user”@“localhost”的访问被拒绝
我正在尝试连接 mysql,但出现错误。 我输入了我的服务器 IP 地址并使用了端口 3306,应该使用哪个端口?
<?php
$connection = mysql_connect("serer.ip:port", "user", "pass")
or die(mysql_error());
if ($connection) {$msg = "success";}
?>
<html>
<head>
</head>
<body>
<? echo "$msg"; ?>
</body>
</html>
这是它产生的错误:
警告:mysql_connect() [function.mysql-connect]:/home/admin/domains/domain.com.au/public_html/db_connect 中的用户“user”@“localhost”(使用密码:YES)访问被拒绝.php 第 3 行 用户“user”@“localhost”访问被拒绝(使用密码:YES)
I am trying to connect to mysql and am getting an error.
I put my servers ip address in and used port 3306 whihch post should be used?
<?php
$connection = mysql_connect("serer.ip:port", "user", "pass")
or die(mysql_error());
if ($connection) {$msg = "success";}
?>
<html>
<head>
</head>
<body>
<? echo "$msg"; ?>
</body>
</html>
Here is the error its producing:
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'user'@'localhost' (using password: YES) in /home/admin/domains/domain.com.au/public_html/db_connect.php on line 3
Access denied for user 'user'@'localhost' (using password: YES)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
端口会自动选择为 3306。
还要仔细检查以确保您的连接用户名和密码正确且允许访问。
Use
The port is automatically selected as 3306.
Also double check to make sure your username and password for connecting are correct and allowed access.