Access denied error while connecting to MySQL in App in Azure App Service(在 Azure 应用服务中的应用中连接到 MySQL 时访问被拒绝错误)
问题描述
我创建了一个 Azure 应用服务并在应用中启用了 MySql.我可以从门户使用 phpMyAdmin 连接到 MySql - 转到应用程序 -> 应用程序中的 MySql -> 单击管理.它用 phpMyAdmin 打开另一个窗口.
I created an Azure App Service and enabled MySql in App. I able to connect to MySql using phpMyAdmin from portal - go to app -> MySql in App -> click manage. It open another window with phpMyAdmin.
但不知何故现在我无法连接到数据库.我得到以下错误
But somehow now I am not able to connect to database. I get below error
MySQL 说:文档
2002 - 尝试以禁止的方式访问套接字其访问权限.— 服务器没有响应(或本地服务器的套接字没有正确配置).
2002 - An attempt was made to access a socket in a way forbidden by its access permissions. — The server is not responding (or the local server's socket is not correctly configured).
推荐答案
很简单.如果您已停止并重新启动该网站,则必须先从浏览器连接到该网站的 URL,然后才能使用 phpMyAdmin.
It's simple. If you have stopped the website and started it again, you must connect to the website URL from a browser, before you can use phpMyAdmin.
这篇关于在 Azure 应用服务中的应用中连接到 MySQL 时访问被拒绝错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Azure 应用服务中的应用中连接到 MySQL 时访问被拒绝错误
基础教程推荐
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- 是否可以执行按位分组功能? 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- 无法解决整理冲突 2021-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- 在 SQL 中连接多个表 2021-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
