Skip to content

Commit 011369f

Browse files
committed
validation
1 parent 0f7393a commit 011369f

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

articles/app-service/configure-language-java-data-sources.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -388,11 +388,11 @@ There are three core steps when [registering a data source with JBoss EAP](https
388388

389389
App Service is a stateless hosting service, so you must put these steps into a startup script and run it each time the JBoss container starts. Using PostgreSQL and MySQL as an examples:
390390

391-
# [PostgreSQL](#tab/jboss_postgresql)
391+
# [PostgreSQL](#tab/postgresql)
392392

393393
[!INCLUDE [configure-jboss-postgresql](includes/configure-language-java-data-sources/configure-jboss-postgresql.md)]
394394

395-
# [MySQL](#tab/jboss_mysql)
395+
# [MySQL](#tab/mysql)
396396

397397
[!INCLUDE [configure-jboss-mysql](includes/configure-language-java-data-sources/configure-jboss-mysql.md)]
398398

articles/app-service/configure-language-java-deploy-run.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ For more information about the CLI commands you can run, see the [Red Hat JBoss
461461

462462
## Clustering
463463

464-
App Service supports clustering for JBoss EAP versions 7.4.1 and greater. To enable clustering, your web app must be [integrated with a virtual network](overview-vnet-integration.md). When the web app is integrated with a virtual network, it restarts, and the JBoss EAP installation automatically starts up with a clustered configuration. When you [run multiple instances with autoscaling](/azure-monitor/autoscale/autoscale-get-started), the JBoss EAP instances communicate with each other over the subnet specified in the virtual network integration, using the ports shown in the `WEBSITES_PRIVATE_PORTS` environment variable at runtime. You can disable clustering by creating an app setting named `WEBSITE_DISABLE_CLUSTERING` with any value.
464+
App Service supports clustering for JBoss EAP versions 7.4.1 and greater. To enable clustering, your web app must be [integrated with a virtual network](overview-vnet-integration.md). When the web app is integrated with a virtual network, it restarts, and the JBoss EAP installation automatically starts up with a clustered configuration. When you [run multiple instances with autoscaling](/azure/azure-monitor/autoscale/autoscale-get-started), the JBoss EAP instances communicate with each other over the subnet specified in the virtual network integration, using the ports shown in the `WEBSITES_PRIVATE_PORTS` environment variable at runtime. You can disable clustering by creating an app setting named `WEBSITE_DISABLE_CLUSTERING` with any value.
465465

466466
:::image type="content" source="media/configure-language-java-deploy-run/jboss-clustering.png" alt-text="A diagram showing a vnet-integrated JBoss App Service app, scaled out to three instances.":::
467467

articles/app-service/includes/configure-language-java-data-sources/configure-jboss-mysql.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ ms.author: cephalin
2626

2727
1. Using a deployment option of your choice, upload your JDBC driver, *jboss-cli-commands.cli*, and *startup.sh* to the paths specified in the respective scripts. Especially, upload *startup.sh* as a startup file. For example:
2828

29-
# [Azure CLI](#tab/cli)
29+
# [Azure CLI](#tab/cli)
3030

3131
```azurecli-interactive
3232
export RESOURCE_GROUP_NAME=<resource-group-name>
@@ -39,9 +39,9 @@ ms.author: cephalin
3939
az webapp deploy --resource-group $RESOURCE_GROUP_NAME --name $APP_NAME --src-path startup.sh --type startup
4040
```
4141

42-
For more information, see [Deploy files to App Service](deploy-zip.md).
42+
For more information, see [Deploy files to App Service](../../deploy-zip.md).
4343

44-
# [Azure Maven Plugin](#tab/maven)
44+
# [Azure Maven Plugin](#tab/maven)
4545

4646
```xml
4747
<deployment>
@@ -75,7 +75,7 @@ For more information, see [Deploy files to App Service](deploy-zip.md).
7575
</deployment>
7676
```
7777

78-
---
78+
---
7979

8080
To confirm that the datasource was added to the JBoss server, SSH into your webapp and run `$JBOSS_HOME/bin/jboss-cli.sh --connect`. Once you're connected to JBoss, run the `/subsystem=datasources:read-resource` to print a list of the data sources.
8181

articles/app-service/includes/configure-language-java-data-sources/configure-jboss-postgresql.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ ms.author: cephalin
2626

2727
1. Using a deployment option of your choice, upload your JDBC driver, *jboss-cli-commands.cli*, and *startup.sh* to the paths specified in the respective scripts. Especially, upload *startup.sh* as a startup file. For example:
2828

29-
# [Azure CLI](#tab/cli)
29+
# [Azure CLI](#tab/cli)
3030

3131
```azurecli-interactive
3232
export RESOURCE_GROUP_NAME=<resource-group-name>
@@ -39,9 +39,9 @@ ms.author: cephalin
3939
az webapp deploy --resource-group $RESOURCE_GROUP_NAME --name $APP_NAME --src-path startup.sh --type startup
4040
```
4141

42-
For more information, see [Deploy files to App Service](deploy-zip.md).
42+
For more information, see [Deploy files to App Service](../../deploy-zip.md).
4343

44-
# [Azure Maven Plugin](#tab/maven)
44+
# [Azure Maven Plugin](#tab/maven)
4545

4646
```xml
4747
<deployment>
@@ -75,7 +75,7 @@ For more information, see [Deploy files to App Service](deploy-zip.md).
7575
</deployment>
7676
```
7777

78-
---
78+
---
7979

8080
To confirm that the datasource was added to the JBoss server, SSH into your webapp and run `$JBOSS_HOME/bin/jboss-cli.sh --connect`. Once you're connected to JBoss, run the `/subsystem=datasources:read-resource` to print a list of the data sources.
8181

0 commit comments

Comments
 (0)