Archivo del Autor: carlosap

Dieta de las Zonas

Sección Dietas Con este programa nutricional, tu cuerpo transforma la grasa almacenada en energía diaria, ayudándote a mantenerte delgada

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… Leer más »

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… Leer más »

DVI TO HDMI

http://articulo.mercadolibre.com.mx/MLM-27488832-adaptador-dvi-a-hdmi-convertidor-dvi-d-lcd-hdtv-plasma-tv-_JM

Perform Authoritative Restore of Entire Directory

This step restores the entire Active Directory, and marks it as authoritative for the enterprise.Requirements •    Credentials: local Administrator •    Tool: Ntdsutil.exeTo perform authoritative restore of the entire directory 1.    Open a command prompt and type ntdsutil and then press ENTER. 2.    At the ntdsutil: prompt, type authoritative restore and then press ENTER. 3.    At… Leer más »

Converting Watts to Amps, Apps to Watts

Converting Watts to Amps The conversion of Watts to Amps is governed by the equation Amps = Watts/Volts For example 12 watts/12 volts = 1 amp Converting Amps to Watts The conversion of Amps to Watts is governed by the equation Watts = Amps x Volts For example 1 amp * 110 volts = 110… Leer más »