Hot answers tagged wamp
3
The differences have to do with the expected capacity mysqld is requested to handle
my_huge.ini
does not have max_connections set
has innodb settings commented out
values preset
sort_buffer_size = 2M
read_buffer_size = 2M
read_rnd_buffer_size = 8M
myisam_sort_buffer_size = 64M
my-innodb-heavy-4G.ini
has max_connections set at 100
has innodb settings ...
2
In your Error Log :
[ERROR] Slave I/O: error connecting to master 'master@192.168.1.100:3306' - retry-time: 60 retries: 86400, Error_code: 2003
Error_code: 2003 : The error (2003) Can't connect to MySQL server on 'server' (10061) indicates that the network connection has been refused. You should check that there is a MySQL server running, that it has ...
1
I have a suggestion
On the Slave run the following:
STOP SLAVE;
CHANGE MASTER TO
MASTER_LOG_FILE='mysql-bin.000001',
MASTER_LOG_POS=95849;
START SLAVE;
SELECT SLEEP(15);
SHOW SLAVE STATUS\G
This will reset all relay logs and attempt to connect from the log file and position from the error message. If you get Slave_IO_Running: Connecting, there are two ...
1
Here is the only thing I can advise for now:
Open a DOS Window and run the following
C:\> dir mysql.user /s
If you see two mysql.user files, then you may have two DB setups.
You would just have to point datadir in my.cnf back to the old setup.
Please find out and let me know ...
1
You forgot one thing
binlog-do-db=our_database
binlog-ignore-db=mysql
binlog-ignore-db=test
replicate-do-db=our_database
log-slave-updates
The option log-slave-updates takes SQL that was read from relay logs and records them in the Slave Binary Logs when the SQL is completed.
Please be very careful. You should never use binlog-do-db and ...
1
Whether you have Server configured with WAMP or as a Dedicated DB, the concepts for setting up multimaster replication is identical.
Before I go on, let me clarify the phrase multimaster replication.
True multimaster replication would have a Slave with Multiple Masters. It is not possible at present. MySQL 5.6 is approaching this. I think MariaDB as well. ...
Only top voted, non community-wiki answers of a minimum length are eligible