Skip to content

Commit b8e1184

Browse files
Merge pull request #289350 from rwestMSFT/patch-1
SFI - Update disconnected-deployment.md (UUF 328227)
2 parents ce151e0 + 0123120 commit b8e1184

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/azure-sql-edge/disconnected-deployment.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Deploy Azure SQL Edge with Docker - Azure SQL Edge
33
description: Learn about deploying Azure SQL Edge with Docker
44
author: rwestMSFT
55
ms.author: randolphwest
6-
ms.date: 09/21/2024
6+
ms.date: 10/28/2024
77
ms.service: azure-sql-edge
88
ms.topic: quickstart
99
ms.custom: mode-other
@@ -55,13 +55,13 @@ Azure SQL Edge containers aren't supported on the following platforms for produc
5555
- Start an Azure SQL Edge instance running as the Developer edition:
5656

5757
```bash
58-
sudo docker run --cap-add SYS_PTRACE -e 'ACCEPT_EULA=1' -e 'MSSQL_SA_PASSWORD=yourStrong(!)Password' -p 1433:1433 --name azuresqledge -d mcr.microsoft.com/azure-sql-edge
58+
sudo docker run --cap-add SYS_PTRACE -e 'ACCEPT_EULA=1' -e 'MSSQL_SA_PASSWORD=<password>' -p 1433:1433 --name azuresqledge -d mcr.microsoft.com/azure-sql-edge
5959
```
6060

6161
- Start an Azure SQL Edge instance running as the Premium edition:
6262

6363
```bash
64-
sudo docker run --cap-add SYS_PTRACE -e 'ACCEPT_EULA=1' -e 'MSSQL_SA_PASSWORD=yourStrong(!)Password' -e 'MSSQL_PID=Premium' -p 1433:1433 --name azuresqledge -d mcr.microsoft.com/azure-sql-edge
64+
sudo docker run --cap-add SYS_PTRACE -e 'ACCEPT_EULA=1' -e 'MSSQL_SA_PASSWORD=<password>' -e 'MSSQL_PID=Premium' -p 1433:1433 --name azuresqledge -d mcr.microsoft.com/azure-sql-edge
6565
```
6666

6767
> [!IMPORTANT]
@@ -72,7 +72,7 @@ Azure SQL Edge containers aren't supported on the following platforms for produc
7272
| Parameter | Description |
7373
| --- | --- |
7474
| **-e "ACCEPT_EULA=Y"** | Set the **ACCEPT_EULA** variable to any value to confirm your acceptance of the [End-User Licensing Agreement](https://go.microsoft.com/fwlink/?linkid=2139274). Required setting for the SQL Edge image. |
75-
| **-e "MSSQL_SA_PASSWORD=yourStrong(!)Password"** | Specify your own strong password that is at least eight characters and meets the [Azure SQL Edge password requirements](/sql/relational-databases/security/password-policy). Required setting for the SQL Edge image. |
75+
| **-e "MSSQL_SA_PASSWORD=\<password\>"** | Specify your own strong password that is at least eight characters and meets the [password requirements](/sql/relational-databases/security/password-policy). Required setting for the SQL Edge image. |
7676
| **-p 1433:1433** | Map a TCP port on the host environment (first value) with a TCP port in the container (second value). In this example, SQL Edge is listening on TCP 1433 in the container and this is exposed to the port, 1433, on the host. |
7777
| **--name azuresqledge** | Specify a custom name for the container rather than a randomly generated one. If you run more than one container, you can't reuse this same name. |
7878
| **-d** | Run the container in the background (daemon) |
@@ -106,12 +106,12 @@ The **SA** account is a system administrator on the Azure SQL Edge instance that
106106
107107
1. Choose a strong password to use for the SA user.
108108
109-
1. Use `docker exec` to run **sqlcmd** to change the password using Transact-SQL. In the following example, replace the old password, `<YourStrong!Passw0rd>`, and the new password, `<YourNewStrong!Passw0rd>`, with your own password values.
109+
1. Use `docker exec` to run **sqlcmd** to change the password using Transact-SQL. In the following example, replace the old password, `<old-password>`, and the new password, `<new-password>`, with your own password values.
110110
111111
```bash
112112
sudo docker exec -it azuresqledge /opt/mssql-tools/bin/sqlcmd \
113-
-S localhost -U SA -P "<YourStrong@Passw0rd>" \
114-
-Q 'ALTER LOGIN SA WITH PASSWORD="<YourNewStrong@Passw0rd>"'
113+
-S localhost -U SA -P "<old-password>" \
114+
-Q 'ALTER LOGIN SA WITH PASSWORD="<new-password>"'
115115
```
116116
117117
## Connect to Azure SQL Edge
@@ -127,7 +127,7 @@ The following steps use the Azure SQL Edge command-line tool, **sqlcmd**, inside
127127
1. Once inside the container, connect locally with **sqlcmd**. **sqlcmd** isn't in the path by default, so you have to specify the full path.
128128

129129
```bash
130-
/opt/mssql-tools/bin/sqlcmd -S localhost -U SA -P "<YourNewStrong@Passw0rd>"
130+
/opt/mssql-tools/bin/sqlcmd -S localhost -U SA -P "<password>"
131131
```
132132

133133
> [!TIP]

0 commit comments

Comments
 (0)