MySQL Databases - strona 40

note /search

Setting the Replication Slave Configuration-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 595

Setting the Replication Slave Configuration On a replication slave, you must establish a unique server ID. If this has not already been done, this part of slave setup requires a server restart. If the slave server ID is not already set, or the c...

Setting Up MySQL on an EC2 AMI-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 350

Setting Up MySQL on an EC2 AMI There are many different ways of setting up an EC2 AMI with MySQL, including using any of the preconfigured AMIs supplied by Amazon. The default Getting Started AMI provided by Amazon uses Fedora Core 4, and you can...

Setting Up MySQL Proxy as a Windows Service-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 343

Setting Up MySQL Proxy as a Windows Service The MySQL distribution on Windows includes the mysql-proxy-svc.exe command that enables a MySQL Proxy instance to be managed by the Windows service control manager. You can control the service, including automatically starting and stopping it during boo...

Setting Up Replication Using GTIDs-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 385

Setting Up Replication Using GTIDs This section describes a process for configuring and starting GTID-based replication in MySQL 5.6. This is a “cold start” procedure that assumes either that you are starting the replication master for the first time, or that it is possible to stop it; for inform...

Setting Up Replication Using SSL-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 532

Setting Up Replication Using SSL To use SSL for encrypting the transfer of the binary log required during replication, both the master and the slave must support SSL network connections. If either host does not support SSL connections (because it has not been compiled or configured for SSL), repl...

Setting Up Replication with Existing Data-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 378

Setting Up Replication with Existing Data When setting up replication with existing data, you will need to decide how best to get the data from the master to the slave before starting the replication service. The basic process for setting up replication with existing data is as follows: 1. With ...

Setting Up Replication with New Master and Slaves-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 427

Setting Up Replication with New Master and Slaves The easiest and most straightforward method for setting up replication is to use new master and slave servers. You can also use this method if you are setting up new servers but have an existing dump of the databases from a different server that ...

Simple replication-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 448

Simple replication. This is the easiest way to reproduce all identifiers and transactions on a new server; you simply make the new server into the slave of a master that has the entire execution history, and enable global transaction identifiers on both servers. (This requires that both master and...

Slave Errors During Replication-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 378

Slave Errors During Replication If a statement produces the same error (identical error code) on both the master and the slave, the error is logged, but replication continues. If a statement produces different errors on the master and the slave, the slave SQL thread terminates, and the slave wri...

Slave I/O tread-opracowanie

  • MySQL Databases
Pobrań: 0
Wyświetleń: 371

Slave I/O thread. When a START SLAVE statement is issued on a slave server, the slave creates an I/O thread, which connects to the master and asks it to send the updates recorded in its binary logs. The slave I/O thread reads the updates that the master's Binlog Dump thread sends (see previous i...