You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This sandbox setup is designed to help developers begin building the application. Once the application is ready for production, you can gradually request to increase the sending volume. If you need to send more messages than the rate limits allow, submit a support request to raise your desired email sending limit. The reviewing team will consider your overall sender reputation, which includes factors such as your email delivery failure rates, your domain reputation, and reports of spam and abuse, when determining approval status.
102
+
This sandbox setup is to help developers start building the application. Once you have established a sender reputation by sending mails, you can request to increase the sending volume limits. Submit a [support request](https://azure.microsoft.com/support/create-ticket/) to raise your desired email sending limit if you require sending a volume of messages exceeding the rate limits. Email quota increase requests are not automatically approved. The reviewing team will consider your overall sender reputation, which includes factors such as your email delivery failure rates, your domain reputation, and reports of spam and abuse when determining approval status.
103
+
104
+
> [!NOTE]
105
+
> Email quota increase requests may take up to 72 hours to be evaluated and approved, especially for requests that come in on Friday afernoon.
Copy file name to clipboardExpand all lines: articles/mysql/flexible-server/tutorial-php-database-app.md
+20-5Lines changed: 20 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -140,7 +140,7 @@ When you're finished, you can delete all of the resources from your Azure subscr
140
140
## Frequently asked questions
141
141
142
142
- [How much does this setup cost?](#how-much-does-this-setup-cost)
143
-
- [How do I connect to the MySQL database that's secured behind the virtual network with other tools?](#how-do-i-connect-to-the-mysql-database-thats-secured-behind-the-virtual-network-with-other-tools)
143
+
- [How do I connect to a MySQL database that's secured behind a virtual network?](#how-do-i-connect-to-a-mysql-database-thats-secured-behind-a-virtual-network)
144
144
- [How does local app development work with GitHub Actions?](#how-does-local-app-development-work-with-github-actions)
145
145
- [Why is the GitHub Actions deployment so slow?](#why-is-the-github-actions-deployment-so-slow)
146
146
@@ -153,11 +153,26 @@ Pricing for the create resources is as follows:
153
153
- The virtual network doesn't incur a charge unless you configure extra functionality, such as peering. See [Azure Virtual Network pricing](https://azure.microsoft.com/pricing/details/virtual-network/).
154
154
- The private DNS zone incurs a small charge. See [Azure DNS pricing](https://azure.microsoft.com/pricing/details/dns/).
155
155
156
-
#### How do I connect to the MySQL database that's secured behind the virtual network with other tools?
157
156
158
-
- For basic access from a commmand-line tool, you can run `mysql` from the app's SSH terminal.
159
-
- To connect from a desktop tool like MySQL Workbench, your machine must be within the virtual network. For example, it could be an Azure VM that's connected to one of the subnets, or a machine in an on-premises network that has a [site-to-site VPN](../../vpn-gateway/vpn-gateway-about-vpngateways.md) connection with the Azure virtual network.
160
-
- You can also [integrate Azure Cloud Shell](../../cloud-shell/private-vnet.md) with the virtual network.
157
+
### How do I connect to a MySQL database that's secured behind a virtual network?
158
+
159
+
To connect to a MySQL database, you can use several methods based on the tools and environments at your disposal:
160
+
161
+
- **Command-line tool access**:
162
+
- Use the `mysql` command from the app's SSH terminal for basic access.
163
+
- **Desktop tools (for example, MySQL Workbench)**:
164
+
- **Using SSH tunneling with Azure CLI**:
165
+
- Create an [SSH session](../../app-service/configure-linux-open-ssh-session.md#open-ssh-session-from-remote-shell) to the web app by using the Azure CLI.
166
+
- Use the SSH session to tunnel the traffic to MySQL.
167
+
- **Using site-to-site VPN or Azure VM**:
168
+
- Your machine must be part of the virtual network.
169
+
- Consider using:
170
+
- An Azure VM linked to one of the subnets.
171
+
- A machine in an on-premises network that has a [site-to-site VPN connection](../../vpn-gateway/vpn-gateway-about-vpngateways.md) to the Azure virtual network.
172
+
- **Azure Cloud Shell integration**:
173
+
- [Integrate Azure Cloud Shell](../../cloud-shell/private-vnet.md) with the virtual network for direct access.
174
+
175
+
161
176
162
177
#### How does local app development work with GitHub Actions?
0 commit comments