Tagged Questions
0
votes
0answers
72 views
Mysql replication - mysql.yongger2 breaked my master-slave server
Last week, I had found a problem with my master-slave server. Slave can't get data from master.
I checked error log on my slave and found error like:
130112 20:22:24 [ERROR] Slave SQL: Error 'Table ...
0
votes
0answers
113 views
Mysql Master has slave relay-logs - how can I get rid of them?
The other day I noticed that a mysql master server needed to be cleaned up as binlogs were not automatically purging. While cleaning up the server I noticed that there were a number of relay-logs on ...
0
votes
0answers
133 views
How to replicate MySQL without 1062? [closed]
for a long time I am figuring out how to set up an MySQL Master and Slave replication.
I followed the instructions from MySQL itself ( http://dev.mysql.com/doc/refman/5.5/en/replication-howto.html ) ...
0
votes
0answers
37 views
MySQL: Combining Enterprise Edition (Master) with Standard/Community Edition (Slave)
does anybody know if it is possible as per oracle licensing to run a MySQL Master licensed under the Enterprise Edition in combination with slaves running the Standard or Community Edition?
I've been ...
0
votes
0answers
152 views
MySql doesn't start after changing bind-address [closed]
Actually I am working on Master to Master Replication MySQL on Windows Server 2008. My Master 1 is not able to connect with Master 2 whereas Master 2 is able to connect and it does telnet too. After ...
0
votes
1answer
152 views
SQL ERROR [mysql] Conflicting Read Lock [1223]
I've a master-slave configuration in MySQL. Now I need to create a table, so I execute
FLUSH TABLES WITH READ LOCK;
on the master database, after, I'm trying to execute "CREATE TABLE....." but it ...
1
vote
3answers
598 views
MySQL Master-Slave-Slave Configuration
Quick questions about MySQL Master-Slave-Slave set-ups:
I currently have a Master-Slave set up right now and I would like to add another slave. Would it be possible to clone the server running the ...
0
votes
0answers
328 views
localhost phpmyadmin master replication configuration
I'm trying to configure Master Replication for one database using phpmyadmin (3.3.9.2) via the "Replication" tab but I'm having a difficult time getting it to work. I added the following code in ...
0
votes
1answer
42 views
MySQL replication system
I'd use replication on a big structure. I would know if doing a INSERT on a master will wait for the data to be replicated on all the servers or will end after putting the data on the server the ...
3
votes
1answer
3k views
mysql replication - slave server on one database
I couldn't find an answer to my question.
I have 2 mysql servers.
Master server
Slave server
Now i want to add another Slave server but i have other website running on that server.
Can i ...
1
vote
2answers
935 views
Mysql : How to synchronize databases after having been offline using replication?
I created a replication between two computers (a laptop I use to add new datas in my db and a server that save everything I do on the laptop) and it works fine.
But today, my laptop was online so I ...
1
vote
1answer
241 views
MySQL Master-Slave and slave as master - slave configuration
Currently I have normal MySQL Master - Slave configured. For ex :-
Server 1 as Master and Server 2 as Slave.
Now I want Server 2 as Master (Which is already a slave for Server 1) and Server 3 as ...
0
votes
1answer
655 views
MySQL database synchronisation, multiple master single slave (backup)
We have a multiple master single slave setup. The masters must be synchronized to the slave. We are now using the following code
http://mysqlonrails.blogspot.com/2008/03/custom-replication.html
...
4
votes
3answers
2k views
Drupal 7 MySQL master/slave replication not working
I am having trouble getting Drupal 7.7 to use a MySQL slave database.
My settings.php is as follows:
$databases['default']['default'] = array(
'driver' => 'mysql',
'database' => 'my_db',
...
1
vote
1answer
57 views
Is MySQL Replication what I need?
I am building a R&D website, where I run a lot of proprietary software that I don't want to install on a webserver. My plan is to setup a master on my local machine hooked to a standard broadband ...
0
votes
0answers
149 views
Mysql master slave.. slave not updating connections good logs maching?
THis is when i do show slave status... i still dont see the replication being done... is being up for 2 days now and nothing.... i have reset many times the connection... could it be one mysql is ...
4
votes
1answer
553 views
MySQL Replication Simple Master/Slave Replication
I have simple Master/Slave configuration. I have 8GB of RAM on both my production boxes.
I was using Master for Writes only and slave for Reads only. But over the weekend I ran one job which was to ...
7
votes
3answers
2k views
MySQL in star topology
I have one central database with all the data in MySQL 5.1-lastest-stable.
I want to hook up multiple clients in a master-master relationship.
Question
How do I setup a star topology with 1 central ...
2
votes
1answer
851 views
Mysql - Select value from 'Show master status' query
hi
How can i select just the position value from the 'SHOW MASTER STATUS' query
exp something like
select position from (show master status);
thanks for your time and help
5
votes
2answers
4k views
Error: “could not initailize master info structure” while doing Master Slave Replication in MySQL
I am trying to do Master Slave Replication for MySQL. When i am typing the following command:
CHANGE MASTER TO MASTER_HOST='10.1.100.1', MASTER_USER='slave_user', MASTER_PASSWORD='slave_password', ...
2
votes
1answer
310 views
master-slave design problem
By design,all read should be from slave,and update on master,
but consider the following situation:
there is a column water_mark in table_a,
and I need to read from table_b whose column time_mark ...