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
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).
30
30
31
31
> [!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.
33
33
34
34
Install the SQL Server Agent for your platform:
35
35
@@ -42,15 +42,17 @@ Install the SQL Server Agent for your platform:
42
42
Use the following steps to install the **mssql-server-agent** on Red Hat Enterprise Linux.
43
43
44
44
```bash
45
-
sudo yum update
46
45
sudo yum install mssql-server-agent
46
+
sudo systemctl restart mssql-server
47
47
```
48
48
49
49
If you already have **mssql-server-agent** installed, you can update to the latest version with the following commands:
50
50
51
51
```bash
52
52
sudo yum check-update
53
53
sudo yum update mssql-server-agent
54
+
sudo systemctl restart mssql-server
55
+
54
56
```
55
57
56
58
## <aname="ubuntu">Install on Ubuntu</a>
@@ -60,31 +62,35 @@ Use the following steps to install the **mssql-server-agent** on Ubuntu.
60
62
```bash
61
63
sudo apt-get update
62
64
sudo apt-get install mssql-server-agent
65
+
sudo systemctl restart mssql-server
63
66
```
64
67
65
68
If you already have **mssql-server-agent** installed, you can update to the latest version with the following commands:
66
69
67
70
```bash
68
71
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
70
74
```
71
75
72
76
## <aname="SLES">Install on SLES</a>
73
77
74
78
Use the following steps to install the **mssql-server-agent** on SUSE Linux Enterprise Server.
75
79
76
-
Install **mssql-server-agent**with the unixODBC developer package.
If you already have **mssql-server-agent** installed, you can update to the latest version with the following commands:
83
88
84
89
```bash
85
90
sudo zypper refresh
86
91
sudo zypper update mssql-server-agent
92
+
sudo systemctl restart mssql-server
87
93
```
88
94
89
95
## 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