These are a Rundeck Node Executor plugin and a Rundeck File Copier plugin that uses WinRM to connect to Windows and execute commands. It uses the OverThere Library to provide the WinRM implementation, and uses Basic authentication over HTTPS.
Compatible with Rundeck 2.3.x+
Download from the releases page.
Copy the rundeck-winrm-plugin-1.3.jar
to the libext/
directory for Rundeck.
Be sure to follow the directions in the OverThere library for Setting up a Windows host for Winrm Internal.
If using Kerberos for authentication, also follow these guides:
This plugin provides a NodeExecutor and a FileCopier called overthere-winrm
, which you can set as on your node definition:
<node name="winNode" node-executor="overthere-winrm" .../>
and/or
<node name="winNode" file-copier="overthere-winrm" .../>
Or set as the default NodeExecutor for your project/framework properties file, with service.NodeExecutor.default.provider=overthere-winrm
and service.FileCopier.default.provider=overthere-winrm
.
These Node attributes are used to connect to the remote host:
username
- Remote username. If using Kerberos, see Using Kerberos Authenticationhostname
- Remote host. Can include "host:port" to specify port number other than the default 5985/5986 (http/https).
Password authentication can be performed in one of two ways:
- Create a Rundeck Job with a Secure Authentication Option, to pass in the password to use. The default name of this option should be "winrmPassword", but you can change the name that is expected, if necessary.
- Use the Rundeck Key Storage Facility to store a password, and use the path to it as the
winrm-password-storage-path
These additional configuration attributes can be set on the Node, or in the project.properties or framework.properties. To add them to project.properties, prefix them with "project." and for framework.properties prefix them with "framework.":
winrm-connection-timeout
- timeout in milliseconds for connection. (default 15000)winrm-timeout
- WinRM protocol Timeout, in XML Schema Duration format. (Default:PT60.000S
) see: http://www.w3.org/TR/xmlschema-2/#isoformatswinrm-port
- port number to use, if not set in thehostname
of the Node. (Default: 5985/5986 for http/https)winrm-user
- Username, if not set in theusername
of the Nodewinrm-protocol
- Determine HTTP(S) protocol to use, either "http" or "https". Default: "https"winrm-auth-type
- Type of authentication to use, "basic" or "kerberos", default: "kerberos". If the username contains '@domain', then kerberos will be selected.winrm-locale
- Locale to use, default: "en-us".winrm-password-option
- Specifies a Secure Authentication Option from a Job to use as the authentication password. (format: "NAME" ).- default-value: "winrmPassword", so simply define a Secure Authentication Option on your Job with the name "winrmPassword".
winrm-password-storage-path
- Specifies a Key Storage Path to look up the authentication password from. It can contain property references like${node.name}
to evaluate at runtime. If specified, it will be used instead of thewinrm-password-option
.
For file copier plugin:
file-copy-destination-dir
- Folder location where the remote script to be executed will be copied
Kerberos authentication can be used.
Configure these node properties, or set "framework.X" or "project.X" in your framework.properties or project.properties.
winrm-cert-trust
- (HTTPS only) certificate trust strategy, "all" (trust all certificates), "self-signed" (trust self-signed in addition to verified), or "default" (trust only verified certificates). Default: "default".winrm-hostname-trust
- (HTTPS only) hostname trust strategy, "all", "strict" or "browser-compatible". Default: "browser-compatible".winrm-kerberos-debug
- true/false, if true, enable debug output for Kerberos authentication. Default: false.winrm-spn-add-port
- true/false, if true, add the port to the SPN used for authentication. Default: false.winrm-spn-use-http
- true/false, if true, use 'HTTP' instead of 'WSMAN' as the protocol for the SPN used for authentication. Default: false.winrm-domain
- Kerberos domain to use if not set via the username.winrm-is-domain-member
- Option to truncate hostname when used as domain for kerberos login. If set to "true", replaces "host.domain.tld" with "domain.tld" appending to username.
The username used for Kerberos authentication is created in this way:
- if
username
value looks likeuser@domain
useusername@DOMAIN
(uppercase domain name) - if username does not contain
@
then:- if
winrm-domain
is set, useusername@DOMAIN
(uppercase winrm-domain) - if
winrm-is-domain-member
is "true", then convert hostname of "host.domain.tld" to "domain.tld" and useusername@DOMAIN.TLD
- otherwise use
username@HOSTNAME
(uppercase hostname)
- if
Kerberos authentication requires you to set up some Java System Properties, or a kb5.conf file to define which domains map to which Domain Controllers. You can follow the Kerberos Requirements for Java. To simply use a single domain and KDC, set these Java System Props at startup of the Rundeck server:
-Djava.security.krb5.realm=<example.com> -Djava.security.krb5.kdc=<kdc.example.com>.
Replace the values with the name of your domain/realm and the hostname of your domain controller.
If you do not do follow the Configure Kerberos section this you will see this error:
failed: WinRM Error: javax.security.auth.login.LoginException: Could not load configuration from SCDynamicStore
If your KDC is not reachable you will see this error:
failed: WinRM Error: javax.security.auth.login.LoginException: Receive timed out
If your password is incorrect you will see this error:
failed: WinRM Error: javax.security.auth.login.LoginException: Pre-authentication information was invalid (24)
If your username is not found you will see this error:
failed: WinRM Error: javax.security.auth.login.LoginException: Client not found in Kerberos database (6)
If the system clock differs too much between the nodes you will see this error:
failed: WinRM Error: javax.security.auth.login.LoginException: Clock skew too great (37)
If you receive Kerberos authentication error Server not found in Kerberos database
then you need to define a
"Service Principal Name" for the auth service on the Windows node:
-
Run this command:
setspn -a WSMAN/hostname.domain.com hostname
If your SPN uses a protocol of 'HTTP', or includes the port in the SPN (such as HTTP/hostname.domain.com:5985
), see
the winrm-spn-add-port
and winrm-spn-use-http
configuration options above.
This is a seperate topic, but you can follow the guide described in the OverThere project for WINRM Host Setup, see Step 10.
Here are also some notes on the wiki: Windows Server Setup
Note: This plugin will work against Rundeck 1.5.x or later.
Build with gradle or maven 2.
Gradle build, result is build/libs/rundeck-winrm-plugin-1.1.jar
.
gradle clean build
Maven build, result is target/rundeck-winrm-plugin-1.1.jar
mvn clean package