Archive for category Programación
How to Setup MySQL Replication
This tutorial will go through the setup of MySQL database replication. I will also talk about how to get everything working smoothly again after a server crash, or if you wish to switch databases. I will try to explain what is going on behind the scenes for every step (something I’ve found missing from other tutorials). This is written specifically for MySQL 5.0 on Centos 4, but should be very similar on other Linux distributions. It should also work this way with MySQL 4.x.
The theory
We have 2 servers, one of which is a Master and the other which is a Slave. We tell the Master that it should keep a log of every action performed on it. We tell the slave server that it should look at this log on the Master and whenever something new happens, it should do the same thing.
You should follow the instructions below with two console windows open – one for the Master and one for the Slave. Also note that I will capitalise the first letters of Master and Slave to indicate I am talking about the servers.
Configuring the Master
First of all, we need to create a user on the Master server that the Slave will connect as. I call mine ’slave_user’. Log into mysql as root and create the user:
mysql -u root -p (log into MySQL)
FLUSH PRIVILEGES;
Now, we should edit the my.cnf file (usually in /etc/my.cnf), in the [mysqld] section and tell MySQL that it’s going to be a Master:
binlog-do-db=my_database
server-id=1
The first line tells MySQL to start writing a log, and tells it where to write the log. Make sure this directory is empty of all replication logs, especially if you’re starting again after replication has already been used.
The second line chooses the database to write the log for. You should change this to your database. The third line gives the server an ID (to distinguish it from the Slave).
You should also make sure skip-networking has not been enabled.
You should now restart the Master:
(MySQL restart commands may vary)
Configuring the Slave
Again, we should change the /etc/my.cnf of the Slave server, in the [mysqld] section:
master-host=128.0.0.1
master-connect-retry=60
master-user=slave_user
master-password=slave_password
replicate-do-db=my_databaserelay-log = /var/lib/mysql/slave-relay.log
relay-log-index = /var/lib/mysql/slave-relay-log.index
Line 1 gives the Slave its unique ID. Line 2, tells the Slave the I.P address of the Master server – so you need to change the I.P here.
The remaining lines set a retry limit, and tell the Slave the user, password and database it needs to replicate. We also tell the slave what to use as its relay log. It’s best to set this directly, or MySQL will create the name from the hostname and should you change hostname, replication will fail.
You should also make sure skip-networking has not been enabled.
You should now restart the Slave:
Getting the data onto the Slave
On the Master…
I’m assuming you have a live Master server, and an as yet empty Slave server. This stage depends on whether data is constantly being added to the Master. If so, we will have to prevent all database access on the Master so nothing can be added. This means your server will hang during the next step. If no data is being added to the server, you can skip this step. On the Master server, log into MySQL and do the following:
mysql -u root -p (log into MySQL)
Now we will use mysqldump to get the data out. So, still on the Master server:
gzip /home/my_home_dir/database.sql;
Make sure you change my_database to your database name, and my_home_dir to the name of your home directory (or another directory of your choosing). You wll now have a file called database.sql.gz in your home directory. This is a gziped copy of your database.
On the Slave…
Now we need to copy over the gzipped file. On the Slave run the following:
Make sure 128.0.0.1 is the I.P of the Master. This will copy the file from the Master and put it in your home directory on the Slave. Now we just need to import into MySQL:
mysql -u root -p (log into MySQL)
mysql -u root -p my_database </home/my_home_dir/database.sql
Ready to rumble…
On the Master…
Now we’re ready to kick things off. We need to find the position the Master is at in the logs. So, log into MySQL and run the following:
mysql -u root -p (log into MySQL)
This should give you an output along these lines:
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+———————+———-+——————————-+——————+
| mysql-bin.000001 | 21197930 | my_database,my_database | |
+———————+———-+——————————-+——————+
Keep that on-screen.
On the Slave…
Log into MySQL and do the following:
mysql -u root -p (log into MySQL)
CHANGE MASTER TO MASTER_HOST=‘128.0.0.1′, MASTER_USER=’slave_user’, MASTER_PASSWORD=’slave_password’, MASTER_LOG_FILE=‘mysql-bin.000001′, MASTER_LOG_POS=21197930;
slave start;
First we stop the Slave. Then we tell it exactly where to look in the Master log file. We use the values for our previous SHOW MASTER STATUS; command on the Master. You should change 128.0.0.1 to the I.P of the Master, and change the user and password accordingly.
The Slave will now be waiting. So all that’s left is to…
Back on the Master…
We shoud already be logged into MySQL, so all you have to do is:
To release the tables from lock. Note you only have to do this if you previously ran FLUSH TABLES WITH READ LOCK;
And the recovery part?
Several times it’s happened to me that a server has crashed, or a hostname changed or whatever, and I’ve had a real trouble getting replication to work again. The solution has been to clear out the logs.
On the Slave
Clear out any replication logs from /var/lib/mysql or whever the logs are being stored, as stated in my.cnf. This usually does the trick:
rm master.info
On the Master
Again, get rid of the logs, as per where they are stored in my.cnf. For me it’s the following:
rm -f *
This should give you a fresh start on things. You can now start again from the beginning…
Final Notes
My database doesn’t use InnoDB tables – it’s all MyISAM. However, the MySQL manual recommends adding this to my.cnf for InnoDB databases:
sync_binlog=1
See here for more info: http://dev.mysql.com/doc/refman/5.1/en/replication-howto-masterbaseconfig.html
References
Thanks to the following for their help:
http://dev.mysql.com/doc/refman/5.1/en/replication-howto.html
http://www.howtoforge.com/mysql_database_replication
http://www.gra2.com/article.php/setting-up-database-replication-on-mysql
Replication MySQL multiple DBs
=============================
MASTER: add lines to my.cnf
=============================
binlog-do-db=database_name_1
binlog-do-db=database_name_2
binlog-do-db=database_name_3
=============================
MASTER: SQL SYNTAX
=============================
GRANT REPLICATION SLAVE ON *.* TO 'user'@'%' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
FLUSH TABLES WITH READ LOCK;
UNLOCK TABLES;
SHOW MASTER STATUS;
output> file | Position | Binlog_Do_DB
mysql-bin.000963 1570 database_name_1,database_name_2,database_name_3
=============================
SLAVE: add lines to my.cnf
=============================
replicate-do-db=database_name_1
replicate-do-db=database_name_2
replicate-do-db=database_name_3
=============================
SLAVE: SQL SYNTAX
=============================
SLAVE STOP;
CHANGE MASTER TO MASTER_HOST='192.168.0.2', MASTER_USER='user', MASTER_PASSWORD='password', MASTER_LOG_FILE='mysql-bin.000963', MASTER_LOG_POS=98;
START SLAVE;
SHOW SLAVE STATUS;
NOTE:
MASTER_LOG_FILE=’mysql-bin.000963′, MASTER_LOG_POS=98; is displayed when you run the SQL command from the master: cmd mysql#> SHOW MASTER STATUS;
ALSO:
When you run #> SHOW SLAVE STATUS;
make sure you see: Slave_IO_Running | Slave_SQL_Running
Yes Yes
Database Replication
http://www.howtoforge.com/mysql_database_replication
PHP 5 OSCOMMERCE BUG
PHP 5 Oscommerce BUG
Hello! D:\xampplite\htdocs\linux\shop\admin\includes\classes\ipload.php on line 31 i did this:
instead of this:
________________________
// self destruct
$this = null;
return false;
}
}
}
________________________
biggrin.gif i did this:
________________________
// self destruct
unset($this);
return false;
}
}
}
FORTRAN WIKI
Posted by carlosap in Programación on June 14th, 2008
http://en.wikibooks.org/wiki/Fortran
Hide intro text joomla
Hide Intro Text
we usually set the defaults in the relevant XML files for the user to make it easier when they are adding and editing new content. Like you, we often find we’re wanting Hide intro text on by default. So, instead of setting it globally we edit
administrator/components/com_content/content.xml
change line 28 where it says
Search and Reemplace
update esalud_content set introtext = replace(introtext,CONVERT( _utf8 ‘%{ }%’ USING latin1 ),’ ‘)
moseasymedia
{moseasymedia media=/consulta/banner.swf height=195 width=170}
AUTO_INCREMENT
El valor inicial para AUTO_INCREMENT para la tabla. En MySQL 5.0, sólo funciona para tablas MyISAM y MEMORY. También se soporta para InnoDB desde MySQL 5.0.3. Para inicializar el primer valor de auto incremento para motores que no soporten esta opción, inserte un registro de prueba con un valor que sea uno menor al deseado tras crear la tabla, y luego borre este registro.
Para motores que soportan la opción de tabla AUTO_INCREMENT en comandos CREATE TABLE puede usar ALTER TABLE para resetear el valor tbl_name AUTO_INCREMENT = nAUTO_INCREMENT .
SELECT LAST_INSERT_ID();