Refactoring: Changed remaining check parameters starting with an 's' to the new rules...
[check_mk.git] / .werks / 2472
blobc693ea30072b276f097cf085f7207d18d3ba3377
1 Title: MSSQL Agent Plugin: Can now be configured to auth as database user
2 Level: 1
3 Component: checks
4 Compatible: compat
5 Version: 1.2.7i3
6 Date: 1437485882
7 Class: feature
9 The mssql.vbs script can now be configured to authenticate as database user
10 using a configured username / password combination. Previously it was only
11 possible to authenticate using the system privileges of the user the agent
12 is running with. This is still the default.
14 If you need to authenticate as database user, you need to create a file
15 named <tt>mssql.ini</tt>, or if you need it instance specific,
16 <tt>mssql_[instance-id].ini</tt>. You need to write the following content
17 into this file:
19 F+:mssql.ini
20 [auth]
21 type = db
22 username = monitoring-user
23 password = mysecretpw
24 F-: