Skip to content

Commit b81315c

Browse files
authored
Updated install instructions
1 parent 2734a11 commit b81315c

1 file changed

Lines changed: 12 additions & 6 deletions

File tree

docs/linux/sql-server-linux-setup-sql-agent.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ ms.assetid: 77f16adc-e6cb-4a57-82f3-7b9780369868
2929
The following steps install SQL Server Agent (**mssql-server-agent**) on Linux. The [SQL Server Agent](https://docs.microsoft.com/sql/ssms/agent/sql-server-agent) runs scheduled SQL Server jobs. For information on the features supported for this release of the SQL Server Agent, see the [Release Notes](sql-server-linux-release-notes.md).
3030

3131
> [!NOTE]
32-
> Before installing SQL Server Agent, first [install SQL Server](sql-server-linux-setup.md#platforms). This configures the keys and repositories that you use when you install the **mssql-server-agent** package.
32+
> Before installing SQL Server Agent, first [install SQL Server CTP 1.4+](sql-server-linux-setup.md#platforms). This configures the keys and repositories that you use when you install the **mssql-server-agent** package.
3333
3434
Install the SQL Server Agent for your platform:
3535

@@ -42,15 +42,17 @@ Install the SQL Server Agent for your platform:
4242
Use the following steps to install the **mssql-server-agent** on Red Hat Enterprise Linux.
4343

4444
```bash
45-
sudo yum update
4645
sudo yum install mssql-server-agent
46+
sudo systemctl restart mssql-server
4747
```
4848

4949
If you already have **mssql-server-agent** installed, you can update to the latest version with the following commands:
5050

5151
```bash
5252
sudo yum check-update
5353
sudo yum update mssql-server-agent
54+
sudo systemctl restart mssql-server
55+
5456
```
5557

5658
## <a name="ubuntu">Install on Ubuntu</a>
@@ -60,31 +62,35 @@ Use the following steps to install the **mssql-server-agent** on Ubuntu.
6062
```bash
6163
sudo apt-get update
6264
sudo apt-get install mssql-server-agent
65+
sudo systemctl restart mssql-server
6366
```
6467

6568
If you already have **mssql-server-agent** installed, you can update to the latest version with the following commands:
6669

6770
```bash
6871
sudo apt-get update
69-
sudo apt-get install mssql-server-agent
72+
sudo apt-get install mssql-server-agent
73+
sudo systemctl restart mssql-server
7074
```
7175

7276
## <a name="SLES">Install on SLES</a>
7377

7478
Use the following steps to install the **mssql-server-agent** on SUSE Linux Enterprise Server.
7579

76-
Install **mssql-server-agent** with the unixODBC developer package.
80+
Install **mssql-server-agent**
7781

7882
```bash
79-
sudo zypper install mssql-server-agent unixODBC-devel
83+
sudo zypper install mssql-server-agent
84+
sudo systemctl restart mssql-server
8085
```
8186

8287
If you already have **mssql-server-agent** installed, you can update to the latest version with the following commands:
8388

8489
```bash
8590
sudo zypper refresh
8691
sudo zypper update mssql-server-agent
92+
sudo systemctl restart mssql-server
8793
```
8894

8995
## Next steps
90-
For more information on how to use SQL Server Agent to create, schedule, and run jobs, see [Run a SQL Server Agent job on Linux](sql-server-linux-run-sql-server-agent-job.md).
96+
For more information on how to use SQL Server Agent to create, schedule, and run jobs, see [Run a SQL Server Agent job on Linux](sql-server-linux-run-sql-server-agent-job.md).

0 commit comments

Comments
 (0)