Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
TetraWiki
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Master Slave on Mysql for Muthoot CRM
(section)
Page
Discussion
English
Read
Edit
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Configurations == Added in /etc/my.cnf ( Master ) server-id = 1 log-bin = mysql-bin binlog-do-db = crmmuth_db_pilotlive binlog-do-db = crmmuth_erp_pilotlive binlog-do-db = crmmuth_finance_pilotlive binlog-do-db = crmmuth_muthoothr_pilotlive on Master create replication user mysql>GRANT REPLICATION SLAVE ON *.* TO 'repl'@'%' IDENTIFIED BY 'tetra321'; mysql>FLUSH PRIVILEGES; mysql>FLUSH TABLES WITH READ LOCK; mysql>UNLOCK TABLES; Restart Mysql on master On Slave Added in /etc/my.cnf ( Slave ) server-id = 2 replicate-do-db = crmmuth_db_pilotlive replicate-do-db = crmmuth_erp_pilotlive replicate-do-db = crmmuth_finance_pilotlive replicate-do-db = crmmuth_muthoothr_pilotlive Restart Mysql on Slave At master note the details of file and posiion mysql> show master status; +------------------+----------+--------------------------------------------------------------------------------------------------+------------------+ | File | Position | Binlog_Do_DB | Binlog_Ignore_DB | +------------------+----------+--------------------------------------------------------------------------------------------------+------------------+ | mysql-bin.000001 | 106 | crmmuth_db_pilotlive,crmmuth_erp_pilotlive,crmmuth_finance_pilotlive,crmmuth_muthoothr_pilotlive | | +------------------+----------+--------------------------------------------------------------------------------------------------+------------------+ On master take the mysql dump of the mentioned databases mysqldump -u root -p --databases crmmuth_db_pilotlive crmmuth_erp_pilotlive crmmuth_finance_pilotlive crmmuth_muthoothr_pilotlive > dump_4_db_for_slave.sql On Slave , import the databases; mysql -p < dump_4_db_for_slave.sql Once Done mysql>SLAVE STOP; mysql>CHANGE MASTER TO MASTER_HOST='192.168.1.152', MASTER_USER='repl', MASTER_PASSWORD='tetra321', MASTER_LOG_FILE='mysql-bin.000001', MASTER_LOG_POS=106; mysql>START SLAVE; mysql>SHOW SLAVE STATUS\G;
Summary:
Please note that all contributions to TetraWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
TetraWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)