Posted in
CentOS,
Data Backup,
Enterprise level solutions,
Linux Apache MySQL PHP,
Linux System,
MySQL,
MySQL backup,
MySQL cluster,
Redhat,
System admin on Jan 29th, 2008 by Sunny Walia
32 comments
Before we go into how to set up master-slave replication in MySQL, let us talk about some of the reasons I have set up master-slave replication using MySQL.
1) Offload some of the queries from one server to another and spread the load: One of the biggest advantages to have master-slave set [...]
Read the full article...
After I wrote the post: How do I dump all tables in a database into separate files? I got emails from couple people asking how to import the individual table files back in to MySQL. First way to import each sql file created by the post is to import each file individually by [...]
Read the full article...
There have been numerous occasions where I needed to make backups of individual tables from selected database. Usually I can achieve this by typing:
mysqldump database_name table1 > table1.sql
mysqldump database_name table2 > table2.sql
This could be very painful if you have 10’s or 100’s of tables. Until today, I never ran into a situation where I [...]
Read the full article...
I ran into something with mysql cluster today which boggles my mind. On http://dev.mysql.com/doc/refman/5.0/en/mysql-cluster-config-params-ndbd.html page, it is documented that if we you change datamemory parameter in the config.ini under mysql-cluster like below, you would have to restart nodes to reread the configuration.
[NDBD]
id=2
HostName=10.0.0.2 # the IP of the first data node
DataMemory=6G
IndexMemory=512M
But when I tried the: [...]
Read the full article...
I am reaching out to mysql experts out there! We just inherited a site which uses MySQL master/slave replication. We set up the master and slaves per MySQL documents and did some of our own tweaking in my.cnf to get things working. Things were great when we were testing the site but [...]
Read the full article...