| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 | [role="xpack"][[bootstrap-checks-xpack]]== Bootstrap Checks for {xpack}In addition to the <<bootstrap-checks,{es} bootstrap checks>>, there arechecks that are specific to {xpack} features.[discrete]=== Encrypt sensitive data check//See EncryptSensitiveDAtaBootstrapCheck.javaIf you use {watcher} and have chosen to encrypt sensitive data (by setting`xpack.watcher.encrypt_sensitive_data` to `true`), you must also place a key inthe secure settings store.To pass this bootstrap check, you must set the `xpack.watcher.encryption_key`on each node in the cluster. For more information, see<<encrypting-data,Encrypting sensitive data in Watcher>>.[discrete]=== PKI realm check//See PkiRealmBootstrapCheckTests.javaIf you use {es} {security-features} and a Public Key Infrastructure (PKI) realm,you must configure Transport Layer Security (TLS) on your cluster and enableclient authentication on the network layers (either transport or http). For moreinformation, see <<pki-realm,PKI user authentication>> and<<security-basic-setup-https,Set up basic security plus HTTPS>>.To pass this bootstrap check, if a PKI realm is enabled, you must configure TLSand enable client authentication on at least one network communication layer.[discrete]=== Role mappings checkIf you authenticate users with realms other than `native` or `file` realms, youmust create role mappings. These role mappings define which roles are assignedto each user.If you use files to manage the role mappings, you must configure a YAML fileand copy it to each node in the cluster. By default, role mappings are stored in`ES_PATH_CONF/role_mapping.yml`. Alternatively, you can specify adifferent role mapping file for each type of realm and specify its location inthe `elasticsearch.yml` file. For more information, see<<mapping-roles-file>>.To pass this bootstrap check, the role mapping files must exist and must bevalid. The Distinguished Names (DNs) that are listed in the role mappings filesmust also be valid.[discrete][[bootstrap-checks-tls]]=== SSL/TLS check//See TLSLicenseBootstrapCheck.javaIf you enable {es} {security-features}, unless you have a trial license, youmust configure SSL/TLS for internode-communication.NOTE: Single-node clusters that use a loopback interface do not have thisrequirement. For more information, see<<configuring-stack-security>>.To pass this bootstrap check, you must<<encrypt-internode-communication,set up SSL/TLS in your cluster>>.[discrete]=== Token SSL check//See TokenSSLBootstrapCheckTests.javaIf you use {es} {security-features} and the built-in token service is enabled,you must configure your cluster to use SSL/TLS for the HTTP interface. HTTPS isrequired in order to use the token service.In particular, if `xpack.security.authc.token.enabled` isset to `true` in the `elasticsearch.yml` file, you must also set`xpack.security.http.ssl.enabled` to `true`. For more information about thesesettings, see <<security-settings>> and <<http-settings>>.To pass this bootstrap check, you must enable HTTPS or disable the built-intoken service.
 |