Skip to content

Commit 702c96e

Browse files
committed
Fixed blocking and nonblocking issues
1 parent 4b538d9 commit 702c96e

1 file changed

Lines changed: 15 additions & 15 deletions

File tree

docs/linux/sql-server-linux-setup-language-extensions-java.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -174,29 +174,29 @@ To validate installation, run a T-SQL script that executes a system stored proce
174174

175175
## Full install of SQL Server and Java Language Extension
176176

177-
You can install and configure the database engine and Java Language Extensios in one procedure by appending Java packages and parameters on a command that installs the database engine.
177+
You can install and configure the database engine and Java Language Extension in one procedure by appending Java packages and parameters on a command that installs the database engine.
178178

179179
1. Provide a command line that includes the database engine, plus language extension features.
180180

181-
You can add Java extensibility to a database engine install.
181+
You can add Java extensibility to a database engine install.
182182

183-
```bash
184-
sudo yum install -y mssql-server mssql-server-extensibility-java
185-
```
183+
```bash
184+
sudo yum install -y mssql-server mssql-server-extensibility-java
185+
```
186186

187-
3. Accept license agreements and complete the post-install configuration. Use the **mssql-conf** tool for this task.
187+
1. Accept license agreements and complete the post-install configuration. Use the **mssql-conf** tool for this task.
188188

189-
```bash
190-
sudo /opt/mssql/bin/mssql-conf setup
191-
```
189+
```bash
190+
sudo /opt/mssql/bin/mssql-conf setup
191+
```
192192

193-
You will be prompted to accept the license agreement for the database engine, choose an edition, and set the administrator password.
193+
You will be prompted to accept the license agreement for the database engine, choose an edition, and set the administrator password.
194194

195-
4. Restart the service, if prompted to do so.
195+
1. Restart the service, if prompted to do so.
196196

197-
```bash
198-
sudo systemctl restart mssql-server.service
199-
```
197+
```bash
198+
sudo systemctl restart mssql-server.service
199+
```
200200

201201
## Unattended installation
202202

@@ -260,7 +260,7 @@ There is parity between Linux and Windows for [Resource governance](../t-sql/sta
260260
|read_io_count | The total read IOs issued since the Resource Governor statistics were reset. | On Linux, this statistic is sourced from the CGroups blkio subsystem, where value on the read row is blkio.throttle.io_serviced |
261261
|total_cpu_kernel_ms | The cumulative CPU user kernel time in milliseconds since the Resource Governor statistics were reset. | On Linux, this statistic is sourced from the CGroups cpuacct subsystem, where the value on the user row is cpuacct.stat |
262262
|total_cpu_user_ms | The cumulative CPU user time in milliseconds since the Resource Governor statistics were reset.| On Linux, this statistic is sourced from the CGroups cpuacct subsystem, where the value on the system row value is cpuacct.stat |
263-
|active_processes_count | The number of external processes running at the moment of the request.| On Linux, this statistic is sourced from the GGroups pids subsystem, where the value is pids.current |
263+
|active_processes_count | The number of external processes running at the moment of the request.| On Linux, this statistic is sourced from the CGroups pids subsystem, where the value is pids.current |
264264

265265
## Next steps
266266

0 commit comments

Comments
 (0)