search for: master_host

Displaying 5 results from an estimated 5 matches for "master_host".

2012 Sep 05
6
Weird variable dependency issue + different behavior between master/masterless
...claring dependencies. However I''ve always been able to set variables in classes, and expect them to be used properly in templates that I declare in a File statement in the same class. It looks like I came across a problem with this yesterday : My class contains : $master_port = 6379 $master_host = $hostname ? { /(stage|live)-xx([a-d])-redis1/ => "$1-yy$2-redis1", default => false, } file { "/etc/redis/redis.conf": ensure => file, owner => "root", group => "root", mode...
2015 Mar 12
3
mysql replication - problems
...d this grant on the master to try and setup the replication user: GRANT REPLICATION 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_KE...
2015 Mar 12
0
mysql replication - problems
...p the replication user: > > GRANT REPLICATION 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...
2015 Nov 12
1
MariaDB 10.X Master-Slave Replication
...master-connect-retry = 60 ... But is seems that the daemon doesn't 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 o...
2015 Mar 12
3
mysql replication - problems
...RANT REPLICATION 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...