-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PS-9629 [DOCS] - Review Simple LDAP documentation variables 8.0
modified: docs/ldap-authentication.md new file: docs/ldap-simple-variables.md
- Loading branch information
1 parent
0d7e07d
commit 04eb3f3
Showing
3 changed files
with
114 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
# Simple LDAP system variables | ||
|
||
The following variables are static. These variables can only be modified by restarting the server with a new value set in the configuration file (for example, my.cnf or my.ini) or passed as a command-line option when starting the server. | ||
|
||
| **Name** | **Command Line** | **Dynamic** | **Scope** | | ||
|--------------------------------------------|------------------|-------------|-----------| | ||
| `authentication_ldap_simple_bind_root_dn` | Yes | No | Global | | ||
| `authentication_ldap_simple_bind_root_pwd` | Yes | No | Global | | ||
| `authentication_ldap_simple_ca_path` | Yes | No | Global | | ||
| `authentication_ldap_simple_server_host` | Yes | No | Global | | ||
| `authentication_ldap_simple_server_port` | Yes | No | Global | | ||
| `authentication_ldap_simple_ssl` | Yes | No | Global | | ||
| `authentication_ldap_simple_tls` | Yes | No | Global | | ||
|
||
### `authentication_ldap_simple_bind_root_dn` | ||
|
||
| **Option** | **Description** | | ||
|---------------------|-------------------------------------------------| | ||
| Command-line | `--authentication-ldap-simple-bind-root-dn=value` | | ||
| Scope | Global | | ||
| Dynamic | No | | ||
| Data type | String | | ||
| Default | Null | | ||
|
||
The `root` credential used to authenticate against an LDAP. This variable is used with `authentication_ldap_simple_bind_root_pwd`. | ||
|
||
--- | ||
|
||
### `authentication_ldap_simple_bind_root_pwd` | ||
|
||
| **Option** | **Description** | | ||
|---------------------|-------------------------------------------------| | ||
| Command-line | `--authentication-ldap-simple-bind-root-pwd=value` | | ||
| Scope | Global | | ||
| Dynamic | No | | ||
| Data type | String | | ||
| Default | Null | | ||
|
||
The `root` password used to authenticate against an LDAP. This variable is used with `authentication_ldap_simple_bind_root_dn`. | ||
|
||
--- | ||
|
||
### `authentication_ldap_simple_ca_path` | ||
|
||
| **Option** | **Description** | | ||
|---------------------|-------------------------------------------------| | ||
| Command-line | `--authentication-ldap-simple-ca_path=value` | | ||
| Scope | Global | | ||
| Dynamic | No | | ||
| Data type | String | | ||
| Default | Null | | ||
|
||
The certificate authority's absolute path used to verify the LDAP certificate. | ||
|
||
--- | ||
|
||
### `authentication_ldap_simple_server_host` | ||
|
||
| **Option** | **Description** | | ||
|---------------------|-------------------------------------------------| | ||
| Command-line | `--authentication-ldap-simple-server-host=value` | | ||
| Scope | Global | | ||
| Dynamic | No | | ||
| Data type | String | | ||
| Default | Null | | ||
|
||
The LDAP server host used for LDAP authentication. | ||
|
||
--- | ||
|
||
### `authentication_ldap_simple_server_port` | ||
|
||
| **Option** | **Description** | | ||
|---------------------|-------------------------------------------------| | ||
| Command-line | `--authentication-ldap-simple-server-port=value` | | ||
| Scope | Global | | ||
| Dynamic | No | | ||
| Data type | String | | ||
| Default | Null | | ||
|
||
The LDAP server TCP/IP port number used for LDAP authentication. | ||
|
||
--- | ||
|
||
### `authentication_ldap_simple_ssl` | ||
|
||
| **Option** | **Description** | | ||
|---------------------|-------------------------------------------------| | ||
| Command-line | `--authentication-ldap-simple-ssl=value` | | ||
| Scope | Global | | ||
| Dynamic | No | | ||
| Data type | String | | ||
| Default | Null | | ||
|
||
If this variable is enabled, the plugin connects to the server with SSL. | ||
|
||
--- | ||
|
||
### `authentication_ldap_simple_tls` | ||
|
||
| **Option** | **Description** | | ||
|---------------------|-------------------------------------------------| | ||
| Command-line | `--authentication-ldap-simple-tls=value` | | ||
| Scope | Global | | ||
| Dynamic | No | | ||
| Data type | String | | ||
| Default | Null | | ||
|
||
If this variable is enabled, the plugin connects to the server with TLS. | ||
|
||
--- | ||
|
||
For more details, see the [LDAP Authentication documentation](ldap-authentication.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters