MySQL Forums
Forum List  »  Security

Re: LDAP USER AUNTHENTICATION IN MYSQL
Posted by: Bartosz Rumiak
Date: November 26, 2014 06:08AM

Hi,

we use
http://www.percona.com/doc/percona-pam-for-mysql/installation.html
and authentication working very well.

CREATE USER ''@'' IDENTIFIED WITH auth_pam AS 'mysql, DOMAIN\\group';

2.
CREATE USER 'proftpd'@'localhost' IDENTIFIED BY 'proftpd';
GRANT ALL PRIVILEGES ON proftpd.* TO 'proftpd'@'localhost';

CREATE USER 'glpi'@'localhost' IDENTIFIED BY 'glpi';
GRANT ALL PRIVILEGES ON glpi.* TO 'glpi'@'localhost';

3.
GRANT PROXY ON 'proftpd'@'localhost' TO ''@'';
GRANT PROXY ON 'glpi'@'localhost' TO ''@'';


We now try use: http://dev.mysql.com/doc/refman/5.5/en/pam-authentication-plugin.html#pam-authentication-ldap-without-proxy
6.3.7.3.2.3 Unix Password Authentication with Proxy Users and Group Mapping

Bartek

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: LDAP USER AUNTHENTICATION IN MYSQL
1497
November 26, 2014 06:08AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.