slackbuilds_ponce/system/mariadb-plugin-saslauthd
Andreas Voegele 18042e8701
system/mariadb-plugin-saslauthd: Updated for version 1.5.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
2018-08-11 07:23:06 +07:00
..
auth_saslauthd.cnf.new
doinst.sh
mariadb-plugin-saslauthd.info system/mariadb-plugin-saslauthd: Updated for version 1.5. 2018-08-11 07:23:06 +07:00
mariadb-plugin-saslauthd.SlackBuild system/mariadb-plugin-saslauthd: Updated for version 1.5. 2018-08-11 07:23:06 +07:00
README system/mariadb-plugin-saslauthd: Updated for version 1.2. 2017-09-02 10:19:47 +01:00
slack-desc

This MariaDB plugin authenticates database users against the system
password file /etc/shadow or other authentication mechanisms supported
by saslauthd.

Enable the saslauthd daemon with:

  chmod +x /etc/rc.d/rc.saslauthd
  /etc/rc.d/rc.saslauthd start

Restart MariaDB after package installation to enable the plugin.

To create a database user which uses saslauthd, use

  CREATE USER username@hostname IDENTIFIED WITH saslauthd;

Optionally, a different system user as well as a realm can be specified.
Example:

  CREATE USER 'jekyll' IDENTIFIED WITH saslauthd AS 'hyde@EXAMPLE.COM';

saslauthd needs clear text passwords. Secure non-local connections
between your database clients and the server with TLS. See the MariaDB
documentation for more information.