search for: master_password

Displaying 8 results from an estimated 8 matches for "master_password".

2012 Dec 20
1
Director and forwarding LDAP user as Master user
...assword and send the user to back-end Dovecot server after the authentication. According to Wiki it is only possible if we use the master user to communicate to the back-end server. On the back-end Dovecot server it is working fine, I can log in as normal user/user_password or as user*masteruser/master_password. The back-end config is: auth_master_user_separator = * passdb { driver = passwd-file args = /usr/local/dovecot/etc/dovecot/passwd.masterusers master = yes pass = yes } passdb { driver = ldap args = /usr/local/dovecot/etc/dovecot/dovecot-ldap.conf.ext } userdb { driver = ldap arg...
2009 Nov 30
1
Dovecot 1.2.x masteruser proxy problem
...bledService=mail)(enabledService=pop3)) Nov 30 14:27:28 dougie dovecot: auth(default): ldap(some_user at example.com,192.168.22.222): result: mailHost(host)=xx.xx.xx.xx Nov 30 14:27:28 dougie dovecot: auth(default): ldap(some_user at example.com,192.168.22.222): invalid credentials (given password: master_password) Nov 30 14:27:28 dougie dovecot: auth(default): client out: FAIL 1 user=some_user at example.com authz nodelay host=xx.xx.xx.xx proxynologin pass=master_password master=master_user at example.com Nov 30 14:27:28 dougie dovecot: pop3-login: Ignoring unknown passdb extra field: authz -- View this...
2015 Nov 12
1
MariaDB 10.X Master-Slave Replication
...like them and it refuses to start. Does anybody know if those directives have been removed on that version? Setting up them with the following mysql commands inside works. mysql> slave stop; mysql> CHANGE MASTER TO MASTER_HOST='*192.168.122.2*', MASTER_USER='*slave_user*', MASTER_PASSWORD='*qwerty*', MASTER_LOG_FILE='*mysql-bin.000003*', MASTER_LOG_POS=*11128001*; mysql> slave start; mysql> show slave status\G; Cheers, Roberto Nebot -- It's a dangerous business, Frodo, going out your door. You step onto the road, and if you don't keep your feet, ther...
2015 Mar 12
3
mysql replication - problems
...EPLICATION SLAVE ON *.* TO 'jf_slave'@'ops.somewhere.com' IDENTIFIED BY 'secret' REQUIRE SSL; Then back on the slave I used this command to connect the slave to the master: mysql> CHANGE MASTER TO MASTER_HOST='web2.somewhere.com', MASTER_USER='jf_slave', MASTER_PASSWORD='secret', MASTER_LOG_FILE='mysql-bin.000002', MASTER_LOG_POS=34697, MASTER_SSL=1, MASTER_SSL_CA = '/etc/pki/CA/certs/ca.crt', MASTER_SSL_CERT = '/etc/pki/tls/certs/mysql.crt', MASTER_SSL_KEY = '/etc/pki/tls/private/mysql.key'; And when I start up the slave I...
2015 Mar 12
0
mysql replication - problems
...ve'@'ops.somewhere.com' > IDENTIFIED > BY 'secret' REQUIRE SSL; > > Then back on the slave I used this command to connect the slave to the > master: > > mysql> CHANGE MASTER TO MASTER_HOST='web2.somewhere.com', > MASTER_USER='jf_slave', MASTER_PASSWORD='secret', > MASTER_LOG_FILE='mysql-bin.000002', MASTER_LOG_POS=34697, MASTER_SSL=1, > MASTER_SSL_CA = '/etc/pki/CA/certs/ca.crt', MASTER_SSL_CERT = > '/etc/pki/tls/certs/mysql.crt', MASTER_SSL_KEY = > '/etc/pki/tls/private/mysql.key'; > > An...
2013 Mar 03
1
Exposing masteruser info to cllients via lmtp-proxy connections
Hello, Please somebody suggest me how to remove the "*masteruser" appendix from the dovecot director database while using masteruser authentication. My situation is: - all users get authenticated in LDAP on the dovecot-director frontend - then they are forwarded to dovecot backend as username*masteruser ( this is a way how to proxy users with encrypted passwords). To enable it a added
2004 Aug 06
0
[PATCH] IceCast2 - socket-based default mount
...(i=0; i < MAX_LISTEN_SOCKETS; i++) { if (c->listeners[i].bind_address) xmlFree(c->listeners[i].bind_address); + if (c->listeners[i].default_mount) xmlFree(c->listeners[i].default_mount); } if (c->master_server) xmlFree(c->master_server); if (c->master_password) xmlFree(c->master_password); @@ -266,6 +267,7 @@ configuration->port = 0; configuration->listeners[0].port = 0; configuration->listeners[0].bind_address = NULL; + configuration->listeners[0].default_mount = NULL; configuration->master_server = NULL; co...
2015 Mar 12
3
mysql replication - problems
...> IDENTIFIED > > BY 'secret' REQUIRE SSL; > > > > Then back on the slave I used this command to connect the slave to the > > master: > > > > mysql> CHANGE MASTER TO MASTER_HOST='web2.somewhere.com', > > MASTER_USER='jf_slave', MASTER_PASSWORD='secret', > > MASTER_LOG_FILE='mysql-bin.000002', MASTER_LOG_POS=34697, MASTER_SSL=1, > > MASTER_SSL_CA = '/etc/pki/CA/certs/ca.crt', MASTER_SSL_CERT = > > '/etc/pki/tls/certs/mysql.crt', MASTER_SSL_KEY = > > '/etc/pki/tls/private/mysql.ke...